Merge pull request #1056 from gnosis/development
This commit is contained in:
commit
1f73556d49
|
@ -9,6 +9,8 @@ REACT_APP_GOOGLE_ANALYTICS_ID_MAINNET=
|
|||
|
||||
# For all environments
|
||||
REACT_APP_INFURA_TOKEN=
|
||||
REACT_APP_IPFS_GATEWAY=https://ipfs.io/ipfs
|
||||
PUBLIC_URL=/app/
|
||||
|
||||
# For production environments
|
||||
REACT_APP_BLOCKNATIVE_KEY=
|
||||
|
@ -28,4 +30,3 @@ REACT_APP_APP_VERSION=$npm_package_version
|
|||
|
||||
# For Apps
|
||||
REACT_APP_GNOSIS_APPS_URL=https://safe-apps.staging.gnosisdev.com
|
||||
REACT_APP_APPS_DISABLED=false
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
!.eslintrc.js
|
||||
build_webpack
|
||||
build
|
||||
config
|
||||
contracts
|
||||
flow-typed
|
||||
|
|
112
.eslintrc
112
.eslintrc
|
@ -1,112 +0,0 @@
|
|||
{
|
||||
"settings": {
|
||||
"react": {
|
||||
"flowVersion": "0.112.0",
|
||||
"pragma": "React",
|
||||
"version": "16.12.0"
|
||||
},
|
||||
"import/extensions": [".js", ".jsx"]
|
||||
},
|
||||
"parser": "babel-eslint",
|
||||
"plugins": ["react", "flowtype", "import", "jsx-a11y", "sort-destructure-keys", "prettier"],
|
||||
"extends": [
|
||||
"eslint:recommended",
|
||||
"plugin:react/recommended",
|
||||
"plugin:flowtype/recommended",
|
||||
"plugin:import/errors",
|
||||
"plugin:import/warnings",
|
||||
"plugin:jsx-a11y/recommended",
|
||||
"plugin:prettier/recommended",
|
||||
"prettier/react",
|
||||
"prettier/flowtype"
|
||||
],
|
||||
"parserOptions": {
|
||||
"ecmaFeatures": {
|
||||
"jsx": true
|
||||
}
|
||||
},
|
||||
"env": {
|
||||
"browser": true,
|
||||
"amd": true,
|
||||
"node": true,
|
||||
"es6": true
|
||||
},
|
||||
"rules": {
|
||||
"class-methods-use-this": 0,
|
||||
"max-len": [
|
||||
"error",
|
||||
120,
|
||||
2,
|
||||
{
|
||||
"ignoreComments": false,
|
||||
"ignoreRegExpLiterals": true,
|
||||
"ignoreStrings": true,
|
||||
"ignoreTemplateLiterals": true,
|
||||
"ignoreUrls": true
|
||||
}
|
||||
],
|
||||
"no-console": [
|
||||
"error",
|
||||
{
|
||||
"allow": ["warn", "error"]
|
||||
}
|
||||
],
|
||||
"semi": ["error", "never"],
|
||||
"sort-imports": [
|
||||
"error",
|
||||
{
|
||||
"ignoreDeclarationSort": true
|
||||
}
|
||||
],
|
||||
"flowtype/require-valid-file-annotation": [
|
||||
2,
|
||||
"always",
|
||||
{
|
||||
"annotationStyle": "line"
|
||||
}
|
||||
],
|
||||
"import/extensions": 0,
|
||||
"import/no-extraneous-dependencies": 0,
|
||||
"import/no-unresolved": 0,
|
||||
"import/order": [
|
||||
"error",
|
||||
{
|
||||
"groups": ["builtin", "external", "parent", "sibling", "index"],
|
||||
"newlines-between": "always",
|
||||
"alphabetize": {
|
||||
"order": "asc"
|
||||
}
|
||||
}
|
||||
],
|
||||
"import/prefer-default-export": 0,
|
||||
"jsx-a11y/anchor-is-valid": [
|
||||
"error",
|
||||
{
|
||||
"components": ["Link"],
|
||||
"specialLink": ["to", "hrefLeft", "hrefRight"],
|
||||
"aspects": ["noHref", "invalidHref", "preferButton"]
|
||||
}
|
||||
],
|
||||
"react/default-props-match-prop-types": ["error", { "allowRequiredDefaults": true }],
|
||||
"react/forbid-prop-types": [
|
||||
1,
|
||||
{
|
||||
"forbid": ["object", "any"]
|
||||
}
|
||||
],
|
||||
"react/no-array-index-key": 0,
|
||||
"react/require-default-props": 0,
|
||||
"react/state-in-constructor": 0,
|
||||
"react/jsx-filename-extension": [
|
||||
1,
|
||||
{
|
||||
"extensions": [".js", ".jsx"]
|
||||
}
|
||||
],
|
||||
"react/jsx-props-no-spreading": 0,
|
||||
"react/jsx-sort-props": 2,
|
||||
"prettier/prettier": "error",
|
||||
"jsx-a11y/no-autofocus": "warn",
|
||||
"sort-destructure-keys/sort-destructure-keys": 2
|
||||
}
|
||||
}
|
|
@ -0,0 +1,33 @@
|
|||
module.exports = {
|
||||
parser: '@typescript-eslint/parser',
|
||||
extends: [
|
||||
'plugin:react/recommended',
|
||||
'plugin:@typescript-eslint/recommended',
|
||||
'prettier/@typescript-eslint',
|
||||
'plugin:prettier/recommended',
|
||||
],
|
||||
plugins: ['react-hooks'],
|
||||
parserOptions: {
|
||||
ecmaVersion: 2018,
|
||||
sourceType: 'module',
|
||||
ecmaFeatures: {
|
||||
jsx: true,
|
||||
},
|
||||
},
|
||||
rules: {
|
||||
'react-hooks/rules-of-hooks': 'error',
|
||||
'react-hooks/exhaustive-deps': 'warn',
|
||||
'react/prop-types': 'off',
|
||||
'@typescript-eslint/camelcase': 'off',
|
||||
'@typescript-eslint/no-var-requires': 'off',
|
||||
'@typescript-eslint/no-empty-function': 'off',
|
||||
'@typescript-eslint/no-explicit-any': 'off',
|
||||
'@typescript-eslint/no-non-null-assertion': 'off',
|
||||
'@typescript-eslint/no-unused-vars': ['error', { ignoreRestSiblings: true }],
|
||||
},
|
||||
settings: {
|
||||
react: {
|
||||
version: 'detect',
|
||||
},
|
||||
},
|
||||
}
|
36
.flowconfig
36
.flowconfig
|
@ -1,36 +0,0 @@
|
|||
[ignore]
|
||||
<PROJECT_ROOT>/migrations/**/.*
|
||||
<PROJECT_ROOT>/contracts/**/.*
|
||||
<PROJECT_ROOT>/scripts/**/.*
|
||||
<PROJECT_ROOT>/public/**/.*
|
||||
<PROJECT_ROOT>/babel.config.js
|
||||
<PROJECT_ROOT>/jest.config.js
|
||||
<PROJECT_ROOT>/truffle.js
|
||||
|
||||
[untyped]
|
||||
<PROJECT_ROOT>/config/**/.*
|
||||
|
||||
[declarations]
|
||||
<PROJECT_ROOT>/node_modules/**/.*
|
||||
<PROJECT_ROOT>/flow-typed/**/.*
|
||||
|
||||
[include]
|
||||
<PROJECT_ROOT>/src/**/.*
|
||||
|
||||
[libs]
|
||||
<PROJECT_ROOT>/flow-typed/**/.*
|
||||
|
||||
[lints]
|
||||
|
||||
[options]
|
||||
module.file_ext=.js
|
||||
module.file_ext=.json
|
||||
module.file_ext=.jsx
|
||||
module.file_ext=.css
|
||||
module.file_ext=.scss
|
||||
|
||||
module.name_mapper='^~' ->'<PROJECT_ROOT>/src'
|
||||
module.name_mapper='^#' ->'<PROJECT_ROOT>/safe-contracts/build/contracts'
|
||||
module.name_mapper='.*\(.s?css\)' -> '{}'
|
||||
|
||||
[strict]
|
|
@ -3,10 +3,9 @@ name: Build/Release Desktop app
|
|||
# this will help you specify where to run
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
# this will run on the specified branch
|
||||
- master
|
||||
- development
|
||||
branches-ignore:
|
||||
# Temporary disable action
|
||||
- '**'
|
||||
|
||||
env:
|
||||
REACT_APP_BLOCKNATIVE_KEY: ${{ secrets.REACT_APP_BLOCKNATIVE_KEY }}
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
node_modules/
|
||||
build_webpack/
|
||||
build/
|
||||
.DS_Store
|
||||
./build
|
||||
yarn-error.log
|
||||
.env*
|
||||
.idea/
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
!.eslintrc.js
|
||||
build_webpack
|
||||
build
|
||||
config
|
||||
contracts
|
||||
flow-typed
|
||||
|
|
94
.travis.yml
94
.travis.yml
|
@ -5,7 +5,7 @@ services:
|
|||
- docker
|
||||
language: node_js
|
||||
node_js:
|
||||
- "10"
|
||||
- '10'
|
||||
os:
|
||||
- linux
|
||||
env:
|
||||
|
@ -13,18 +13,20 @@ env:
|
|||
- DOCKER_COMPOSE_VERSION=1.22.0
|
||||
matrix:
|
||||
include:
|
||||
- env:
|
||||
- REACT_APP_NETWORK='mainnet'
|
||||
- STAGING_BUCKET_NAME=${STAGING_MAINNET_BUCKET_NAME}
|
||||
- REACT_APP_GNOSIS_APPS_URL=${REACT_APP_GNOSIS_APPS_URL_PROD}
|
||||
if: (branch = master AND NOT type = pull_request) OR tag IS present
|
||||
- env:
|
||||
- REACT_APP_NETWORK='rinkeby'
|
||||
- REACT_APP_GNOSIS_APPS_URL=${REACT_APP_GNOSIS_APPS_URL_STAGING}
|
||||
- env:
|
||||
- REACT_APP_NETWORK='mainnet'
|
||||
- STAGING_BUCKET_NAME=${STAGING_MAINNET_BUCKET_NAME}
|
||||
- REACT_APP_GNOSIS_APPS_URL=${REACT_APP_GNOSIS_APPS_URL_PROD}
|
||||
if: (branch = master AND NOT type = pull_request) OR tag IS present
|
||||
- env:
|
||||
- REACT_APP_NETWORK='rinkeby'
|
||||
- REACT_APP_GNOSIS_APPS_URL=${REACT_APP_GNOSIS_APPS_URL_STAGING}
|
||||
cache:
|
||||
yarn: true
|
||||
before_install:
|
||||
# Needed to deploy pull request and releases
|
||||
- sudo apt-get update
|
||||
- sudo apt-get -y install python-pip python-dev
|
||||
- sudo apt-get -y install python-pip python-dev libusb-1.0-0-dev
|
||||
- pip install awscli --upgrade --user
|
||||
# Install truffle
|
||||
- yarn global add truffle
|
||||
|
@ -39,41 +41,41 @@ after_success:
|
|||
|
||||
deploy:
|
||||
# Development environment
|
||||
- provider: s3
|
||||
bucket: $DEV_BUCKET_NAME
|
||||
access_key_id: $AWS_ACCESS_KEY_ID
|
||||
secret_access_key: $AWS_SECRET_ACCESS_KEY
|
||||
skip_cleanup: true
|
||||
local_dir: build_webpack
|
||||
upload-dir: app
|
||||
region: $AWS_DEFAULT_REGION
|
||||
on:
|
||||
branch: development
|
||||
- provider: s3
|
||||
bucket: $DEV_BUCKET_NAME
|
||||
access_key_id: $AWS_ACCESS_KEY_ID
|
||||
secret_access_key: $AWS_SECRET_ACCESS_KEY
|
||||
skip_cleanup: true
|
||||
local_dir: build
|
||||
upload-dir: app
|
||||
region: $AWS_DEFAULT_REGION
|
||||
on:
|
||||
branch: development
|
||||
|
||||
# Staging environment
|
||||
- provider: s3
|
||||
bucket: $STAGING_BUCKET_NAME
|
||||
access_key_id: $AWS_ACCESS_KEY_ID
|
||||
secret_access_key: $AWS_SECRET_ACCESS_KEY
|
||||
skip_cleanup: true
|
||||
local_dir: build_webpack
|
||||
upload-dir: current/app
|
||||
region: $AWS_DEFAULT_REGION
|
||||
on:
|
||||
branch: master
|
||||
# Staging environment
|
||||
- provider: s3
|
||||
bucket: $STAGING_BUCKET_NAME
|
||||
access_key_id: $AWS_ACCESS_KEY_ID
|
||||
secret_access_key: $AWS_SECRET_ACCESS_KEY
|
||||
skip_cleanup: true
|
||||
local_dir: build
|
||||
upload-dir: current/app
|
||||
region: $AWS_DEFAULT_REGION
|
||||
on:
|
||||
branch: master
|
||||
|
||||
# Prepare production deployment
|
||||
- provider: s3
|
||||
bucket: $STAGING_BUCKET_NAME
|
||||
secret_access_key: $AWS_SECRET_ACCESS_KEY
|
||||
access_key_id: $AWS_ACCESS_KEY_ID
|
||||
skip_cleanup: true
|
||||
local_dir: build_webpack
|
||||
upload-dir: releases/$TRAVIS_TAG
|
||||
region: $AWS_DEFAULT_REGION
|
||||
on:
|
||||
tags: true
|
||||
- provider: script
|
||||
script: ./config/travis/prepare_production_deployment.sh
|
||||
on:
|
||||
tags: true
|
||||
# Prepare production deployment
|
||||
- provider: s3
|
||||
bucket: $STAGING_BUCKET_NAME
|
||||
secret_access_key: $AWS_SECRET_ACCESS_KEY
|
||||
access_key_id: $AWS_ACCESS_KEY_ID
|
||||
skip_cleanup: true
|
||||
local_dir: build
|
||||
upload-dir: releases/$TRAVIS_TAG
|
||||
region: $AWS_DEFAULT_REGION
|
||||
on:
|
||||
tags: true
|
||||
- provider: script
|
||||
script: ./config/travis/prepare_production_deployment.sh
|
||||
on:
|
||||
tags: true
|
||||
|
|
|
@ -1,49 +0,0 @@
|
|||
// @flow
|
||||
module.exports = {
|
||||
presets: [
|
||||
'@babel/react',
|
||||
'@babel/preset-flow',
|
||||
[
|
||||
'@babel/env',
|
||||
{
|
||||
forceAllTransforms: true,
|
||||
},
|
||||
],
|
||||
],
|
||||
plugins: [
|
||||
'react-hot-loader/babel',
|
||||
'@babel/plugin-syntax-dynamic-import',
|
||||
'@babel/plugin-transform-member-expression-literals',
|
||||
'@babel/plugin-transform-property-literals',
|
||||
'@babel/plugin-syntax-import-meta',
|
||||
'@babel/plugin-proposal-class-properties',
|
||||
'@babel/plugin-proposal-json-strings',
|
||||
[
|
||||
'@babel/plugin-proposal-decorators',
|
||||
{
|
||||
legacy: true,
|
||||
},
|
||||
],
|
||||
'@babel/plugin-proposal-function-sent',
|
||||
'@babel/plugin-proposal-export-namespace-from',
|
||||
'@babel/plugin-proposal-numeric-separator',
|
||||
'@babel/plugin-proposal-throw-expressions',
|
||||
'@babel/plugin-proposal-export-default-from',
|
||||
'@babel/plugin-proposal-logical-assignment-operators',
|
||||
'@babel/plugin-proposal-optional-chaining',
|
||||
[
|
||||
'@babel/plugin-proposal-pipeline-operator',
|
||||
{
|
||||
proposal: 'minimal',
|
||||
},
|
||||
],
|
||||
'@babel/plugin-proposal-nullish-coalescing-operator',
|
||||
'@babel/plugin-proposal-do-expressions',
|
||||
'@babel/plugin-proposal-function-bind',
|
||||
],
|
||||
env: {
|
||||
test: {
|
||||
plugins: ['dynamic-import-node'],
|
||||
},
|
||||
},
|
||||
}
|
|
@ -0,0 +1,14 @@
|
|||
const webpack = require('webpack')
|
||||
|
||||
module.exports = function override(config) {
|
||||
if (!config.plugins) {
|
||||
config.plugins = []
|
||||
}
|
||||
config.plugins.push(
|
||||
new webpack.ContextReplacementPlugin(/\/truffle-(contract|interface-adapter)\//, (data) => {
|
||||
delete data.dependencies[0].critical
|
||||
return data
|
||||
}),
|
||||
)
|
||||
return config
|
||||
}
|
|
@ -1,29 +0,0 @@
|
|||
// @flow
|
||||
// Grab NODE_ENV and REACT_APP_* environment variables and prepare them to be
|
||||
// injected into the application via DefinePlugin in Webpack configuration.
|
||||
|
||||
const REACT_APP = /^REACT_APP_/i
|
||||
|
||||
function getClientEnvironment(publicUrl) {
|
||||
const processEnv = Object.keys(process.env)
|
||||
.filter((key) => REACT_APP.test(key))
|
||||
.reduce(
|
||||
(env, key) => {
|
||||
env[key] = JSON.stringify(process.env[key])
|
||||
return env
|
||||
},
|
||||
{
|
||||
// Useful for determining whether we’re running in production mode.
|
||||
// Most importantly, it switches React into the correct mode.
|
||||
NODE_ENV: JSON.stringify(process.env.NODE_ENV || 'development'),
|
||||
// Useful for resolving the correct path to static assets in `public`.
|
||||
// For example, <img src={process.env.PUBLIC_URL + '/img/logo.png'} />.
|
||||
// This should only be used as an escape hatch. Normally you would put
|
||||
// images into the `src` and `import` them in code to get their paths.
|
||||
PUBLIC_URL: JSON.stringify(publicUrl),
|
||||
},
|
||||
)
|
||||
return { 'process.env': processEnv }
|
||||
}
|
||||
|
||||
module.exports = getClientEnvironment
|
|
@ -1,6 +1,5 @@
|
|||
// @flow
|
||||
class LocalStorageMock {
|
||||
store: Object
|
||||
store
|
||||
|
||||
constructor() {
|
||||
this.store = {}
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// @flow
|
||||
import Web3 from 'web3'
|
||||
|
||||
const window = global.window || {}
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// @flow
|
||||
// This is a custom Jest transformer turning style imports into empty objects.
|
||||
// http://facebook.github.io/jest/docs/tutorial-webpack.html
|
||||
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// @flow
|
||||
const path = require('path')
|
||||
|
||||
// This is a custom Jest transformer turning file imports into filenames.
|
||||
|
|
|
@ -1,2 +1 @@
|
|||
// @flow
|
||||
jest.setTimeout(60000)
|
||||
|
|
|
@ -1,47 +0,0 @@
|
|||
var path = require('path');
|
||||
var fs = require('fs');
|
||||
|
||||
// Make sure any symlinks in the project folder are resolved:
|
||||
// https://github.com/facebookincubator/create-react-app/issues/637
|
||||
var appDirectory = fs.realpathSync(process.cwd());
|
||||
function resolveApp(relativePath) {
|
||||
return path.resolve(appDirectory, relativePath);
|
||||
}
|
||||
|
||||
// We support resolving modules according to `NODE_PATH`.
|
||||
// This lets you use absolute paths in imports inside large monorepos:
|
||||
// https://github.com/facebookincubator/create-react-app/issues/253.
|
||||
|
||||
// It works similar to `NODE_PATH` in Node itself:
|
||||
// https://nodejs.org/api/modules.html#modules_loading_from_the_global_folders
|
||||
|
||||
// We will export `nodePaths` as an array of absolute paths.
|
||||
// It will then be used by Webpack configs.
|
||||
// Jest doesn’t need this because it already handles `NODE_PATH` out of the box.
|
||||
|
||||
// Note that unlike in Node, only *relative* paths from `NODE_PATH` are honored.
|
||||
// Otherwise, we risk importing Node.js core modules into an app instead of Webpack shims.
|
||||
// https://github.com/facebookincubator/create-react-app/issues/1023#issuecomment-265344421
|
||||
|
||||
var nodePaths = (process.env.NODE_PATH || '')
|
||||
.split(process.platform === 'win32' ? ';' : ':')
|
||||
.filter(Boolean)
|
||||
.filter(folder => !path.isAbsolute(folder))
|
||||
.map(resolveApp);
|
||||
|
||||
// config after eject: we're in ./config/
|
||||
module.exports = {
|
||||
// Changed from build to build_webpack so smart contract compilations are not overwritten.
|
||||
appBuild: resolveApp('build_webpack'),
|
||||
appPublic: resolveApp('public'),
|
||||
appHtml: resolveApp('public/index.html'),
|
||||
appIndexJs: resolveApp('src/index.js'),
|
||||
appPackageJson: resolveApp('package.json'),
|
||||
appSrc: resolveApp('src'),
|
||||
appContracts: resolveApp('safe-contracts/build/contracts'),
|
||||
yarnLockFile: resolveApp('yarn.lock'),
|
||||
testsSetup: resolveApp('src/setupTests.js'),
|
||||
appNodeModules: resolveApp('node_modules'),
|
||||
ownNodeModules: resolveApp('node_modules'),
|
||||
nodePaths: nodePaths
|
||||
};
|
|
@ -1,15 +0,0 @@
|
|||
// @flow
|
||||
if (typeof Promise === 'undefined') {
|
||||
// Rejection tracking prevents a common issue where React gets into an
|
||||
// inconsistent state due to an error, but it gets swallowed by a Promise,
|
||||
// and the user has no idea what causes React's erratic future behavior.
|
||||
require('promise/lib/rejection-tracking').enable()
|
||||
window.Promise = require('promise/lib/es6-extensions.js')
|
||||
}
|
||||
|
||||
// fetch() polyfill for making API calls.
|
||||
require('whatwg-fetch')
|
||||
|
||||
// Object.assign() is commonly used with React.
|
||||
// It will use the native implementation if it's present and isn't buggy.
|
||||
Object.assign = require('object-assign')
|
|
@ -15,7 +15,7 @@ function deploy_pull_request {
|
|||
REVIEW_FEATURE_FOLDER="$REPO_NAME_ALPHANUMERIC/$PULL_REQUEST_NAME"
|
||||
|
||||
# Deploy safe-team project
|
||||
aws s3 sync build_webpack s3://${REVIEW_BUCKET_NAME}/${REVIEW_FEATURE_FOLDER}/app --delete
|
||||
aws s3 sync build s3://${REVIEW_BUCKET_NAME}/${REVIEW_FEATURE_FOLDER}/app --delete
|
||||
}
|
||||
|
||||
function publish_pull_request_urls_in_github {
|
||||
|
|
|
@ -18,7 +18,7 @@ then
|
|||
REVIEW_RELEASE_FOLDER="$REPO_NAME_ALPHANUMERIC/$TRAVIS_TAG_ALPHANUMERIC"
|
||||
|
||||
# Deploy safe-team release project
|
||||
aws s3 sync build_webpack s3://${REVIEW_BUCKET_NAME}/${REVIEW_RELEASE_FOLDER}/app --delete --exclude "*.html" --exclude "/page-data" --cache-control max-age=31536000,public
|
||||
aws s3 sync build s3://${REVIEW_BUCKET_NAME}/${REVIEW_RELEASE_FOLDER}/app --delete --exclude "*.html" --exclude "/page-data" --cache-control max-age=31536000,public
|
||||
|
||||
aws s3 sync build_webpack s3://${REVIEW_BUCKET_NAME}/${REVIEW_RELEASE_FOLDER}/app --delete --exclude "*" --include "*.html" --cache-control max-age=0,no-cache,no-store,must-revalidate --content-type text/html
|
||||
aws s3 sync build s3://${REVIEW_BUCKET_NAME}/${REVIEW_RELEASE_FOLDER}/app --delete --exclude "*" --include "*.html" --cache-control max-age=0,no-cache,no-store,must-revalidate --content-type text/html
|
||||
fi
|
||||
|
|
|
@ -1,159 +0,0 @@
|
|||
/*eslint-disable*/
|
||||
const autoprefixer = require('autoprefixer')
|
||||
const cssmixins = require('postcss-mixins')
|
||||
const cssvars = require('postcss-simple-vars')
|
||||
const webpack = require('webpack')
|
||||
const HtmlWebPackPlugin = require('html-webpack-plugin')
|
||||
|
||||
const paths = require('./paths')
|
||||
const getClientEnvironment = require('./env')
|
||||
|
||||
const publicPath = '/'
|
||||
|
||||
// `publicUrl` we will provide it to our app
|
||||
// as %PUBLIC_URL% in `index.html` and `process.env.PUBLIC_URL` in JavaScript.
|
||||
// Omit trailing slash as %PUBLIC_PATH%/xyz looks better than %PUBLIC_PATH%xyz.
|
||||
var publicUrl = ''
|
||||
// Get environment variables to inject into our app.
|
||||
var env = getClientEnvironment(publicUrl)
|
||||
|
||||
const cssvariables = require(paths.appSrc + '/theme/variables')
|
||||
|
||||
const postcssPlugins = [
|
||||
autoprefixer({
|
||||
overrideBrowserslist: [
|
||||
'>1%',
|
||||
'last 4 versions',
|
||||
'Firefox ESR',
|
||||
'not ie < 9', // React doesn't support IE8 anyway
|
||||
],
|
||||
}),
|
||||
cssmixins,
|
||||
cssvars({
|
||||
variables: function() {
|
||||
return Object.assign({}, cssvariables)
|
||||
},
|
||||
silent: false,
|
||||
}),
|
||||
]
|
||||
|
||||
module.exports = {
|
||||
devtool: 'eval-source-map',
|
||||
mode: 'development',
|
||||
entry: [
|
||||
'babel-polyfill',
|
||||
// Include an alternative client for WebpackDevServer. A client's job is to
|
||||
// connect to WebpackDevServer by a socket and get notified about changes.
|
||||
// When you save a file, the client will either apply hot updates (in case
|
||||
// of CSS changes), or refresh the page (in case of JS changes). When you
|
||||
// make a syntax error, this client will display a syntax error overlay.
|
||||
// Note: instead of the default WebpackDevServer client, we use a custom one
|
||||
// to bring better experience for Create React App users. You can replace
|
||||
// the line below with these two lines if you prefer the stock client:
|
||||
// require.resolve('webpack-dev-server/client') + '?/',
|
||||
// require.resolve('webpack/hot/dev-server'),
|
||||
require.resolve('react-dev-utils/webpackHotDevClient'),
|
||||
// We ship a few polyfills by default:
|
||||
require.resolve('./polyfills'),
|
||||
// Finally, this is your app's code:
|
||||
paths.appIndexJs,
|
||||
// We include the app code last so that if there is a runtime error during
|
||||
// initialization, it doesn't blow up the WebpackDevServer client, and
|
||||
// changing JS code would still trigger a refresh.
|
||||
],
|
||||
resolve: {
|
||||
modules: [paths.appSrc, 'node_modules', paths.appContracts],
|
||||
// These are the reasonable defaults supported by the Node ecosystem.
|
||||
// We also include JSX as a common component filename extension to support
|
||||
// some tools, although we do not recommend using it, see:
|
||||
// https://github.com/facebookincubator/create-react-app/issues/290
|
||||
extensions: ['.js', '.json', '.jsx'],
|
||||
alias: {
|
||||
'~': paths.appSrc,
|
||||
'#': paths.appContracts,
|
||||
},
|
||||
},
|
||||
output: {
|
||||
// Next line is not used in dev but WebpackDevServer crashes without it:
|
||||
path: paths.appBuild,
|
||||
// Add /* filename */ comments to generated require()s in the output.
|
||||
pathinfo: true,
|
||||
// This does not produce a real file. It's just the virtual path that is
|
||||
// served by WebpackDevServer in development. This is the JS bundle
|
||||
// containing code from all our entry points, and the Webpack runtime.
|
||||
filename: 'static/js/bundle.js',
|
||||
// This is the URL that app is served from. We use "/" in development.
|
||||
publicPath: publicPath,
|
||||
},
|
||||
module: {
|
||||
rules: [
|
||||
{
|
||||
test: /\.(js|jsx)$/,
|
||||
exclude: /node_modules/,
|
||||
use: {
|
||||
loader: 'babel-loader',
|
||||
},
|
||||
},
|
||||
{
|
||||
test: /\.(scss|css)$/,
|
||||
use: [
|
||||
'style-loader',
|
||||
{
|
||||
loader: 'css-loader',
|
||||
options: {
|
||||
importLoaders: 1,
|
||||
modules: {
|
||||
localIdentName: '[name]__[local]___[hash:base64:5]',
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
loader: 'postcss-loader',
|
||||
options: {
|
||||
sourceMap: true,
|
||||
plugins: postcssPlugins,
|
||||
},
|
||||
},
|
||||
],
|
||||
},
|
||||
{ test: /\.(woff|woff2)$/, loader: 'url-loader?limit=100000' },
|
||||
{
|
||||
test: /\.html$/,
|
||||
use: [
|
||||
{
|
||||
loader: 'html-loader',
|
||||
options: { minimize: false },
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
test: /\.(jpe?g|png|svg)$/i,
|
||||
exclude: /node_modules/,
|
||||
use: [
|
||||
{
|
||||
loader: 'file-loader',
|
||||
options: {
|
||||
esModule: false,
|
||||
name: 'img/[hash].[ext]',
|
||||
esModule: false
|
||||
},
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
},
|
||||
plugins: [
|
||||
new HtmlWebPackPlugin({
|
||||
template: paths.appHtml,
|
||||
}),
|
||||
new webpack.DefinePlugin(env),
|
||||
new webpack.HotModuleReplacementPlugin(),
|
||||
],
|
||||
// Some libraries import Node modules but don't use them in the browser.
|
||||
// Tell Webpack to provide empty mocks for them so importing them works.
|
||||
node: {
|
||||
fs: 'empty',
|
||||
net: 'empty',
|
||||
tls: 'empty',
|
||||
},
|
||||
}
|
|
@ -1,236 +0,0 @@
|
|||
/*eslint-disable*/
|
||||
const BundleAnalyzerPlugin = require("webpack-bundle-analyzer")
|
||||
.BundleAnalyzerPlugin
|
||||
const autoprefixer = require("autoprefixer")
|
||||
const cssmixins = require("postcss-mixins")
|
||||
const cssvars = require("postcss-simple-vars")
|
||||
const webpack = require("webpack")
|
||||
|
||||
const TerserPlugin = require("terser-webpack-plugin")
|
||||
const HtmlWebpackPlugin = require("html-webpack-plugin")
|
||||
const ExtractTextPlugin = require("extract-text-webpack-plugin")
|
||||
const ManifestPlugin = require("webpack-manifest-plugin")
|
||||
const MiniCssExtractPlugin = require("mini-css-extract-plugin")
|
||||
const OptimizeCSSAssetsPlugin = require("optimize-css-assets-webpack-plugin")
|
||||
|
||||
const url = require("url")
|
||||
const paths = require("./paths")
|
||||
const getClientEnvironment = require("./env")
|
||||
|
||||
const cssvariables = require(`${paths.appSrc}/theme/variables`)
|
||||
|
||||
const postcssPlugins = [
|
||||
autoprefixer({
|
||||
overrideBrowserslist: [
|
||||
">1%",
|
||||
"last 4 versions",
|
||||
"Firefox ESR",
|
||||
"not ie < 9" // React doesn't support IE8 anyway
|
||||
]
|
||||
}),
|
||||
cssmixins,
|
||||
cssvars({
|
||||
variables() {
|
||||
return Object.assign({}, cssvariables)
|
||||
},
|
||||
silent: true
|
||||
})
|
||||
]
|
||||
|
||||
function ensureSlash(path, needsSlash) {
|
||||
const hasSlash = path.endsWith("/")
|
||||
if (hasSlash && !needsSlash) {
|
||||
return path.substr(path, path.length - 1)
|
||||
} else if (!hasSlash && needsSlash) {
|
||||
return `${path}/`
|
||||
}
|
||||
return path
|
||||
}
|
||||
|
||||
// We use "homepage" field to infer "public path" at which the app is served.
|
||||
// Webpack needs to know it to put the right <script> hrefs into HTML even in
|
||||
// single-page apps that may serve index.html for nested URLs like /todos/42.
|
||||
// We can't use a relative path in HTML because we don't want to load something
|
||||
// like /todos/42/static/js/bundle.7289d.js. We have to know the root.
|
||||
const buildDesktop = process.env.REACT_APP_BUILD_FOR_DESKTOP
|
||||
|
||||
const homepagePath = require(paths.appPackageJson).homepage
|
||||
// var homepagePathname = homepagePath ? url.parse(homepagePath).pathname : '/';
|
||||
const homepagePathname = buildDesktop === 'true' ? "./" : "/app/"
|
||||
// Webpack uses `publicPath` to determine where the app is being served from.
|
||||
// It requires a trailing slash, or the file assets will get an incorrect path.
|
||||
const publicPath = ensureSlash(homepagePathname, true)
|
||||
// `publicUrl` is just like `publicPath`, but we will provide it to our app
|
||||
// as %PUBLIC_URL% in `index.html` and `process.env.PUBLIC_URL` in JavaScript.
|
||||
// Omit trailing slash as %PUBLIC_PATH%/xyz looks better than %PUBLIC_PATH%xyz.
|
||||
const publicUrl = ensureSlash(homepagePathname, false)
|
||||
// Get environment variables to inject into our app.
|
||||
const env = getClientEnvironment(publicUrl)
|
||||
|
||||
// Assert this just to be safe.
|
||||
// Development builds of React are slow and not intended for production.
|
||||
if (env["process.env"].NODE_ENV !== '"production"') {
|
||||
throw new Error("Production builds must have NODE_ENV=production.")
|
||||
}
|
||||
|
||||
// This is the production configuration.
|
||||
// It compiles slowly and is focused on producing a fast and minimal bundle.
|
||||
// The development configuration is different and lives in a separate file.
|
||||
module.exports = {
|
||||
mode: "production",
|
||||
// Don't attempt to continue if there are any errors.
|
||||
bail: true,
|
||||
optimization: {
|
||||
splitChunks: {
|
||||
chunks: "all"
|
||||
/* https://stackoverflow.com/questions/48985780/webpack-4-create-vendor-chunk
|
||||
cacheGroups: {
|
||||
vendor: {
|
||||
test: /node_modules/,
|
||||
name: 'vendor',
|
||||
chunks: 'all',
|
||||
enforce: true,
|
||||
minSize: 1,
|
||||
},
|
||||
},
|
||||
*/
|
||||
},
|
||||
minimize: true,
|
||||
minimizer: [
|
||||
new TerserPlugin({
|
||||
terserOptions: {
|
||||
parse: {
|
||||
ecma: 8
|
||||
},
|
||||
compress: {
|
||||
ecma: 5,
|
||||
warnings: false,
|
||||
comparisons: false,
|
||||
inline: 2,
|
||||
},
|
||||
mangle: {
|
||||
safari10: true
|
||||
},
|
||||
output: {
|
||||
ecma: 5,
|
||||
comments: false,
|
||||
ascii_only: true
|
||||
}
|
||||
}
|
||||
}),
|
||||
new OptimizeCSSAssetsPlugin({})
|
||||
]
|
||||
},
|
||||
entry: [require.resolve("./polyfills"), paths.appIndexJs],
|
||||
output: {
|
||||
// The build folder.
|
||||
path: paths.appBuild,
|
||||
// Generated JS file names (with nested folders).
|
||||
// There will be one main bundle, and one file per asynchronous chunk.
|
||||
// We don't currently advertise code splitting but Webpack supports it.
|
||||
filename: "static/js/[name].[chunkhash:8].js",
|
||||
chunkFilename: "static/js/[name].[chunkhash:8].chunk.js",
|
||||
// We inferred the "public path" (such as / or /my-project) from homepage.
|
||||
publicPath
|
||||
},
|
||||
resolve: {
|
||||
modules: [paths.appSrc, "node_modules", paths.appContracts],
|
||||
// These are the reasonable defaults supported by the Node ecosystem.
|
||||
// We also include JSX as a common component filename extension to support
|
||||
// some tools, although we do not recommend using it, see:
|
||||
// https://github.com/facebookincubator/create-react-app/issues/290
|
||||
extensions: [".js", ".json", ".jsx"],
|
||||
alias: {
|
||||
"~": paths.appSrc,
|
||||
"#": paths.appContracts
|
||||
}
|
||||
},
|
||||
|
||||
module: {
|
||||
rules: [
|
||||
{
|
||||
test: /\.(js|jsx)$/,
|
||||
include: paths.appSrc,
|
||||
use: {
|
||||
loader: "babel-loader"
|
||||
}
|
||||
},
|
||||
{
|
||||
test: /\.(scss|css)$/,
|
||||
use: [
|
||||
MiniCssExtractPlugin.loader,
|
||||
{
|
||||
loader: "css-loader",
|
||||
options: {
|
||||
importLoaders: 1,
|
||||
modules: true
|
||||
}
|
||||
},
|
||||
{
|
||||
loader: "postcss-loader",
|
||||
options: {
|
||||
sourceMap: true,
|
||||
plugins: postcssPlugins
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{ test: /\.(woff|woff2)$/, loader: "url-loader?limit=100000" },
|
||||
{
|
||||
test: /\.(jpe?g|png|svg)$/i,
|
||||
exclude: /node_modules/,
|
||||
use: [
|
||||
{
|
||||
loader: "file-loader",
|
||||
options: {
|
||||
name: "img/[hash].[ext]",
|
||||
esModule: false
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
plugins: [
|
||||
// Generates an `index.html` file with the <script> injected.
|
||||
new HtmlWebpackPlugin({
|
||||
inject: true,
|
||||
template: paths.appHtml,
|
||||
minify: {
|
||||
removeComments: true,
|
||||
collapseWhitespace: true,
|
||||
removeRedundantAttributes: true,
|
||||
useShortDoctype: true,
|
||||
removeEmptyAttributes: true,
|
||||
removeStyleLinkTypeAttributes: true,
|
||||
keepClosingSlash: true,
|
||||
minifyJS: true,
|
||||
minifyCSS: true,
|
||||
minifyURLs: true
|
||||
}
|
||||
}),
|
||||
// Makes some environment variables available to the JS code, for example:
|
||||
// if (process.env.NODE_ENV === 'production') { ... }. See `./env.js`.
|
||||
// It is absolutely essential that NODE_ENV was set to production here.
|
||||
// Otherwise React will be compiled in the very slow development mode.
|
||||
new webpack.DefinePlugin(env),
|
||||
new MiniCssExtractPlugin({
|
||||
filename: "static/css/[name].[hash:8].css",
|
||||
allChunks: "static/css/[id].[hash:8].css"
|
||||
}),
|
||||
// Generate a manifest file which contains a mapping of all asset filenames
|
||||
// to their corresponding output file so that tools can pick it up without
|
||||
// having to parse `index.html`.
|
||||
new ManifestPlugin({
|
||||
fileName: "asset-manifest.json"
|
||||
})
|
||||
// new BundleAnalyzerPlugin()
|
||||
],
|
||||
// Some libraries import Node modules but don't use them in the browser.
|
||||
// Tell Webpack to provide empty mocks for them so importing them works.
|
||||
node: {
|
||||
fs: "empty",
|
||||
net: "empty",
|
||||
tls: "empty"
|
||||
}
|
||||
}
|
|
@ -1,2 +0,0 @@
|
|||
// @flow
|
||||
import '@babel/polyfill'
|
|
@ -0,0 +1,4 @@
|
|||
owner: gnosis
|
||||
repo: safe-react
|
||||
provider: github
|
||||
updaterCacheDirName: safe-react-updater
|
|
@ -1,90 +0,0 @@
|
|||
// flow-typed signature: 9dd2066366ce03cc55563ffc57057343
|
||||
// flow-typed version: <<STUB>>/@babel/cli_v7.7.5/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* '@babel/cli'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module '@babel/cli' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module '@babel/cli/bin/babel-external-helpers' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/cli/bin/babel' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/cli/lib/babel-external-helpers' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/cli/lib/babel/dir' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/cli/lib/babel/file' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/cli/lib/babel' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/cli/lib/babel/options' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/cli/lib/babel/util' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module '@babel/cli/bin/babel-external-helpers.js' {
|
||||
declare module.exports: $Exports<'@babel/cli/bin/babel-external-helpers'>;
|
||||
}
|
||||
declare module '@babel/cli/bin/babel.js' {
|
||||
declare module.exports: $Exports<'@babel/cli/bin/babel'>;
|
||||
}
|
||||
declare module '@babel/cli/index' {
|
||||
declare module.exports: $Exports<'@babel/cli'>;
|
||||
}
|
||||
declare module '@babel/cli/index.js' {
|
||||
declare module.exports: $Exports<'@babel/cli'>;
|
||||
}
|
||||
declare module '@babel/cli/lib/babel-external-helpers.js' {
|
||||
declare module.exports: $Exports<'@babel/cli/lib/babel-external-helpers'>;
|
||||
}
|
||||
declare module '@babel/cli/lib/babel/dir.js' {
|
||||
declare module.exports: $Exports<'@babel/cli/lib/babel/dir'>;
|
||||
}
|
||||
declare module '@babel/cli/lib/babel/file.js' {
|
||||
declare module.exports: $Exports<'@babel/cli/lib/babel/file'>;
|
||||
}
|
||||
declare module '@babel/cli/lib/babel/index' {
|
||||
declare module.exports: $Exports<'@babel/cli/lib/babel'>;
|
||||
}
|
||||
declare module '@babel/cli/lib/babel/index.js' {
|
||||
declare module.exports: $Exports<'@babel/cli/lib/babel'>;
|
||||
}
|
||||
declare module '@babel/cli/lib/babel/options.js' {
|
||||
declare module.exports: $Exports<'@babel/cli/lib/babel/options'>;
|
||||
}
|
||||
declare module '@babel/cli/lib/babel/util.js' {
|
||||
declare module.exports: $Exports<'@babel/cli/lib/babel/util'>;
|
||||
}
|
|
@ -1,310 +0,0 @@
|
|||
// flow-typed signature: f38f288c662323ae0ee8bccb9f8e57f0
|
||||
// flow-typed version: <<STUB>>/@babel/core_v7.7.5/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* '@babel/core'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module '@babel/core' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module '@babel/core/lib/config/caching' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/core/lib/config/config-chain' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/core/lib/config/config-descriptors' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/core/lib/config/files/configuration' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/core/lib/config/files/index-browser' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/core/lib/config/files' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/core/lib/config/files/package' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/core/lib/config/files/plugins' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/core/lib/config/files/types' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/core/lib/config/files/utils' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/core/lib/config/full' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/core/lib/config/helpers/config-api' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/core/lib/config/helpers/environment' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/core/lib/config' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/core/lib/config/item' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/core/lib/config/partial' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/core/lib/config/pattern-to-regex' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/core/lib/config/plugin' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/core/lib/config/util' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/core/lib/config/validation/option-assertions' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/core/lib/config/validation/options' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/core/lib/config/validation/plugins' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/core/lib/config/validation/removed' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/core/lib' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/core/lib/parse' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/core/lib/tools/build-external-helpers' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/core/lib/transform-ast' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/core/lib/transform-file-browser' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/core/lib/transform-file' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/core/lib/transform' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/core/lib/transformation/block-hoist-plugin' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/core/lib/transformation/file/file' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/core/lib/transformation/file/generate' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/core/lib/transformation/file/merge-map' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/core/lib/transformation' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/core/lib/transformation/normalize-file' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/core/lib/transformation/normalize-opts' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/core/lib/transformation/plugin-pass' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/core/lib/transformation/util/missing-plugin-helper' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module '@babel/core/lib/config/caching.js' {
|
||||
declare module.exports: $Exports<'@babel/core/lib/config/caching'>;
|
||||
}
|
||||
declare module '@babel/core/lib/config/config-chain.js' {
|
||||
declare module.exports: $Exports<'@babel/core/lib/config/config-chain'>;
|
||||
}
|
||||
declare module '@babel/core/lib/config/config-descriptors.js' {
|
||||
declare module.exports: $Exports<'@babel/core/lib/config/config-descriptors'>;
|
||||
}
|
||||
declare module '@babel/core/lib/config/files/configuration.js' {
|
||||
declare module.exports: $Exports<'@babel/core/lib/config/files/configuration'>;
|
||||
}
|
||||
declare module '@babel/core/lib/config/files/index-browser.js' {
|
||||
declare module.exports: $Exports<'@babel/core/lib/config/files/index-browser'>;
|
||||
}
|
||||
declare module '@babel/core/lib/config/files/index' {
|
||||
declare module.exports: $Exports<'@babel/core/lib/config/files'>;
|
||||
}
|
||||
declare module '@babel/core/lib/config/files/index.js' {
|
||||
declare module.exports: $Exports<'@babel/core/lib/config/files'>;
|
||||
}
|
||||
declare module '@babel/core/lib/config/files/package.js' {
|
||||
declare module.exports: $Exports<'@babel/core/lib/config/files/package'>;
|
||||
}
|
||||
declare module '@babel/core/lib/config/files/plugins.js' {
|
||||
declare module.exports: $Exports<'@babel/core/lib/config/files/plugins'>;
|
||||
}
|
||||
declare module '@babel/core/lib/config/files/types.js' {
|
||||
declare module.exports: $Exports<'@babel/core/lib/config/files/types'>;
|
||||
}
|
||||
declare module '@babel/core/lib/config/files/utils.js' {
|
||||
declare module.exports: $Exports<'@babel/core/lib/config/files/utils'>;
|
||||
}
|
||||
declare module '@babel/core/lib/config/full.js' {
|
||||
declare module.exports: $Exports<'@babel/core/lib/config/full'>;
|
||||
}
|
||||
declare module '@babel/core/lib/config/helpers/config-api.js' {
|
||||
declare module.exports: $Exports<'@babel/core/lib/config/helpers/config-api'>;
|
||||
}
|
||||
declare module '@babel/core/lib/config/helpers/environment.js' {
|
||||
declare module.exports: $Exports<'@babel/core/lib/config/helpers/environment'>;
|
||||
}
|
||||
declare module '@babel/core/lib/config/index' {
|
||||
declare module.exports: $Exports<'@babel/core/lib/config'>;
|
||||
}
|
||||
declare module '@babel/core/lib/config/index.js' {
|
||||
declare module.exports: $Exports<'@babel/core/lib/config'>;
|
||||
}
|
||||
declare module '@babel/core/lib/config/item.js' {
|
||||
declare module.exports: $Exports<'@babel/core/lib/config/item'>;
|
||||
}
|
||||
declare module '@babel/core/lib/config/partial.js' {
|
||||
declare module.exports: $Exports<'@babel/core/lib/config/partial'>;
|
||||
}
|
||||
declare module '@babel/core/lib/config/pattern-to-regex.js' {
|
||||
declare module.exports: $Exports<'@babel/core/lib/config/pattern-to-regex'>;
|
||||
}
|
||||
declare module '@babel/core/lib/config/plugin.js' {
|
||||
declare module.exports: $Exports<'@babel/core/lib/config/plugin'>;
|
||||
}
|
||||
declare module '@babel/core/lib/config/util.js' {
|
||||
declare module.exports: $Exports<'@babel/core/lib/config/util'>;
|
||||
}
|
||||
declare module '@babel/core/lib/config/validation/option-assertions.js' {
|
||||
declare module.exports: $Exports<'@babel/core/lib/config/validation/option-assertions'>;
|
||||
}
|
||||
declare module '@babel/core/lib/config/validation/options.js' {
|
||||
declare module.exports: $Exports<'@babel/core/lib/config/validation/options'>;
|
||||
}
|
||||
declare module '@babel/core/lib/config/validation/plugins.js' {
|
||||
declare module.exports: $Exports<'@babel/core/lib/config/validation/plugins'>;
|
||||
}
|
||||
declare module '@babel/core/lib/config/validation/removed.js' {
|
||||
declare module.exports: $Exports<'@babel/core/lib/config/validation/removed'>;
|
||||
}
|
||||
declare module '@babel/core/lib/index' {
|
||||
declare module.exports: $Exports<'@babel/core/lib'>;
|
||||
}
|
||||
declare module '@babel/core/lib/index.js' {
|
||||
declare module.exports: $Exports<'@babel/core/lib'>;
|
||||
}
|
||||
declare module '@babel/core/lib/parse.js' {
|
||||
declare module.exports: $Exports<'@babel/core/lib/parse'>;
|
||||
}
|
||||
declare module '@babel/core/lib/tools/build-external-helpers.js' {
|
||||
declare module.exports: $Exports<'@babel/core/lib/tools/build-external-helpers'>;
|
||||
}
|
||||
declare module '@babel/core/lib/transform-ast.js' {
|
||||
declare module.exports: $Exports<'@babel/core/lib/transform-ast'>;
|
||||
}
|
||||
declare module '@babel/core/lib/transform-file-browser.js' {
|
||||
declare module.exports: $Exports<'@babel/core/lib/transform-file-browser'>;
|
||||
}
|
||||
declare module '@babel/core/lib/transform-file.js' {
|
||||
declare module.exports: $Exports<'@babel/core/lib/transform-file'>;
|
||||
}
|
||||
declare module '@babel/core/lib/transform.js' {
|
||||
declare module.exports: $Exports<'@babel/core/lib/transform'>;
|
||||
}
|
||||
declare module '@babel/core/lib/transformation/block-hoist-plugin.js' {
|
||||
declare module.exports: $Exports<'@babel/core/lib/transformation/block-hoist-plugin'>;
|
||||
}
|
||||
declare module '@babel/core/lib/transformation/file/file.js' {
|
||||
declare module.exports: $Exports<'@babel/core/lib/transformation/file/file'>;
|
||||
}
|
||||
declare module '@babel/core/lib/transformation/file/generate.js' {
|
||||
declare module.exports: $Exports<'@babel/core/lib/transformation/file/generate'>;
|
||||
}
|
||||
declare module '@babel/core/lib/transformation/file/merge-map.js' {
|
||||
declare module.exports: $Exports<'@babel/core/lib/transformation/file/merge-map'>;
|
||||
}
|
||||
declare module '@babel/core/lib/transformation/index' {
|
||||
declare module.exports: $Exports<'@babel/core/lib/transformation'>;
|
||||
}
|
||||
declare module '@babel/core/lib/transformation/index.js' {
|
||||
declare module.exports: $Exports<'@babel/core/lib/transformation'>;
|
||||
}
|
||||
declare module '@babel/core/lib/transformation/normalize-file.js' {
|
||||
declare module.exports: $Exports<'@babel/core/lib/transformation/normalize-file'>;
|
||||
}
|
||||
declare module '@babel/core/lib/transformation/normalize-opts.js' {
|
||||
declare module.exports: $Exports<'@babel/core/lib/transformation/normalize-opts'>;
|
||||
}
|
||||
declare module '@babel/core/lib/transformation/plugin-pass.js' {
|
||||
declare module.exports: $Exports<'@babel/core/lib/transformation/plugin-pass'>;
|
||||
}
|
||||
declare module '@babel/core/lib/transformation/util/missing-plugin-helper.js' {
|
||||
declare module.exports: $Exports<'@babel/core/lib/transformation/util/missing-plugin-helper'>;
|
||||
}
|
|
@ -1,35 +0,0 @@
|
|||
// flow-typed signature: fa52302ca72090208e82ad40a1a6f350
|
||||
// flow-typed version: <<STUB>>/@babel/plugin-proposal-class-properties_v7.7.4/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* '@babel/plugin-proposal-class-properties'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module '@babel/plugin-proposal-class-properties' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module '@babel/plugin-proposal-class-properties/lib' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module '@babel/plugin-proposal-class-properties/lib/index' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-class-properties/lib'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-class-properties/lib/index.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-class-properties/lib'>;
|
||||
}
|
|
@ -1,42 +0,0 @@
|
|||
// flow-typed signature: 2a669a77c802c1f43c266c2aebe70f83
|
||||
// flow-typed version: <<STUB>>/@babel/plugin-proposal-decorators_v7.7.4/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* '@babel/plugin-proposal-decorators'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module '@babel/plugin-proposal-decorators' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module '@babel/plugin-proposal-decorators/lib' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-decorators/lib/transformer-legacy' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module '@babel/plugin-proposal-decorators/lib/index' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-decorators/lib'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-decorators/lib/index.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-decorators/lib'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-decorators/lib/transformer-legacy.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-decorators/lib/transformer-legacy'>;
|
||||
}
|
|
@ -1,35 +0,0 @@
|
|||
// flow-typed signature: 06dd3217e8d9fd0fab17df7ad908f840
|
||||
// flow-typed version: <<STUB>>/@babel/plugin-proposal-do-expressions_v7.7.4/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* '@babel/plugin-proposal-do-expressions'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module '@babel/plugin-proposal-do-expressions' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module '@babel/plugin-proposal-do-expressions/lib' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module '@babel/plugin-proposal-do-expressions/lib/index' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-do-expressions/lib'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-do-expressions/lib/index.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-do-expressions/lib'>;
|
||||
}
|
|
@ -1,35 +0,0 @@
|
|||
// flow-typed signature: 8fd194379c4868cdf154f0c218e63178
|
||||
// flow-typed version: <<STUB>>/@babel/plugin-proposal-export-default-from_v7.7.4/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* '@babel/plugin-proposal-export-default-from'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module '@babel/plugin-proposal-export-default-from' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module '@babel/plugin-proposal-export-default-from/lib' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module '@babel/plugin-proposal-export-default-from/lib/index' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-export-default-from/lib'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-export-default-from/lib/index.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-export-default-from/lib'>;
|
||||
}
|
|
@ -1,35 +0,0 @@
|
|||
// flow-typed signature: e313a5d200ef7a8a502548fc65eec726
|
||||
// flow-typed version: <<STUB>>/@babel/plugin-proposal-export-namespace-from_v7.7.4/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* '@babel/plugin-proposal-export-namespace-from'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module '@babel/plugin-proposal-export-namespace-from' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module '@babel/plugin-proposal-export-namespace-from/lib' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module '@babel/plugin-proposal-export-namespace-from/lib/index' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-export-namespace-from/lib'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-export-namespace-from/lib/index.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-export-namespace-from/lib'>;
|
||||
}
|
|
@ -1,35 +0,0 @@
|
|||
// flow-typed signature: 62e2bd171243642898d0982ec73e28ca
|
||||
// flow-typed version: <<STUB>>/@babel/plugin-proposal-function-bind_v7.7.4/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* '@babel/plugin-proposal-function-bind'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module '@babel/plugin-proposal-function-bind' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module '@babel/plugin-proposal-function-bind/lib' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module '@babel/plugin-proposal-function-bind/lib/index' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-function-bind/lib'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-function-bind/lib/index.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-function-bind/lib'>;
|
||||
}
|
|
@ -1,35 +0,0 @@
|
|||
// flow-typed signature: 0d8aab922e89f42878bb98b5dbf44c6d
|
||||
// flow-typed version: <<STUB>>/@babel/plugin-proposal-function-sent_v7.7.4/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* '@babel/plugin-proposal-function-sent'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module '@babel/plugin-proposal-function-sent' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module '@babel/plugin-proposal-function-sent/lib' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module '@babel/plugin-proposal-function-sent/lib/index' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-function-sent/lib'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-function-sent/lib/index.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-function-sent/lib'>;
|
||||
}
|
|
@ -1,35 +0,0 @@
|
|||
// flow-typed signature: 7ac3cb593333dce36a10798ac4f8a92b
|
||||
// flow-typed version: <<STUB>>/@babel/plugin-proposal-json-strings_v7.7.4/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* '@babel/plugin-proposal-json-strings'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module '@babel/plugin-proposal-json-strings' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module '@babel/plugin-proposal-json-strings/lib' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module '@babel/plugin-proposal-json-strings/lib/index' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-json-strings/lib'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-json-strings/lib/index.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-json-strings/lib'>;
|
||||
}
|
|
@ -1,35 +0,0 @@
|
|||
// flow-typed signature: f9fa95bce9b25d809edc1336cb7e9225
|
||||
// flow-typed version: <<STUB>>/@babel/plugin-proposal-logical-assignment-operators_v7.7.4/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* '@babel/plugin-proposal-logical-assignment-operators'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module '@babel/plugin-proposal-logical-assignment-operators' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module '@babel/plugin-proposal-logical-assignment-operators/lib' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module '@babel/plugin-proposal-logical-assignment-operators/lib/index' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-logical-assignment-operators/lib'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-logical-assignment-operators/lib/index.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-logical-assignment-operators/lib'>;
|
||||
}
|
|
@ -1,35 +0,0 @@
|
|||
// flow-typed signature: b8848124eb077e9ff0aef324ba1277c2
|
||||
// flow-typed version: <<STUB>>/@babel/plugin-proposal-nullish-coalescing-operator_v7.7.4/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* '@babel/plugin-proposal-nullish-coalescing-operator'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module '@babel/plugin-proposal-nullish-coalescing-operator' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module '@babel/plugin-proposal-nullish-coalescing-operator/lib' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module '@babel/plugin-proposal-nullish-coalescing-operator/lib/index' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-nullish-coalescing-operator/lib'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-nullish-coalescing-operator/lib/index.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-nullish-coalescing-operator/lib'>;
|
||||
}
|
|
@ -1,35 +0,0 @@
|
|||
// flow-typed signature: 5d329600803f9f0d5709dab1aa53a263
|
||||
// flow-typed version: <<STUB>>/@babel/plugin-proposal-numeric-separator_v7.7.4/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* '@babel/plugin-proposal-numeric-separator'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module '@babel/plugin-proposal-numeric-separator' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module '@babel/plugin-proposal-numeric-separator/lib' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module '@babel/plugin-proposal-numeric-separator/lib/index' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-numeric-separator/lib'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-numeric-separator/lib/index.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-numeric-separator/lib'>;
|
||||
}
|
|
@ -1,35 +0,0 @@
|
|||
// flow-typed signature: 396fc3d6948172db4fd924c168c241da
|
||||
// flow-typed version: <<STUB>>/@babel/plugin-proposal-optional-chaining_v7.7.5/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* '@babel/plugin-proposal-optional-chaining'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module '@babel/plugin-proposal-optional-chaining' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module '@babel/plugin-proposal-optional-chaining/lib' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module '@babel/plugin-proposal-optional-chaining/lib/index' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-optional-chaining/lib'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-optional-chaining/lib/index.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-optional-chaining/lib'>;
|
||||
}
|
|
@ -1,797 +0,0 @@
|
|||
// flow-typed signature: 97be509dba10ea40d27e64ca99ba55d0
|
||||
// flow-typed version: <<STUB>>/@babel/plugin-proposal-pipeline-operator_v7.7.4/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* '@babel/plugin-proposal-pipeline-operator'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/lib/buildOptimizedSequenceExpression' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/lib/fsharpVisitor' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/lib' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/lib/minimalVisitor' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/lib/smartVisitor' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/src/buildOptimizedSequenceExpression' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/src/fsharpVisitor' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/src' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/src/minimalVisitor' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/src/smartVisitor' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/arrow-functions-parenless/exec' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/arrow-functions/exec' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/arrow-functions/input' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/arrow-functions/output' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/await/exec' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/await/input' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/await/output' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/basic/exec' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/basic/input' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/basic/output' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/indirect-eval/exec' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/indirect-eval/input' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/indirect-eval/output' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/multiple-argument-use/input' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/multiple-argument-use/output' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/optimize-0-param-arrow/exec' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/optimize-0-param-arrow/input' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/optimize-0-param-arrow/output' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/arrow-functions-parenless/exec' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/arrow-functions-parenless/input' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/arrow-functions-parenless/output' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/arrow-functions/exec' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/arrow-functions/input' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/arrow-functions/output' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/async-arrow/exec' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/async-arrow/input' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/async-arrow/output' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/basic/exec' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/basic/input' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/basic/output' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/chaining/exec' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/chaining/input' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/chaining/output' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/currying/exec' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/currying/input' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/currying/output' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/deoptimize-multi-param-arrow/exec' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/deoptimize-multi-param-arrow/input' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/deoptimize-multi-param-arrow/output' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/destructure-arrow-param/exec' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/destructure-arrow-param/input' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/destructure-arrow-param/output' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/evaluation/exec' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/evaluation/input' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/evaluation/output' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/indirect-eval/exec' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/indirect-eval/input' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/indirect-eval/output' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/multiple-argument-use/exec' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/multiple-argument-use/input' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/multiple-argument-use/output' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/optimize-0-param-arrow/exec' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/optimize-0-param-arrow/input' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/optimize-0-param-arrow/output' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/precedence/exec' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/precedence/input' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/precedence/output' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/await/exec' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/await/input' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/await/output' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/bare-function/exec' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/bare-function/input' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/bare-function/output' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/basic/exec' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/basic/input' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/basic/output' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for-init/exec' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for-init/input' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for-init/output' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for-update/exec' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for-update/input' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for-update/output' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for/exec' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for/input' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for/output' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/if/input' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/if/output' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/indirect-eval/exec' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/indirect-eval/input' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/indirect-eval/output' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/nested/exec' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/nested/input' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/nested/output' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/object-literal/exec' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/object-literal/input' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/object-literal/output' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/topic-as-callee/input' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/topic-as-callee/output' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/topic-inside-arrow-function/exec' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/topic-inside-arrow-function/input' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/topic-inside-arrow-function/output' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/while/exec' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/while/input' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/while/output' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/yield/exec' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/yield/input' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/yield/output' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart+arrow/await/exec' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/lib/buildOptimizedSequenceExpression.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/lib/buildOptimizedSequenceExpression'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/lib/fsharpVisitor.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/lib/fsharpVisitor'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/lib/index' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/lib'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/lib/index.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/lib'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/lib/minimalVisitor.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/lib/minimalVisitor'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/lib/smartVisitor.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/lib/smartVisitor'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/src/buildOptimizedSequenceExpression.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/src/buildOptimizedSequenceExpression'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/src/fsharpVisitor.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/src/fsharpVisitor'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/src/index' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/src'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/src/index.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/src'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/src/minimalVisitor.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/src/minimalVisitor'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/src/smartVisitor.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/src/smartVisitor'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/arrow-functions-parenless/exec.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/arrow-functions-parenless/exec'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/arrow-functions/exec.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/arrow-functions/exec'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/arrow-functions/input.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/arrow-functions/input'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/arrow-functions/output.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/arrow-functions/output'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/await/exec.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/await/exec'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/await/input.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/await/input'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/await/output.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/await/output'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/basic/exec.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/basic/exec'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/basic/input.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/basic/input'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/basic/output.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/basic/output'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/indirect-eval/exec.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/indirect-eval/exec'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/indirect-eval/input.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/indirect-eval/input'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/indirect-eval/output.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/indirect-eval/output'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/multiple-argument-use/input.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/multiple-argument-use/input'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/multiple-argument-use/output.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/multiple-argument-use/output'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/optimize-0-param-arrow/exec.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/optimize-0-param-arrow/exec'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/optimize-0-param-arrow/input.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/optimize-0-param-arrow/input'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/optimize-0-param-arrow/output.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/optimize-0-param-arrow/output'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/arrow-functions-parenless/exec.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/arrow-functions-parenless/exec'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/arrow-functions-parenless/input.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/arrow-functions-parenless/input'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/arrow-functions-parenless/output.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/arrow-functions-parenless/output'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/arrow-functions/exec.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/arrow-functions/exec'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/arrow-functions/input.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/arrow-functions/input'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/arrow-functions/output.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/arrow-functions/output'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/async-arrow/exec.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/async-arrow/exec'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/async-arrow/input.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/async-arrow/input'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/async-arrow/output.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/async-arrow/output'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/basic/exec.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/basic/exec'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/basic/input.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/basic/input'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/basic/output.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/basic/output'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/chaining/exec.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/chaining/exec'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/chaining/input.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/chaining/input'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/chaining/output.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/chaining/output'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/currying/exec.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/currying/exec'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/currying/input.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/currying/input'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/currying/output.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/currying/output'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/deoptimize-multi-param-arrow/exec.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/deoptimize-multi-param-arrow/exec'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/deoptimize-multi-param-arrow/input.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/deoptimize-multi-param-arrow/input'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/deoptimize-multi-param-arrow/output.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/deoptimize-multi-param-arrow/output'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/destructure-arrow-param/exec.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/destructure-arrow-param/exec'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/destructure-arrow-param/input.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/destructure-arrow-param/input'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/destructure-arrow-param/output.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/destructure-arrow-param/output'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/evaluation/exec.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/evaluation/exec'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/evaluation/input.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/evaluation/input'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/evaluation/output.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/evaluation/output'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/indirect-eval/exec.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/indirect-eval/exec'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/indirect-eval/input.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/indirect-eval/input'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/indirect-eval/output.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/indirect-eval/output'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/multiple-argument-use/exec.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/multiple-argument-use/exec'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/multiple-argument-use/input.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/multiple-argument-use/input'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/multiple-argument-use/output.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/multiple-argument-use/output'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/optimize-0-param-arrow/exec.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/optimize-0-param-arrow/exec'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/optimize-0-param-arrow/input.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/optimize-0-param-arrow/input'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/optimize-0-param-arrow/output.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/optimize-0-param-arrow/output'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/precedence/exec.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/precedence/exec'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/precedence/input.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/precedence/input'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/precedence/output.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/precedence/output'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/await/exec.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/await/exec'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/await/input.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/await/input'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/await/output.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/await/output'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/bare-function/exec.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/bare-function/exec'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/bare-function/input.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/bare-function/input'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/bare-function/output.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/bare-function/output'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/basic/exec.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/basic/exec'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/basic/input.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/basic/input'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/basic/output.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/basic/output'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for-init/exec.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for-init/exec'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for-init/input.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for-init/input'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for-init/output.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for-init/output'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for-update/exec.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for-update/exec'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for-update/input.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for-update/input'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for-update/output.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for-update/output'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for/exec.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for/exec'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for/input.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for/input'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for/output.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for/output'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/if/input.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/if/input'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/if/output.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/if/output'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/indirect-eval/exec.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/indirect-eval/exec'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/indirect-eval/input.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/indirect-eval/input'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/indirect-eval/output.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/indirect-eval/output'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/nested/exec.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/nested/exec'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/nested/input.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/nested/input'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/nested/output.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/nested/output'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/object-literal/exec.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/object-literal/exec'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/object-literal/input.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/object-literal/input'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/object-literal/output.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/object-literal/output'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/topic-as-callee/input.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/topic-as-callee/input'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/topic-as-callee/output.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/topic-as-callee/output'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/topic-inside-arrow-function/exec.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/topic-inside-arrow-function/exec'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/topic-inside-arrow-function/input.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/topic-inside-arrow-function/input'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/topic-inside-arrow-function/output.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/topic-inside-arrow-function/output'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/while/exec.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/while/exec'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/while/input.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/while/input'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/while/output.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/while/output'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/yield/exec.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/yield/exec'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/yield/input.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/yield/input'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/yield/output.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/yield/output'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart+arrow/await/exec.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart+arrow/await/exec'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/index' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-pipeline-operator/test/index.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test'>;
|
||||
}
|
|
@ -1,35 +0,0 @@
|
|||
// flow-typed signature: 371da58209d73e91ae0774a1a6a003dd
|
||||
// flow-typed version: <<STUB>>/@babel/plugin-proposal-throw-expressions_v7.7.4/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* '@babel/plugin-proposal-throw-expressions'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module '@babel/plugin-proposal-throw-expressions' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module '@babel/plugin-proposal-throw-expressions/lib' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module '@babel/plugin-proposal-throw-expressions/lib/index' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-throw-expressions/lib'>;
|
||||
}
|
||||
declare module '@babel/plugin-proposal-throw-expressions/lib/index.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-proposal-throw-expressions/lib'>;
|
||||
}
|
|
@ -1,35 +0,0 @@
|
|||
// flow-typed signature: b8a0cfbafebea83240c27aa70c00e080
|
||||
// flow-typed version: <<STUB>>/@babel/plugin-syntax-dynamic-import_v7.7.4/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* '@babel/plugin-syntax-dynamic-import'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module '@babel/plugin-syntax-dynamic-import' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module '@babel/plugin-syntax-dynamic-import/lib' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module '@babel/plugin-syntax-dynamic-import/lib/index' {
|
||||
declare module.exports: $Exports<'@babel/plugin-syntax-dynamic-import/lib'>;
|
||||
}
|
||||
declare module '@babel/plugin-syntax-dynamic-import/lib/index.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-syntax-dynamic-import/lib'>;
|
||||
}
|
|
@ -1,35 +0,0 @@
|
|||
// flow-typed signature: ca4e3bfdbb2aba2901e59170005c263a
|
||||
// flow-typed version: <<STUB>>/@babel/plugin-syntax-import-meta_v7.7.4/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* '@babel/plugin-syntax-import-meta'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module '@babel/plugin-syntax-import-meta' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module '@babel/plugin-syntax-import-meta/lib' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module '@babel/plugin-syntax-import-meta/lib/index' {
|
||||
declare module.exports: $Exports<'@babel/plugin-syntax-import-meta/lib'>;
|
||||
}
|
||||
declare module '@babel/plugin-syntax-import-meta/lib/index.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-syntax-import-meta/lib'>;
|
||||
}
|
|
@ -1,35 +0,0 @@
|
|||
// flow-typed signature: 527ff379248b0884fe41cafe01b8bb0b
|
||||
// flow-typed version: <<STUB>>/@babel/plugin-transform-member-expression-literals_v7.7.4/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* '@babel/plugin-transform-member-expression-literals'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module '@babel/plugin-transform-member-expression-literals' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module '@babel/plugin-transform-member-expression-literals/lib' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module '@babel/plugin-transform-member-expression-literals/lib/index' {
|
||||
declare module.exports: $Exports<'@babel/plugin-transform-member-expression-literals/lib'>;
|
||||
}
|
||||
declare module '@babel/plugin-transform-member-expression-literals/lib/index.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-transform-member-expression-literals/lib'>;
|
||||
}
|
|
@ -1,35 +0,0 @@
|
|||
// flow-typed signature: 1366774d9f3355070594bb88ce8bda8c
|
||||
// flow-typed version: <<STUB>>/@babel/plugin-transform-property-literals_v7.7.4/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* '@babel/plugin-transform-property-literals'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module '@babel/plugin-transform-property-literals' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module '@babel/plugin-transform-property-literals/lib' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module '@babel/plugin-transform-property-literals/lib/index' {
|
||||
declare module.exports: $Exports<'@babel/plugin-transform-property-literals/lib'>;
|
||||
}
|
||||
declare module '@babel/plugin-transform-property-literals/lib/index.js' {
|
||||
declare module.exports: $Exports<'@babel/plugin-transform-property-literals/lib'>;
|
||||
}
|
|
@ -1,4 +0,0 @@
|
|||
// flow-typed signature: 70ae65c95b3420e3469c9c30171c1835
|
||||
// flow-typed version: c6154227d1/@babel/polyfill_v7.x.x/flow_>=v0.104.x
|
||||
|
||||
declare module '@babel/polyfill' {}
|
|
@ -1,210 +0,0 @@
|
|||
// flow-typed signature: 133ab6f0d1c2ced355e7235c3456bcb2
|
||||
// flow-typed version: <<STUB>>/@babel/preset-env_v7.7.6/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* '@babel/preset-env'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module '@babel/preset-env' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module '@babel/preset-env/data/built-ins.json' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/preset-env/data/corejs2-built-in-features' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/preset-env/data/overlapping-plugins' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/preset-env/data/plugin-features' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/preset-env/data/shipped-proposals' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/preset-env/data/unreleased-labels' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/preset-env/lib/available-plugins' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/preset-env/lib/debug' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/preset-env/lib/filter-items' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/preset-env/lib/get-option-specific-excludes' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/preset-env/lib' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/preset-env/lib/module-transformations' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/preset-env/lib/normalize-options' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/preset-env/lib/options' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/preset-env/lib/polyfills/corejs2/built-in-definitions' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/preset-env/lib/polyfills/corejs2/entry-plugin' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/preset-env/lib/polyfills/corejs2/get-platform-specific-default' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/preset-env/lib/polyfills/corejs2/usage-plugin' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/preset-env/lib/polyfills/corejs3/built-in-definitions' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/preset-env/lib/polyfills/corejs3/entry-plugin' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/preset-env/lib/polyfills/corejs3/shipped-proposals' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/preset-env/lib/polyfills/corejs3/usage-plugin' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/preset-env/lib/polyfills/regenerator/entry-plugin' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/preset-env/lib/polyfills/regenerator/usage-plugin' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/preset-env/lib/targets-parser' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@babel/preset-env/lib/utils' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module '@babel/preset-env/data/built-ins.json.js' {
|
||||
declare module.exports: $Exports<'@babel/preset-env/data/built-ins.json'>;
|
||||
}
|
||||
declare module '@babel/preset-env/data/corejs2-built-in-features.js' {
|
||||
declare module.exports: $Exports<'@babel/preset-env/data/corejs2-built-in-features'>;
|
||||
}
|
||||
declare module '@babel/preset-env/data/overlapping-plugins.js' {
|
||||
declare module.exports: $Exports<'@babel/preset-env/data/overlapping-plugins'>;
|
||||
}
|
||||
declare module '@babel/preset-env/data/plugin-features.js' {
|
||||
declare module.exports: $Exports<'@babel/preset-env/data/plugin-features'>;
|
||||
}
|
||||
declare module '@babel/preset-env/data/shipped-proposals.js' {
|
||||
declare module.exports: $Exports<'@babel/preset-env/data/shipped-proposals'>;
|
||||
}
|
||||
declare module '@babel/preset-env/data/unreleased-labels.js' {
|
||||
declare module.exports: $Exports<'@babel/preset-env/data/unreleased-labels'>;
|
||||
}
|
||||
declare module '@babel/preset-env/lib/available-plugins.js' {
|
||||
declare module.exports: $Exports<'@babel/preset-env/lib/available-plugins'>;
|
||||
}
|
||||
declare module '@babel/preset-env/lib/debug.js' {
|
||||
declare module.exports: $Exports<'@babel/preset-env/lib/debug'>;
|
||||
}
|
||||
declare module '@babel/preset-env/lib/filter-items.js' {
|
||||
declare module.exports: $Exports<'@babel/preset-env/lib/filter-items'>;
|
||||
}
|
||||
declare module '@babel/preset-env/lib/get-option-specific-excludes.js' {
|
||||
declare module.exports: $Exports<'@babel/preset-env/lib/get-option-specific-excludes'>;
|
||||
}
|
||||
declare module '@babel/preset-env/lib/index' {
|
||||
declare module.exports: $Exports<'@babel/preset-env/lib'>;
|
||||
}
|
||||
declare module '@babel/preset-env/lib/index.js' {
|
||||
declare module.exports: $Exports<'@babel/preset-env/lib'>;
|
||||
}
|
||||
declare module '@babel/preset-env/lib/module-transformations.js' {
|
||||
declare module.exports: $Exports<'@babel/preset-env/lib/module-transformations'>;
|
||||
}
|
||||
declare module '@babel/preset-env/lib/normalize-options.js' {
|
||||
declare module.exports: $Exports<'@babel/preset-env/lib/normalize-options'>;
|
||||
}
|
||||
declare module '@babel/preset-env/lib/options.js' {
|
||||
declare module.exports: $Exports<'@babel/preset-env/lib/options'>;
|
||||
}
|
||||
declare module '@babel/preset-env/lib/polyfills/corejs2/built-in-definitions.js' {
|
||||
declare module.exports: $Exports<'@babel/preset-env/lib/polyfills/corejs2/built-in-definitions'>;
|
||||
}
|
||||
declare module '@babel/preset-env/lib/polyfills/corejs2/entry-plugin.js' {
|
||||
declare module.exports: $Exports<'@babel/preset-env/lib/polyfills/corejs2/entry-plugin'>;
|
||||
}
|
||||
declare module '@babel/preset-env/lib/polyfills/corejs2/get-platform-specific-default.js' {
|
||||
declare module.exports: $Exports<'@babel/preset-env/lib/polyfills/corejs2/get-platform-specific-default'>;
|
||||
}
|
||||
declare module '@babel/preset-env/lib/polyfills/corejs2/usage-plugin.js' {
|
||||
declare module.exports: $Exports<'@babel/preset-env/lib/polyfills/corejs2/usage-plugin'>;
|
||||
}
|
||||
declare module '@babel/preset-env/lib/polyfills/corejs3/built-in-definitions.js' {
|
||||
declare module.exports: $Exports<'@babel/preset-env/lib/polyfills/corejs3/built-in-definitions'>;
|
||||
}
|
||||
declare module '@babel/preset-env/lib/polyfills/corejs3/entry-plugin.js' {
|
||||
declare module.exports: $Exports<'@babel/preset-env/lib/polyfills/corejs3/entry-plugin'>;
|
||||
}
|
||||
declare module '@babel/preset-env/lib/polyfills/corejs3/shipped-proposals.js' {
|
||||
declare module.exports: $Exports<'@babel/preset-env/lib/polyfills/corejs3/shipped-proposals'>;
|
||||
}
|
||||
declare module '@babel/preset-env/lib/polyfills/corejs3/usage-plugin.js' {
|
||||
declare module.exports: $Exports<'@babel/preset-env/lib/polyfills/corejs3/usage-plugin'>;
|
||||
}
|
||||
declare module '@babel/preset-env/lib/polyfills/regenerator/entry-plugin.js' {
|
||||
declare module.exports: $Exports<'@babel/preset-env/lib/polyfills/regenerator/entry-plugin'>;
|
||||
}
|
||||
declare module '@babel/preset-env/lib/polyfills/regenerator/usage-plugin.js' {
|
||||
declare module.exports: $Exports<'@babel/preset-env/lib/polyfills/regenerator/usage-plugin'>;
|
||||
}
|
||||
declare module '@babel/preset-env/lib/targets-parser.js' {
|
||||
declare module.exports: $Exports<'@babel/preset-env/lib/targets-parser'>;
|
||||
}
|
||||
declare module '@babel/preset-env/lib/utils.js' {
|
||||
declare module.exports: $Exports<'@babel/preset-env/lib/utils'>;
|
||||
}
|
|
@ -1,35 +0,0 @@
|
|||
// flow-typed signature: b25f527af07aa5e08210cd47d1d94701
|
||||
// flow-typed version: <<STUB>>/@babel/preset-flow_v7.7.4/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* '@babel/preset-flow'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module '@babel/preset-flow' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module '@babel/preset-flow/lib' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module '@babel/preset-flow/lib/index' {
|
||||
declare module.exports: $Exports<'@babel/preset-flow/lib'>;
|
||||
}
|
||||
declare module '@babel/preset-flow/lib/index.js' {
|
||||
declare module.exports: $Exports<'@babel/preset-flow/lib'>;
|
||||
}
|
|
@ -1,35 +0,0 @@
|
|||
// flow-typed signature: aa68d845a7df0d164b59b535b7d93a9a
|
||||
// flow-typed version: <<STUB>>/@babel/preset-react_v7.7.4/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* '@babel/preset-react'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module '@babel/preset-react' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module '@babel/preset-react/lib' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module '@babel/preset-react/lib/index' {
|
||||
declare module.exports: $Exports<'@babel/preset-react/lib'>;
|
||||
}
|
||||
declare module '@babel/preset-react/lib/index.js' {
|
||||
declare module.exports: $Exports<'@babel/preset-react/lib'>;
|
||||
}
|
|
@ -1,144 +0,0 @@
|
|||
// flow-typed signature: 09e0a6be4eeb2ba7360b27aebad3845e
|
||||
// flow-typed version: <<STUB>>/@gnosis.pm/safe-contracts_v1.0.0/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* '@gnosis.pm/safe-contracts'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module '@gnosis.pm/safe-contracts' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module '@gnosis.pm/safe-contracts/test/createAndAddModules' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@gnosis.pm/safe-contracts/test/dailyLimitModule' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@gnosis.pm/safe-contracts/test/gnosisSafePersonalEdition' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@gnosis.pm/safe-contracts/test/gnosisSafePersonalEditionCreation' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@gnosis.pm/safe-contracts/test/gnosisSafePersonalEditionCreation2' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@gnosis.pm/safe-contracts/test/gnosisSafePersonalEditionEthSignTypeData' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@gnosis.pm/safe-contracts/test/gnosisSafePersonalEditionManagers' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@gnosis.pm/safe-contracts/test/gnosisSafePersonalEditionNestedSafes' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@gnosis.pm/safe-contracts/test/gnosisSafePersonalEditionSignatureValidatorErrors' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@gnosis.pm/safe-contracts/test/gnosisSafeTeamEdition' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@gnosis.pm/safe-contracts/test/multiSend' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@gnosis.pm/safe-contracts/test/safeMethodNaming' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@gnosis.pm/safe-contracts/test/socialRecoveryModule' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@gnosis.pm/safe-contracts/test/stateChannelModule' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@gnosis.pm/safe-contracts/test/utils/execution' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@gnosis.pm/safe-contracts/test/utils/general' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@gnosis.pm/safe-contracts/test/whitelistModule' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module '@gnosis.pm/safe-contracts/test/createAndAddModules.js' {
|
||||
declare module.exports: $Exports<'@gnosis.pm/safe-contracts/test/createAndAddModules'>;
|
||||
}
|
||||
declare module '@gnosis.pm/safe-contracts/test/dailyLimitModule.js' {
|
||||
declare module.exports: $Exports<'@gnosis.pm/safe-contracts/test/dailyLimitModule'>;
|
||||
}
|
||||
declare module '@gnosis.pm/safe-contracts/test/gnosisSafePersonalEdition.js' {
|
||||
declare module.exports: $Exports<'@gnosis.pm/safe-contracts/test/gnosisSafePersonalEdition'>;
|
||||
}
|
||||
declare module '@gnosis.pm/safe-contracts/test/gnosisSafePersonalEditionCreation.js' {
|
||||
declare module.exports: $Exports<'@gnosis.pm/safe-contracts/test/gnosisSafePersonalEditionCreation'>;
|
||||
}
|
||||
declare module '@gnosis.pm/safe-contracts/test/gnosisSafePersonalEditionCreation2.js' {
|
||||
declare module.exports: $Exports<'@gnosis.pm/safe-contracts/test/gnosisSafePersonalEditionCreation2'>;
|
||||
}
|
||||
declare module '@gnosis.pm/safe-contracts/test/gnosisSafePersonalEditionEthSignTypeData.js' {
|
||||
declare module.exports: $Exports<'@gnosis.pm/safe-contracts/test/gnosisSafePersonalEditionEthSignTypeData'>;
|
||||
}
|
||||
declare module '@gnosis.pm/safe-contracts/test/gnosisSafePersonalEditionManagers.js' {
|
||||
declare module.exports: $Exports<'@gnosis.pm/safe-contracts/test/gnosisSafePersonalEditionManagers'>;
|
||||
}
|
||||
declare module '@gnosis.pm/safe-contracts/test/gnosisSafePersonalEditionNestedSafes.js' {
|
||||
declare module.exports: $Exports<'@gnosis.pm/safe-contracts/test/gnosisSafePersonalEditionNestedSafes'>;
|
||||
}
|
||||
declare module '@gnosis.pm/safe-contracts/test/gnosisSafePersonalEditionSignatureValidatorErrors.js' {
|
||||
declare module.exports: $Exports<'@gnosis.pm/safe-contracts/test/gnosisSafePersonalEditionSignatureValidatorErrors'>;
|
||||
}
|
||||
declare module '@gnosis.pm/safe-contracts/test/gnosisSafeTeamEdition.js' {
|
||||
declare module.exports: $Exports<'@gnosis.pm/safe-contracts/test/gnosisSafeTeamEdition'>;
|
||||
}
|
||||
declare module '@gnosis.pm/safe-contracts/test/multiSend.js' {
|
||||
declare module.exports: $Exports<'@gnosis.pm/safe-contracts/test/multiSend'>;
|
||||
}
|
||||
declare module '@gnosis.pm/safe-contracts/test/safeMethodNaming.js' {
|
||||
declare module.exports: $Exports<'@gnosis.pm/safe-contracts/test/safeMethodNaming'>;
|
||||
}
|
||||
declare module '@gnosis.pm/safe-contracts/test/socialRecoveryModule.js' {
|
||||
declare module.exports: $Exports<'@gnosis.pm/safe-contracts/test/socialRecoveryModule'>;
|
||||
}
|
||||
declare module '@gnosis.pm/safe-contracts/test/stateChannelModule.js' {
|
||||
declare module.exports: $Exports<'@gnosis.pm/safe-contracts/test/stateChannelModule'>;
|
||||
}
|
||||
declare module '@gnosis.pm/safe-contracts/test/utils/execution.js' {
|
||||
declare module.exports: $Exports<'@gnosis.pm/safe-contracts/test/utils/execution'>;
|
||||
}
|
||||
declare module '@gnosis.pm/safe-contracts/test/utils/general.js' {
|
||||
declare module.exports: $Exports<'@gnosis.pm/safe-contracts/test/utils/general'>;
|
||||
}
|
||||
declare module '@gnosis.pm/safe-contracts/test/whitelistModule.js' {
|
||||
declare module.exports: $Exports<'@gnosis.pm/safe-contracts/test/whitelistModule'>;
|
||||
}
|
|
@ -1,157 +0,0 @@
|
|||
// flow-typed signature: e1656269373f75cc4eff330415ab3e1c
|
||||
// flow-typed version: <<STUB>>/@gnosis.pm/util-contracts_v2.0.4/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* '@gnosis.pm/util-contracts'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module '@gnosis.pm/util-contracts' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module '@gnosis.pm/util-contracts/migrations/1_initial_migration' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@gnosis.pm/util-contracts/migrations/2_deploy_WETH' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@gnosis.pm/util-contracts/src/conf/network-restore' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@gnosis.pm/util-contracts/src/extract_network_info' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@gnosis.pm/util-contracts/src/inject_network_info' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@gnosis.pm/util-contracts/src/migrations-truffle-4/2_deploy_math' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@gnosis.pm/util-contracts/src/migrations-truffle-4/3_deploy_WETH' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@gnosis.pm/util-contracts/src/migrations-truffle-4' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@gnosis.pm/util-contracts/src/migrations-truffle-5/2_deploy_math' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@gnosis.pm/util-contracts/src/migrations-truffle-5/3_deploy_WETH' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@gnosis.pm/util-contracts/src/migrations-truffle-5' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@gnosis.pm/util-contracts/src/util/extractNetworks' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@gnosis.pm/util-contracts/src/util/HDWalletProvider' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@gnosis.pm/util-contracts/src/util/injectNetworks' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@gnosis.pm/util-contracts/src/util/injectNetworksDeps' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@gnosis.pm/util-contracts/src/util/networkUtils' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@gnosis.pm/util-contracts/src/util/truffleConfig' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@gnosis.pm/util-contracts/truffle' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module '@gnosis.pm/util-contracts/migrations/1_initial_migration.js' {
|
||||
declare module.exports: $Exports<'@gnosis.pm/util-contracts/migrations/1_initial_migration'>;
|
||||
}
|
||||
declare module '@gnosis.pm/util-contracts/migrations/2_deploy_WETH.js' {
|
||||
declare module.exports: $Exports<'@gnosis.pm/util-contracts/migrations/2_deploy_WETH'>;
|
||||
}
|
||||
declare module '@gnosis.pm/util-contracts/src/conf/network-restore.js' {
|
||||
declare module.exports: $Exports<'@gnosis.pm/util-contracts/src/conf/network-restore'>;
|
||||
}
|
||||
declare module '@gnosis.pm/util-contracts/src/extract_network_info.js' {
|
||||
declare module.exports: $Exports<'@gnosis.pm/util-contracts/src/extract_network_info'>;
|
||||
}
|
||||
declare module '@gnosis.pm/util-contracts/src/inject_network_info.js' {
|
||||
declare module.exports: $Exports<'@gnosis.pm/util-contracts/src/inject_network_info'>;
|
||||
}
|
||||
declare module '@gnosis.pm/util-contracts/src/migrations-truffle-4/2_deploy_math.js' {
|
||||
declare module.exports: $Exports<'@gnosis.pm/util-contracts/src/migrations-truffle-4/2_deploy_math'>;
|
||||
}
|
||||
declare module '@gnosis.pm/util-contracts/src/migrations-truffle-4/3_deploy_WETH.js' {
|
||||
declare module.exports: $Exports<'@gnosis.pm/util-contracts/src/migrations-truffle-4/3_deploy_WETH'>;
|
||||
}
|
||||
declare module '@gnosis.pm/util-contracts/src/migrations-truffle-4/index' {
|
||||
declare module.exports: $Exports<'@gnosis.pm/util-contracts/src/migrations-truffle-4'>;
|
||||
}
|
||||
declare module '@gnosis.pm/util-contracts/src/migrations-truffle-4/index.js' {
|
||||
declare module.exports: $Exports<'@gnosis.pm/util-contracts/src/migrations-truffle-4'>;
|
||||
}
|
||||
declare module '@gnosis.pm/util-contracts/src/migrations-truffle-5/2_deploy_math.js' {
|
||||
declare module.exports: $Exports<'@gnosis.pm/util-contracts/src/migrations-truffle-5/2_deploy_math'>;
|
||||
}
|
||||
declare module '@gnosis.pm/util-contracts/src/migrations-truffle-5/3_deploy_WETH.js' {
|
||||
declare module.exports: $Exports<'@gnosis.pm/util-contracts/src/migrations-truffle-5/3_deploy_WETH'>;
|
||||
}
|
||||
declare module '@gnosis.pm/util-contracts/src/migrations-truffle-5/index' {
|
||||
declare module.exports: $Exports<'@gnosis.pm/util-contracts/src/migrations-truffle-5'>;
|
||||
}
|
||||
declare module '@gnosis.pm/util-contracts/src/migrations-truffle-5/index.js' {
|
||||
declare module.exports: $Exports<'@gnosis.pm/util-contracts/src/migrations-truffle-5'>;
|
||||
}
|
||||
declare module '@gnosis.pm/util-contracts/src/util/extractNetworks.js' {
|
||||
declare module.exports: $Exports<'@gnosis.pm/util-contracts/src/util/extractNetworks'>;
|
||||
}
|
||||
declare module '@gnosis.pm/util-contracts/src/util/HDWalletProvider.js' {
|
||||
declare module.exports: $Exports<'@gnosis.pm/util-contracts/src/util/HDWalletProvider'>;
|
||||
}
|
||||
declare module '@gnosis.pm/util-contracts/src/util/injectNetworks.js' {
|
||||
declare module.exports: $Exports<'@gnosis.pm/util-contracts/src/util/injectNetworks'>;
|
||||
}
|
||||
declare module '@gnosis.pm/util-contracts/src/util/injectNetworksDeps.js' {
|
||||
declare module.exports: $Exports<'@gnosis.pm/util-contracts/src/util/injectNetworksDeps'>;
|
||||
}
|
||||
declare module '@gnosis.pm/util-contracts/src/util/networkUtils.js' {
|
||||
declare module.exports: $Exports<'@gnosis.pm/util-contracts/src/util/networkUtils'>;
|
||||
}
|
||||
declare module '@gnosis.pm/util-contracts/src/util/truffleConfig.js' {
|
||||
declare module.exports: $Exports<'@gnosis.pm/util-contracts/src/util/truffleConfig'>;
|
||||
}
|
||||
declare module '@gnosis.pm/util-contracts/truffle.js' {
|
||||
declare module.exports: $Exports<'@gnosis.pm/util-contracts/truffle'>;
|
||||
}
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -1,160 +0,0 @@
|
|||
// flow-typed signature: 8a4cfaf0b83694dba841185d915ccbbe
|
||||
// flow-typed version: <<STUB>>/@portis/web3_v^2.0.0-beta.45/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* '@portis/web3'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module '@portis/web3' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module '@portis/web3/es' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@portis/web3/es/interfaces' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@portis/web3/es/networks' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@portis/web3/es/styles' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@portis/web3/es/utils/getTxGas' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@portis/web3/es/utils/onWindowLoad' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@portis/web3/es/utils/query' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@portis/web3/es/utils/secureOrigin' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@portis/web3/lib' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@portis/web3/lib/interfaces' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@portis/web3/lib/networks' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@portis/web3/lib/styles' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@portis/web3/lib/utils/getTxGas' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@portis/web3/lib/utils/onWindowLoad' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@portis/web3/lib/utils/query' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@portis/web3/lib/utils/secureOrigin' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@portis/web3/umd' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@portis/web3/utils/integrity' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module '@portis/web3/es/index' {
|
||||
declare module.exports: $Exports<'@portis/web3/es'>;
|
||||
}
|
||||
declare module '@portis/web3/es/index.js' {
|
||||
declare module.exports: $Exports<'@portis/web3/es'>;
|
||||
}
|
||||
declare module '@portis/web3/es/interfaces.js' {
|
||||
declare module.exports: $Exports<'@portis/web3/es/interfaces'>;
|
||||
}
|
||||
declare module '@portis/web3/es/networks.js' {
|
||||
declare module.exports: $Exports<'@portis/web3/es/networks'>;
|
||||
}
|
||||
declare module '@portis/web3/es/styles.js' {
|
||||
declare module.exports: $Exports<'@portis/web3/es/styles'>;
|
||||
}
|
||||
declare module '@portis/web3/es/utils/getTxGas.js' {
|
||||
declare module.exports: $Exports<'@portis/web3/es/utils/getTxGas'>;
|
||||
}
|
||||
declare module '@portis/web3/es/utils/onWindowLoad.js' {
|
||||
declare module.exports: $Exports<'@portis/web3/es/utils/onWindowLoad'>;
|
||||
}
|
||||
declare module '@portis/web3/es/utils/query.js' {
|
||||
declare module.exports: $Exports<'@portis/web3/es/utils/query'>;
|
||||
}
|
||||
declare module '@portis/web3/es/utils/secureOrigin.js' {
|
||||
declare module.exports: $Exports<'@portis/web3/es/utils/secureOrigin'>;
|
||||
}
|
||||
declare module '@portis/web3/lib/index' {
|
||||
declare module.exports: $Exports<'@portis/web3/lib'>;
|
||||
}
|
||||
declare module '@portis/web3/lib/index.js' {
|
||||
declare module.exports: $Exports<'@portis/web3/lib'>;
|
||||
}
|
||||
declare module '@portis/web3/lib/interfaces.js' {
|
||||
declare module.exports: $Exports<'@portis/web3/lib/interfaces'>;
|
||||
}
|
||||
declare module '@portis/web3/lib/networks.js' {
|
||||
declare module.exports: $Exports<'@portis/web3/lib/networks'>;
|
||||
}
|
||||
declare module '@portis/web3/lib/styles.js' {
|
||||
declare module.exports: $Exports<'@portis/web3/lib/styles'>;
|
||||
}
|
||||
declare module '@portis/web3/lib/utils/getTxGas.js' {
|
||||
declare module.exports: $Exports<'@portis/web3/lib/utils/getTxGas'>;
|
||||
}
|
||||
declare module '@portis/web3/lib/utils/onWindowLoad.js' {
|
||||
declare module.exports: $Exports<'@portis/web3/lib/utils/onWindowLoad'>;
|
||||
}
|
||||
declare module '@portis/web3/lib/utils/query.js' {
|
||||
declare module.exports: $Exports<'@portis/web3/lib/utils/query'>;
|
||||
}
|
||||
declare module '@portis/web3/lib/utils/secureOrigin.js' {
|
||||
declare module.exports: $Exports<'@portis/web3/lib/utils/secureOrigin'>;
|
||||
}
|
||||
declare module '@portis/web3/umd/index' {
|
||||
declare module.exports: $Exports<'@portis/web3/umd'>;
|
||||
}
|
||||
declare module '@portis/web3/umd/index.js' {
|
||||
declare module.exports: $Exports<'@portis/web3/umd'>;
|
||||
}
|
||||
declare module '@portis/web3/utils/integrity.js' {
|
||||
declare module.exports: $Exports<'@portis/web3/utils/integrity'>;
|
||||
}
|
|
@ -1,44 +0,0 @@
|
|||
// flow-typed signature: 2b0527816b2a1d32ff43775789595b02
|
||||
// flow-typed version: c6154227d1/@testing-library/jest-dom_v4.x.x/flow_>=v0.104.x
|
||||
|
||||
declare module '@testing-library/jest-dom' {
|
||||
declare type JestMatcherResult = {
|
||||
message?: string | (() => string),
|
||||
pass: boolean,
|
||||
...
|
||||
};
|
||||
|
||||
declare type Result = JestMatcherResult | Promise<JestMatcherResult>;
|
||||
|
||||
declare module.exports: {|
|
||||
/**
|
||||
* @deprecated
|
||||
*/
|
||||
toBeInTheDOM(container?: HTMLElement): Result,
|
||||
|
||||
toBeInTheDocument(): Result,
|
||||
toBeVisible(): Result,
|
||||
toBeEmpty(): Result,
|
||||
toBeDisabled(): Result,
|
||||
toBeEnabled(): Result,
|
||||
toBeInvalid(): Result,
|
||||
toBeRequired(): Result,
|
||||
toBeValid(): Result,
|
||||
toContainElement(element: HTMLElement | null): Result,
|
||||
toContainHTML(htmlText: string): Result,
|
||||
toHaveAttribute(attr: string, value?: any): Result,
|
||||
toHaveClass(...classNames: string[]): Result,
|
||||
toHaveFocus(): Result,
|
||||
toHaveFormValues(expectedValues: { [name: string]: any, ... }): Result,
|
||||
toHaveStyle(css: string): Result,
|
||||
toHaveTextContent(
|
||||
text: string | RegExp,
|
||||
options?: { normalizeWhitespace: boolean, ... }
|
||||
): Result,
|
||||
toHaveValue(value?: string | string[] | number): Result,
|
||||
|};
|
||||
}
|
||||
|
||||
declare module '@testing-library/jest-dom/extend-expect' {
|
||||
declare module.exports: any;
|
||||
}
|
|
@ -1,306 +0,0 @@
|
|||
// flow-typed signature: e0056fd09a33a332c0ad120f7d50308d
|
||||
// flow-typed version: 452cd002ef/@testing-library/react_v9.x.x/flow_>=v0.104.x
|
||||
|
||||
declare module '@testing-library/react' {
|
||||
// This type comes from
|
||||
// https://github.com/facebook/flow/blob/v0.104.0/lib/react-dom.js#L64
|
||||
declare type ReactDOMTestUtilsThenable = {
|
||||
then(resolve: () => mixed, reject?: () => mixed): mixed,
|
||||
...
|
||||
};
|
||||
// This type comes from
|
||||
// https://github.com/facebook/flow/blob/v0.104.0/lib/react-dom.js#L116
|
||||
declare type ReactDOMTestUtilsAct = (
|
||||
callback: () => void | ReactDOMTestUtilsThenable
|
||||
) => ReactDOMTestUtilsThenable;
|
||||
|
||||
declare type TextMatch =
|
||||
| string
|
||||
| RegExp
|
||||
| ((content: string, element: HTMLElement) => boolean);
|
||||
|
||||
declare type TextMatchOptions = {
|
||||
exact?: boolean,
|
||||
trim?: boolean,
|
||||
collapseWhitespace?: boolean,
|
||||
...
|
||||
};
|
||||
|
||||
declare type SelectorMatchOptions = {
|
||||
selector?: string,
|
||||
...
|
||||
} & TextMatchOptions;
|
||||
|
||||
declare type GetByText = (
|
||||
text: TextMatch,
|
||||
options?: SelectorMatchOptions
|
||||
) => HTMLElement;
|
||||
|
||||
declare type QueryByText = (
|
||||
text: TextMatch,
|
||||
options?: SelectorMatchOptions
|
||||
) => ?HTMLElement;
|
||||
|
||||
declare type AllByText = (
|
||||
text: TextMatch,
|
||||
options?: SelectorMatchOptions
|
||||
) => Array<HTMLElement>;
|
||||
|
||||
declare type GetByBoundAttribute = (
|
||||
text: TextMatch,
|
||||
options?: TextMatchOptions
|
||||
) => HTMLElement;
|
||||
|
||||
declare type QueryByBoundAttribute = (
|
||||
text: TextMatch,
|
||||
options?: TextMatchOptions
|
||||
) => ?HTMLElement;
|
||||
|
||||
declare type AllByBoundAttribute = (
|
||||
text: TextMatch,
|
||||
options?: TextMatchOptions
|
||||
) => Array<HTMLElement>;
|
||||
|
||||
declare type GetsAndQueries = {|
|
||||
getByAltText: GetByBoundAttribute,
|
||||
getAllByAltText: AllByBoundAttribute,
|
||||
queryByAltText: QueryByBoundAttribute,
|
||||
queryAllByAltText: AllByBoundAttribute,
|
||||
|
||||
getByDisplayValue: GetByBoundAttribute,
|
||||
getAllByDisplayValue: AllByBoundAttribute,
|
||||
queryByDisplayValue: QueryByBoundAttribute,
|
||||
queryAllByDisplayValue: AllByBoundAttribute,
|
||||
|
||||
getByLabelText: GetByText,
|
||||
getAllByLabelText: AllByText,
|
||||
queryByLabelText: QueryByText,
|
||||
queryAllByLabelText: AllByText,
|
||||
|
||||
getByPlaceholderText: GetByBoundAttribute,
|
||||
getAllByPlaceholderText: AllByBoundAttribute,
|
||||
queryByPlaceholderText: QueryByBoundAttribute,
|
||||
queryAllByPlaceholderText: AllByBoundAttribute,
|
||||
|
||||
getByRole: GetByBoundAttribute,
|
||||
getAllByRole: AllByBoundAttribute,
|
||||
queryByRole: QueryByBoundAttribute,
|
||||
queryAllByRole: AllByBoundAttribute,
|
||||
|
||||
getBySelectText: GetByBoundAttribute,
|
||||
getAllBySelectText: AllByBoundAttribute,
|
||||
queryBySelectText: QueryByBoundAttribute,
|
||||
queryAllBySelectText: AllByBoundAttribute,
|
||||
|
||||
getByTestId: GetByBoundAttribute,
|
||||
getAllByTestId: AllByBoundAttribute,
|
||||
queryByTestId: QueryByBoundAttribute,
|
||||
queryAllByTestId: AllByBoundAttribute,
|
||||
|
||||
getByText: GetByText,
|
||||
getAllByText: AllByText,
|
||||
queryByText: QueryByText,
|
||||
queryAllByText: AllByText,
|
||||
|
||||
getByTitle: GetByBoundAttribute,
|
||||
getAllByTitle: AllByBoundAttribute,
|
||||
queryByTitle: QueryByBoundAttribute,
|
||||
queryAllByTitle: AllByBoundAttribute,
|
||||
|
||||
getByValue: GetByBoundAttribute,
|
||||
getAllByValue: AllByBoundAttribute,
|
||||
queryByValue: QueryByBoundAttribute,
|
||||
queryAllByValue: AllByBoundAttribute,
|
||||
|};
|
||||
|
||||
declare type FireEvent<TInit> = (
|
||||
element: HTMLElement,
|
||||
eventProperties?: TInit
|
||||
) => boolean;
|
||||
|
||||
declare type Queries = { ... };
|
||||
|
||||
declare type RenderResult<Q: Queries = GetsAndQueries> = {|
|
||||
container: HTMLDivElement,
|
||||
unmount: () => void,
|
||||
baseElement: HTMLElement,
|
||||
asFragment: () => DocumentFragment,
|
||||
debug: (baseElement?: HTMLElement) => void,
|
||||
rerender: (ui: React$Element<*>) => void,
|
||||
|} & Q;
|
||||
|
||||
declare export type RenderOptions<Q: Queries = { ... }> = {|
|
||||
container?: HTMLElement,
|
||||
baseElement?: HTMLElement,
|
||||
hydrate?: boolean,
|
||||
queries?: Q,
|
||||
wrapper?: React.ComponentType,
|
||||
|};
|
||||
|
||||
declare module.exports: {
|
||||
render(
|
||||
ui: React.ReactElement<any>,
|
||||
options?: $Diff<RenderOptions<>, {| queries: any |}>
|
||||
): RenderResult<>,
|
||||
|
||||
render<Q: Queries>(
|
||||
ui: React.ReactElement<any>,
|
||||
options?: RenderOptions<Q>
|
||||
): RenderResult<Q>,
|
||||
|
||||
act: ReactDOMTestUtilsAct,
|
||||
cleanup: () => void,
|
||||
wait: (
|
||||
callback?: () => void,
|
||||
options?: {
|
||||
timeout?: number,
|
||||
interval?: number,
|
||||
...
|
||||
}
|
||||
) => Promise<void>,
|
||||
waitForDomChange: <T>(options?: {
|
||||
container?: HTMLElement,
|
||||
timeout?: number,
|
||||
mutationObserverOptions?: MutationObserverInit,
|
||||
...
|
||||
}) => Promise<T>,
|
||||
waitForElement: <T>(
|
||||
callback?: () => T,
|
||||
options?: {
|
||||
container?: HTMLElement,
|
||||
timeout?: number,
|
||||
mutationObserverOptions?: MutationObserverInit,
|
||||
...
|
||||
}
|
||||
) => Promise<T>,
|
||||
within: (
|
||||
element: HTMLElement,
|
||||
queriesToBind?: GetsAndQueries | Array<GetsAndQueries>
|
||||
) => GetsAndQueries,
|
||||
fireEvent: {|
|
||||
(element: HTMLElement, event: Event): void,
|
||||
|
||||
copy: FireEvent<Event$Init>,
|
||||
cut: FireEvent<Event$Init>,
|
||||
paste: FireEvent<Event$Init>,
|
||||
compositionEnd: FireEvent<Event$Init>,
|
||||
compositionStart: FireEvent<Event$Init>,
|
||||
compositionUpdate: FireEvent<Event$Init>,
|
||||
keyDown: FireEvent<Event$Init>,
|
||||
keyPress: FireEvent<Event$Init>,
|
||||
keyUp: FireEvent<Event$Init>,
|
||||
focus: FireEvent<Event$Init>,
|
||||
blur: FireEvent<Event$Init>,
|
||||
change: FireEvent<Event$Init>,
|
||||
input: FireEvent<Event$Init>,
|
||||
invalid: FireEvent<Event$Init>,
|
||||
submit: FireEvent<Event$Init>,
|
||||
click: FireEvent<MouseEvent$MouseEventInit>,
|
||||
contextMenu: FireEvent<MouseEvent$MouseEventInit>,
|
||||
dblClick: FireEvent<MouseEvent$MouseEventInit>,
|
||||
doubleClick: FireEvent<MouseEvent$MouseEventInit>,
|
||||
drag: FireEvent<MouseEvent$MouseEventInit>,
|
||||
dragEnd: FireEvent<MouseEvent$MouseEventInit>,
|
||||
dragEnter: FireEvent<MouseEvent$MouseEventInit>,
|
||||
dragExit: FireEvent<MouseEvent$MouseEventInit>,
|
||||
dragLeave: FireEvent<MouseEvent$MouseEventInit>,
|
||||
dragOver: FireEvent<MouseEvent$MouseEventInit>,
|
||||
dragStart: FireEvent<MouseEvent$MouseEventInit>,
|
||||
drop: FireEvent<MouseEvent$MouseEventInit>,
|
||||
mouseDown: FireEvent<MouseEvent$MouseEventInit>,
|
||||
mouseEnter: FireEvent<MouseEvent$MouseEventInit>,
|
||||
mouseLeave: FireEvent<MouseEvent$MouseEventInit>,
|
||||
mouseMove: FireEvent<MouseEvent$MouseEventInit>,
|
||||
mouseOut: FireEvent<MouseEvent$MouseEventInit>,
|
||||
mouseOver: FireEvent<MouseEvent$MouseEventInit>,
|
||||
mouseUp: FireEvent<MouseEvent$MouseEventInit>,
|
||||
select: FireEvent<Event$Init>,
|
||||
touchCancel: FireEvent<Event$Init>,
|
||||
touchEnd: FireEvent<Event$Init>,
|
||||
touchMove: FireEvent<Event$Init>,
|
||||
touchStart: FireEvent<Event$Init>,
|
||||
scroll: FireEvent<Event$Init>,
|
||||
wheel: FireEvent<MouseEvent$MouseEventInit>,
|
||||
abort: FireEvent<Event$Init>,
|
||||
canPlay: FireEvent<Event$Init>,
|
||||
canPlayThrough: FireEvent<Event$Init>,
|
||||
durationChange: FireEvent<Event$Init>,
|
||||
emptied: FireEvent<Event$Init>,
|
||||
encrypted: FireEvent<Event$Init>,
|
||||
ended: FireEvent<Event$Init>,
|
||||
loadedData: FireEvent<Event$Init>,
|
||||
loadedMetadata: FireEvent<Event$Init>,
|
||||
loadStart: FireEvent<Event$Init>,
|
||||
pause: FireEvent<Event$Init>,
|
||||
play: FireEvent<Event$Init>,
|
||||
playing: FireEvent<Event$Init>,
|
||||
progress: FireEvent<Event$Init>,
|
||||
rateChange: FireEvent<Event$Init>,
|
||||
seeked: FireEvent<Event$Init>,
|
||||
seeking: FireEvent<Event$Init>,
|
||||
stalled: FireEvent<Event$Init>,
|
||||
suspend: FireEvent<Event$Init>,
|
||||
timeUpdate: FireEvent<Event$Init>,
|
||||
volumeChange: FireEvent<Event$Init>,
|
||||
waiting: FireEvent<Event$Init>,
|
||||
load: FireEvent<Event$Init>,
|
||||
error: FireEvent<Event$Init>,
|
||||
animationStart: FireEvent<Event$Init>,
|
||||
animationEnd: FireEvent<Event$Init>,
|
||||
animationIteration: FireEvent<Event$Init>,
|
||||
transitionEnd: FireEvent<Event$Init>,
|
||||
|},
|
||||
// dom-testing-library re-exports
|
||||
queryByTestId: (
|
||||
container: HTMLElement,
|
||||
id: TextMatch,
|
||||
options?: TextMatchOptions
|
||||
) => ?HTMLElement,
|
||||
getByTestId: (
|
||||
container: HTMLElement,
|
||||
id: TextMatch,
|
||||
options?: TextMatchOptions
|
||||
) => HTMLElement,
|
||||
queryByText: (
|
||||
container: HTMLElement,
|
||||
text: TextMatch,
|
||||
options?: TextMatchOptions
|
||||
) => ?HTMLElement,
|
||||
getByText: (
|
||||
container: HTMLElement,
|
||||
text: TextMatch,
|
||||
options?: { selector?: string, ... } & TextMatchOptions
|
||||
) => HTMLElement,
|
||||
queryByPlaceholderText: (
|
||||
container: HTMLElement,
|
||||
text: TextMatch,
|
||||
options?: TextMatchOptions
|
||||
) => ?HTMLElement,
|
||||
getByPlaceholderText: (
|
||||
container: HTMLElement,
|
||||
text: TextMatch,
|
||||
options?: TextMatchOptions
|
||||
) => HTMLElement,
|
||||
queryByLabelText: (
|
||||
container: HTMLElement,
|
||||
text: TextMatch,
|
||||
options?: TextMatchOptions
|
||||
) => ?HTMLElement,
|
||||
getByLabelText: (
|
||||
container: HTMLElement,
|
||||
text: TextMatch,
|
||||
options?: { selector?: string, ... } & TextMatchOptions
|
||||
) => HTMLElement,
|
||||
queryByAltText: (
|
||||
container: HTMLElement,
|
||||
text: TextMatch,
|
||||
options?: TextMatchOptions
|
||||
) => ?HTMLElement,
|
||||
getByAltText: (
|
||||
container: HTMLElement,
|
||||
text: TextMatch,
|
||||
options?: TextMatchOptions
|
||||
) => HTMLElement,
|
||||
...
|
||||
};
|
||||
}
|
|
@ -1,104 +0,0 @@
|
|||
// flow-typed signature: 437bd1e8c988ec39022e36807a3c7800
|
||||
// flow-typed version: <<STUB>>/@toruslabs/torus-embed_v0.2.10/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* '@toruslabs/torus-embed'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module '@toruslabs/torus-embed' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module '@toruslabs/torus-embed/dist/config' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@toruslabs/torus-embed/dist/createErrorMiddleware' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@toruslabs/torus-embed/dist/createTransformEthAddressMiddleware' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@toruslabs/torus-embed/dist/embed' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@toruslabs/torus-embed/dist/embedUtils' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@toruslabs/torus-embed/dist/inpage-provider' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@toruslabs/torus-embed/dist/PopupHandler' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@toruslabs/torus-embed/dist/stream-utils' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@toruslabs/torus-embed/dist/utils/httpHelpers' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@toruslabs/torus-embed/public' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module '@toruslabs/torus-embed/dist/config.js' {
|
||||
declare module.exports: $Exports<'@toruslabs/torus-embed/dist/config'>;
|
||||
}
|
||||
declare module '@toruslabs/torus-embed/dist/createErrorMiddleware.js' {
|
||||
declare module.exports: $Exports<'@toruslabs/torus-embed/dist/createErrorMiddleware'>;
|
||||
}
|
||||
declare module '@toruslabs/torus-embed/dist/createTransformEthAddressMiddleware.js' {
|
||||
declare module.exports: $Exports<'@toruslabs/torus-embed/dist/createTransformEthAddressMiddleware'>;
|
||||
}
|
||||
declare module '@toruslabs/torus-embed/dist/embed.js' {
|
||||
declare module.exports: $Exports<'@toruslabs/torus-embed/dist/embed'>;
|
||||
}
|
||||
declare module '@toruslabs/torus-embed/dist/embedUtils.js' {
|
||||
declare module.exports: $Exports<'@toruslabs/torus-embed/dist/embedUtils'>;
|
||||
}
|
||||
declare module '@toruslabs/torus-embed/dist/inpage-provider.js' {
|
||||
declare module.exports: $Exports<'@toruslabs/torus-embed/dist/inpage-provider'>;
|
||||
}
|
||||
declare module '@toruslabs/torus-embed/dist/PopupHandler.js' {
|
||||
declare module.exports: $Exports<'@toruslabs/torus-embed/dist/PopupHandler'>;
|
||||
}
|
||||
declare module '@toruslabs/torus-embed/dist/stream-utils.js' {
|
||||
declare module.exports: $Exports<'@toruslabs/torus-embed/dist/stream-utils'>;
|
||||
}
|
||||
declare module '@toruslabs/torus-embed/dist/utils/httpHelpers.js' {
|
||||
declare module.exports: $Exports<'@toruslabs/torus-embed/dist/utils/httpHelpers'>;
|
||||
}
|
||||
declare module '@toruslabs/torus-embed/index' {
|
||||
declare module.exports: $Exports<'@toruslabs/torus-embed'>;
|
||||
}
|
||||
declare module '@toruslabs/torus-embed/index.js' {
|
||||
declare module.exports: $Exports<'@toruslabs/torus-embed'>;
|
||||
}
|
||||
declare module '@toruslabs/torus-embed/public/index' {
|
||||
declare module.exports: $Exports<'@toruslabs/torus-embed/public'>;
|
||||
}
|
||||
declare module '@toruslabs/torus-embed/public/index.js' {
|
||||
declare module.exports: $Exports<'@toruslabs/torus-embed/public'>;
|
||||
}
|
|
@ -1,52 +0,0 @@
|
|||
// flow-typed signature: 4cdf2713ff71e463478d370538858891
|
||||
// flow-typed version: <<STUB>>/@walletconnect/web3-provider_v^1.0.0-beta.37/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* '@walletconnect/web3-provider'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module '@walletconnect/web3-provider' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module '@walletconnect/web3-provider/lib' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@walletconnect/web3-provider/src/http' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@walletconnect/web3-provider/src' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module '@walletconnect/web3-provider/lib/index' {
|
||||
declare module.exports: $Exports<'@walletconnect/web3-provider/lib'>;
|
||||
}
|
||||
declare module '@walletconnect/web3-provider/lib/index.js' {
|
||||
declare module.exports: $Exports<'@walletconnect/web3-provider/lib'>;
|
||||
}
|
||||
declare module '@walletconnect/web3-provider/src/http.js' {
|
||||
declare module.exports: $Exports<'@walletconnect/web3-provider/src/http'>;
|
||||
}
|
||||
declare module '@walletconnect/web3-provider/src/index' {
|
||||
declare module.exports: $Exports<'@walletconnect/web3-provider/src'>;
|
||||
}
|
||||
declare module '@walletconnect/web3-provider/src/index.js' {
|
||||
declare module.exports: $Exports<'@walletconnect/web3-provider/src'>;
|
||||
}
|
|
@ -1,217 +0,0 @@
|
|||
// flow-typed signature: 60e150b8530ccd0bdac6bede4acb8fa9
|
||||
// flow-typed version: <<STUB>>/@welldone-software/why-did-you-render_v3.4.1/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* '@welldone-software/why-did-you-render'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module '@welldone-software/why-did-you-render' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module '@welldone-software/why-did-you-render/dist/cjs/whyDidYouRender' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@welldone-software/why-did-you-render/dist/cjs/whyDidYouRender.min' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@welldone-software/why-did-you-render/dist/esm/whyDidYouRender' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@welldone-software/why-did-you-render/dist/esm/whyDidYouRender.min' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@welldone-software/why-did-you-render/dist/no-classes-transpile/cjs/whyDidYouRender' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@welldone-software/why-did-you-render/dist/no-classes-transpile/cjs/whyDidYouRender.min' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@welldone-software/why-did-you-render/dist/no-classes-transpile/esm/whyDidYouRender' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@welldone-software/why-did-you-render/dist/no-classes-transpile/esm/whyDidYouRender.min' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@welldone-software/why-did-you-render/dist/no-classes-transpile/umd/whyDidYouRender' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@welldone-software/why-did-you-render/dist/no-classes-transpile/umd/whyDidYouRender.min' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@welldone-software/why-did-you-render/dist/umd/whyDidYouRender' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@welldone-software/why-did-you-render/dist/umd/whyDidYouRender.min' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@welldone-software/why-did-you-render/src/calculateDeepEqualDiffs' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@welldone-software/why-did-you-render/src/consts' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@welldone-software/why-did-you-render/src/defaultNotifier' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@welldone-software/why-did-you-render/src/findObjectsDifferences' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@welldone-software/why-did-you-render/src/getDisplayName' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@welldone-software/why-did-you-render/src/getUpdateInfo' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@welldone-software/why-did-you-render/src' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@welldone-software/why-did-you-render/src/normalizeOptions' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@welldone-software/why-did-you-render/src/patches/patchClassComponent' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@welldone-software/why-did-you-render/src/patches/patchForwardRefComponent' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@welldone-software/why-did-you-render/src/patches/patchFunctionalOrStrComponent' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@welldone-software/why-did-you-render/src/patches/patchMemoComponent' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@welldone-software/why-did-you-render/src/shouldTrack' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@welldone-software/why-did-you-render/src/utils' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module '@welldone-software/why-did-you-render/src/whyDidYouRender' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module '@welldone-software/why-did-you-render/dist/cjs/whyDidYouRender.js' {
|
||||
declare module.exports: $Exports<'@welldone-software/why-did-you-render/dist/cjs/whyDidYouRender'>;
|
||||
}
|
||||
declare module '@welldone-software/why-did-you-render/dist/cjs/whyDidYouRender.min.js' {
|
||||
declare module.exports: $Exports<'@welldone-software/why-did-you-render/dist/cjs/whyDidYouRender.min'>;
|
||||
}
|
||||
declare module '@welldone-software/why-did-you-render/dist/esm/whyDidYouRender.js' {
|
||||
declare module.exports: $Exports<'@welldone-software/why-did-you-render/dist/esm/whyDidYouRender'>;
|
||||
}
|
||||
declare module '@welldone-software/why-did-you-render/dist/esm/whyDidYouRender.min.js' {
|
||||
declare module.exports: $Exports<'@welldone-software/why-did-you-render/dist/esm/whyDidYouRender.min'>;
|
||||
}
|
||||
declare module '@welldone-software/why-did-you-render/dist/no-classes-transpile/cjs/whyDidYouRender.js' {
|
||||
declare module.exports: $Exports<'@welldone-software/why-did-you-render/dist/no-classes-transpile/cjs/whyDidYouRender'>;
|
||||
}
|
||||
declare module '@welldone-software/why-did-you-render/dist/no-classes-transpile/cjs/whyDidYouRender.min.js' {
|
||||
declare module.exports: $Exports<'@welldone-software/why-did-you-render/dist/no-classes-transpile/cjs/whyDidYouRender.min'>;
|
||||
}
|
||||
declare module '@welldone-software/why-did-you-render/dist/no-classes-transpile/esm/whyDidYouRender.js' {
|
||||
declare module.exports: $Exports<'@welldone-software/why-did-you-render/dist/no-classes-transpile/esm/whyDidYouRender'>;
|
||||
}
|
||||
declare module '@welldone-software/why-did-you-render/dist/no-classes-transpile/esm/whyDidYouRender.min.js' {
|
||||
declare module.exports: $Exports<'@welldone-software/why-did-you-render/dist/no-classes-transpile/esm/whyDidYouRender.min'>;
|
||||
}
|
||||
declare module '@welldone-software/why-did-you-render/dist/no-classes-transpile/umd/whyDidYouRender.js' {
|
||||
declare module.exports: $Exports<'@welldone-software/why-did-you-render/dist/no-classes-transpile/umd/whyDidYouRender'>;
|
||||
}
|
||||
declare module '@welldone-software/why-did-you-render/dist/no-classes-transpile/umd/whyDidYouRender.min.js' {
|
||||
declare module.exports: $Exports<'@welldone-software/why-did-you-render/dist/no-classes-transpile/umd/whyDidYouRender.min'>;
|
||||
}
|
||||
declare module '@welldone-software/why-did-you-render/dist/umd/whyDidYouRender.js' {
|
||||
declare module.exports: $Exports<'@welldone-software/why-did-you-render/dist/umd/whyDidYouRender'>;
|
||||
}
|
||||
declare module '@welldone-software/why-did-you-render/dist/umd/whyDidYouRender.min.js' {
|
||||
declare module.exports: $Exports<'@welldone-software/why-did-you-render/dist/umd/whyDidYouRender.min'>;
|
||||
}
|
||||
declare module '@welldone-software/why-did-you-render/src/calculateDeepEqualDiffs.js' {
|
||||
declare module.exports: $Exports<'@welldone-software/why-did-you-render/src/calculateDeepEqualDiffs'>;
|
||||
}
|
||||
declare module '@welldone-software/why-did-you-render/src/consts.js' {
|
||||
declare module.exports: $Exports<'@welldone-software/why-did-you-render/src/consts'>;
|
||||
}
|
||||
declare module '@welldone-software/why-did-you-render/src/defaultNotifier.js' {
|
||||
declare module.exports: $Exports<'@welldone-software/why-did-you-render/src/defaultNotifier'>;
|
||||
}
|
||||
declare module '@welldone-software/why-did-you-render/src/findObjectsDifferences.js' {
|
||||
declare module.exports: $Exports<'@welldone-software/why-did-you-render/src/findObjectsDifferences'>;
|
||||
}
|
||||
declare module '@welldone-software/why-did-you-render/src/getDisplayName.js' {
|
||||
declare module.exports: $Exports<'@welldone-software/why-did-you-render/src/getDisplayName'>;
|
||||
}
|
||||
declare module '@welldone-software/why-did-you-render/src/getUpdateInfo.js' {
|
||||
declare module.exports: $Exports<'@welldone-software/why-did-you-render/src/getUpdateInfo'>;
|
||||
}
|
||||
declare module '@welldone-software/why-did-you-render/src/index' {
|
||||
declare module.exports: $Exports<'@welldone-software/why-did-you-render/src'>;
|
||||
}
|
||||
declare module '@welldone-software/why-did-you-render/src/index.js' {
|
||||
declare module.exports: $Exports<'@welldone-software/why-did-you-render/src'>;
|
||||
}
|
||||
declare module '@welldone-software/why-did-you-render/src/normalizeOptions.js' {
|
||||
declare module.exports: $Exports<'@welldone-software/why-did-you-render/src/normalizeOptions'>;
|
||||
}
|
||||
declare module '@welldone-software/why-did-you-render/src/patches/patchClassComponent.js' {
|
||||
declare module.exports: $Exports<'@welldone-software/why-did-you-render/src/patches/patchClassComponent'>;
|
||||
}
|
||||
declare module '@welldone-software/why-did-you-render/src/patches/patchForwardRefComponent.js' {
|
||||
declare module.exports: $Exports<'@welldone-software/why-did-you-render/src/patches/patchForwardRefComponent'>;
|
||||
}
|
||||
declare module '@welldone-software/why-did-you-render/src/patches/patchFunctionalOrStrComponent.js' {
|
||||
declare module.exports: $Exports<'@welldone-software/why-did-you-render/src/patches/patchFunctionalOrStrComponent'>;
|
||||
}
|
||||
declare module '@welldone-software/why-did-you-render/src/patches/patchMemoComponent.js' {
|
||||
declare module.exports: $Exports<'@welldone-software/why-did-you-render/src/patches/patchMemoComponent'>;
|
||||
}
|
||||
declare module '@welldone-software/why-did-you-render/src/shouldTrack.js' {
|
||||
declare module.exports: $Exports<'@welldone-software/why-did-you-render/src/shouldTrack'>;
|
||||
}
|
||||
declare module '@welldone-software/why-did-you-render/src/utils.js' {
|
||||
declare module.exports: $Exports<'@welldone-software/why-did-you-render/src/utils'>;
|
||||
}
|
||||
declare module '@welldone-software/why-did-you-render/src/whyDidYouRender.js' {
|
||||
declare module.exports: $Exports<'@welldone-software/why-did-you-render/src/whyDidYouRender'>;
|
||||
}
|
|
@ -1,35 +0,0 @@
|
|||
// flow-typed signature: 8bfc0eb0795000bed1976434e91400ae
|
||||
// flow-typed version: <<STUB>>/async-sema_v3.1.0/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'async-sema'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'async-sema' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'async-sema/lib' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'async-sema/lib/index' {
|
||||
declare module.exports: $Exports<'async-sema/lib'>;
|
||||
}
|
||||
declare module 'async-sema/lib/index.js' {
|
||||
declare module.exports: $Exports<'async-sema/lib'>;
|
||||
}
|
|
@ -1,543 +0,0 @@
|
|||
// flow-typed signature: c27a24976d8d7a54b24e54ddd38f61d7
|
||||
// flow-typed version: <<STUB>>/autoprefixer_v9.7.3/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'autoprefixer'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'autoprefixer' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'autoprefixer/data/prefixes' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/at-rule' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/autoprefixer' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/brackets' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/browsers' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/declaration' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/align-content' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/align-items' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/align-self' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/animation' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/appearance' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/backdrop-filter' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/background-clip' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/background-size' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/block-logical' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/border-image' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/border-radius' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/break-props' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/color-adjust' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/cross-fade' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/display-flex' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/display-grid' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/filter-value' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/filter' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/flex-basis' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/flex-direction' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/flex-flow' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/flex-grow' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/flex-shrink' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/flex-spec' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/flex-wrap' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/flex' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/fullscreen' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/gradient' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/grid-area' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/grid-column-align' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/grid-end' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/grid-row-align' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/grid-row-column' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/grid-rows-columns' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/grid-start' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/grid-template-areas' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/grid-template' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/grid-utils' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/image-rendering' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/image-set' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/inline-logical' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/intrinsic' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/justify-content' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/mask-border' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/mask-composite' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/order' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/overscroll-behavior' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/pixelated' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/place-self' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/placeholder' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/text-decoration-skip-ink' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/text-decoration' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/text-emphasis-position' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/transform-decl' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/user-select' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/hacks/writing-mode' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/info' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/old-selector' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/old-value' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/prefixer' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/prefixes' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/processor' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/resolution' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/selector' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/supports' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/transition' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/utils' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'autoprefixer/lib/value' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'autoprefixer/data/prefixes.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/data/prefixes'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/at-rule.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/at-rule'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/autoprefixer.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/autoprefixer'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/brackets.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/brackets'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/browsers.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/browsers'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/declaration.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/declaration'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/align-content.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/align-content'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/align-items.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/align-items'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/align-self.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/align-self'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/animation.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/animation'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/appearance.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/appearance'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/backdrop-filter.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/backdrop-filter'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/background-clip.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/background-clip'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/background-size.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/background-size'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/block-logical.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/block-logical'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/border-image.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/border-image'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/border-radius.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/border-radius'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/break-props.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/break-props'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/color-adjust.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/color-adjust'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/cross-fade.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/cross-fade'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/display-flex.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/display-flex'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/display-grid.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/display-grid'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/filter-value.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/filter-value'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/filter.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/filter'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/flex-basis.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/flex-basis'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/flex-direction.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/flex-direction'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/flex-flow.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/flex-flow'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/flex-grow.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/flex-grow'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/flex-shrink.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/flex-shrink'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/flex-spec.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/flex-spec'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/flex-wrap.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/flex-wrap'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/flex.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/flex'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/fullscreen.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/fullscreen'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/gradient.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/gradient'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/grid-area.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/grid-area'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/grid-column-align.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/grid-column-align'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/grid-end.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/grid-end'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/grid-row-align.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/grid-row-align'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/grid-row-column.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/grid-row-column'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/grid-rows-columns.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/grid-rows-columns'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/grid-start.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/grid-start'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/grid-template-areas.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/grid-template-areas'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/grid-template.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/grid-template'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/grid-utils.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/grid-utils'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/image-rendering.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/image-rendering'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/image-set.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/image-set'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/inline-logical.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/inline-logical'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/intrinsic.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/intrinsic'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/justify-content.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/justify-content'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/mask-border.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/mask-border'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/mask-composite.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/mask-composite'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/order.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/order'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/overscroll-behavior.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/overscroll-behavior'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/pixelated.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/pixelated'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/place-self.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/place-self'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/placeholder.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/placeholder'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/text-decoration-skip-ink.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/text-decoration-skip-ink'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/text-decoration.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/text-decoration'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/text-emphasis-position.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/text-emphasis-position'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/transform-decl.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/transform-decl'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/user-select.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/user-select'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/hacks/writing-mode.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/hacks/writing-mode'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/info.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/info'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/old-selector.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/old-selector'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/old-value.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/old-value'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/prefixer.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/prefixer'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/prefixes.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/prefixes'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/processor.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/processor'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/resolution.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/resolution'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/selector.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/selector'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/supports.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/supports'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/transition.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/transition'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/utils.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/utils'>;
|
||||
}
|
||||
declare module 'autoprefixer/lib/value.js' {
|
||||
declare module.exports: $Exports<'autoprefixer/lib/value'>;
|
||||
}
|
|
@ -1,225 +0,0 @@
|
|||
// flow-typed signature: fe7f00984c44d69833f19bc39895832f
|
||||
// flow-typed version: a4cc3d5e98/axios_v0.19.x/flow_>=v0.104.x
|
||||
|
||||
declare module 'axios' {
|
||||
import type { Agent as HttpAgent } from 'http';
|
||||
import type { Agent as HttpsAgent } from 'https';
|
||||
|
||||
declare type AxiosTransformer<T> = (
|
||||
data: T,
|
||||
headers?: { [key: string]: mixed, ...},
|
||||
) => mixed;
|
||||
|
||||
declare type ProxyConfig = {|
|
||||
host: string,
|
||||
port: number,
|
||||
auth?: {|
|
||||
username: string,
|
||||
password: string,
|
||||
|},
|
||||
protocol?: string,
|
||||
|};
|
||||
|
||||
declare class Cancel {
|
||||
constructor(message?: string): Cancel;
|
||||
message: string;
|
||||
}
|
||||
|
||||
declare type Canceler = (message?: string) => void;
|
||||
|
||||
declare type CancelTokenSource = {|
|
||||
token: CancelToken,
|
||||
cancel: Canceler,
|
||||
|};
|
||||
|
||||
declare class CancelToken {
|
||||
constructor(executor: (cancel: Canceler) => void): void;
|
||||
static source(): CancelTokenSource;
|
||||
promise: Promise<Cancel>;
|
||||
reason?: Cancel;
|
||||
throwIfRequested(): void;
|
||||
}
|
||||
|
||||
declare type Method =
|
||||
| 'get'
|
||||
| 'GET'
|
||||
| 'delete'
|
||||
| 'DELETE'
|
||||
| 'head'
|
||||
| 'HEAD'
|
||||
| 'options'
|
||||
| 'OPTIONS'
|
||||
| 'post'
|
||||
| 'POST'
|
||||
| 'put'
|
||||
| 'PUT'
|
||||
| 'patch'
|
||||
| 'PATCH';
|
||||
|
||||
declare type ResponseType =
|
||||
| 'arraybuffer'
|
||||
| 'blob'
|
||||
| 'document'
|
||||
| 'json'
|
||||
| 'text'
|
||||
| 'stream';
|
||||
|
||||
declare type AxiosAdapter = (
|
||||
config: AxiosXHRConfig<mixed>
|
||||
) => Promise<AxiosXHR<mixed>>;
|
||||
|
||||
declare type AxiosXHRConfigBase<T, R = T> = {
|
||||
adapter?: AxiosAdapter,
|
||||
auth?: {|
|
||||
username: string,
|
||||
password: string,
|
||||
|},
|
||||
baseURL?: string,
|
||||
cancelToken?: CancelToken,
|
||||
headers?: { [key: string]: mixed, ...},
|
||||
httpAgent?: HttpAgent,
|
||||
httpsAgent?: HttpsAgent,
|
||||
maxContentLength?: number,
|
||||
maxRedirects?: number,
|
||||
socketPath?: string | null,
|
||||
params?: { [key: string]: mixed, ...},
|
||||
paramsSerializer?: (params: { [key: string]: mixed, ...}) => string,
|
||||
onUploadProgress?: (progressEvent: ProgressEvent) => void,
|
||||
onDownloadProgress?: (progressEvent: ProgressEvent) => void,
|
||||
proxy?: ProxyConfig | false,
|
||||
responseType?: ResponseType,
|
||||
timeout?: number,
|
||||
transformRequest?: AxiosTransformer<T> | Array<AxiosTransformer<T>>,
|
||||
transformResponse?: AxiosTransformer<R> | Array<AxiosTransformer<R>>,
|
||||
validateStatus?: (status: number) => boolean,
|
||||
withCredentials?: boolean,
|
||||
xsrfCookieName?: string,
|
||||
xsrfHeaderName?: string,
|
||||
...
|
||||
};
|
||||
|
||||
declare type AxiosXHRConfig<T, R = T> = {
|
||||
...$Exact<AxiosXHRConfigBase<T, R>>,
|
||||
data?: T,
|
||||
method?: Method,
|
||||
url: string,
|
||||
...
|
||||
};
|
||||
|
||||
declare type AxiosXHRConfigShape<T, R = T> = $Shape<AxiosXHRConfig<T, R>>;
|
||||
|
||||
declare type AxiosXHR<T, R = T> = {|
|
||||
config: AxiosXHRConfig<T, R>,
|
||||
data: R,
|
||||
headers: ?{[key: string]: mixed, ...},
|
||||
status: number,
|
||||
statusText: string,
|
||||
request: http$ClientRequest<> | XMLHttpRequest | mixed,
|
||||
|};
|
||||
|
||||
declare type AxiosInterceptorIdent = number;
|
||||
|
||||
declare type AxiosRequestInterceptor<T, R = T> = {|
|
||||
use(
|
||||
onFulfilled: ?(
|
||||
response: AxiosXHRConfig<T, R>
|
||||
) => Promise<AxiosXHRConfig<mixed>> | AxiosXHRConfig<mixed>,
|
||||
onRejected: ?(error: mixed) => mixed
|
||||
): AxiosInterceptorIdent,
|
||||
eject(ident: AxiosInterceptorIdent): void,
|
||||
|};
|
||||
|
||||
declare type AxiosResponseInterceptor<T, R = T> = {|
|
||||
use(
|
||||
onFulfilled: ?(response: AxiosXHR<T, R>) => mixed,
|
||||
onRejected: ?(error: mixed) => mixed
|
||||
): AxiosInterceptorIdent,
|
||||
eject(ident: AxiosInterceptorIdent): void,
|
||||
|};
|
||||
|
||||
declare type AxiosPromise<T, R = T> = Promise<AxiosXHR<T, R>>;
|
||||
|
||||
declare class Axios {
|
||||
<T, R>(
|
||||
config: AxiosXHRConfig<T, R> | string,
|
||||
config?: AxiosXHRConfigShape<T, R>
|
||||
): AxiosPromise<T, R>;
|
||||
constructor<T, R>(config?: AxiosXHRConfigBase<T, R>): void;
|
||||
request<T, R>(
|
||||
config: AxiosXHRConfig<T, R> | string,
|
||||
config?: AxiosXHRConfigShape<T, R>
|
||||
): AxiosPromise<T, R>;
|
||||
delete<R>(
|
||||
url: string,
|
||||
config?: AxiosXHRConfigBase<mixed, R>
|
||||
): AxiosPromise<mixed, R>;
|
||||
get<R>(
|
||||
url: string,
|
||||
config?: AxiosXHRConfigBase<mixed, R>
|
||||
): AxiosPromise<mixed, R>;
|
||||
head<R>(
|
||||
url: string,
|
||||
config?: AxiosXHRConfigBase<mixed, R>
|
||||
): AxiosPromise<mixed, R>;
|
||||
options<R>(
|
||||
url: string,
|
||||
config?: AxiosXHRConfigBase<mixed, R>
|
||||
): AxiosPromise<mixed, R>;
|
||||
post<T, R>(
|
||||
url: string,
|
||||
data?: T,
|
||||
config?: AxiosXHRConfigBase<T, R>
|
||||
): AxiosPromise<T, R>;
|
||||
put<T, R>(
|
||||
url: string,
|
||||
data?: T,
|
||||
config?: AxiosXHRConfigBase<T, R>
|
||||
): AxiosPromise<T, R>;
|
||||
patch<T, R>(
|
||||
url: string,
|
||||
data?: T,
|
||||
config?: AxiosXHRConfigBase<T, R>
|
||||
): AxiosPromise<T, R>;
|
||||
interceptors: {|
|
||||
request: AxiosRequestInterceptor<mixed>,
|
||||
response: AxiosResponseInterceptor<mixed>,
|
||||
|};
|
||||
defaults: {|
|
||||
...$Exact<AxiosXHRConfigBase<mixed>>,
|
||||
headers: { [key: string]: mixed, ...},
|
||||
|};
|
||||
getUri<T, R>(config?: AxiosXHRConfig<T, R>): string;
|
||||
}
|
||||
|
||||
declare class AxiosError<T, R = T> extends Error {
|
||||
config: AxiosXHRConfig<T, R>;
|
||||
request?: http$ClientRequest<> | XMLHttpRequest;
|
||||
response?: AxiosXHR<T, R>;
|
||||
code?: string;
|
||||
isAxiosError: boolean;
|
||||
}
|
||||
|
||||
declare interface AxiosExport extends Axios {
|
||||
<T, R>(
|
||||
config: AxiosXHRConfig<T, R> | string,
|
||||
config?: AxiosXHRConfigShape<T, R>
|
||||
): AxiosPromise<T, R>;
|
||||
Axios: typeof Axios;
|
||||
Cancel: typeof Cancel;
|
||||
CancelToken: typeof CancelToken;
|
||||
isCancel(value: mixed): boolean;
|
||||
create(config?: AxiosXHRConfigBase<T, R>): Axios;
|
||||
all: typeof Promise.all;
|
||||
spread<T, R>(callback: (...args: T) => R): (array: T) => R;
|
||||
}
|
||||
|
||||
declare type $AxiosXHRConfigBase<T, R = T> = AxiosXHRConfigBase<T, R>;
|
||||
|
||||
declare type $AxiosXHRConfig<T, R = T> = AxiosXHRConfig<T, R>;
|
||||
|
||||
declare type $AxiosXHR<T, R = T> = AxiosXHR<T, R>;
|
||||
|
||||
declare type $AxiosError<T, R = T> = AxiosError<T, R>;
|
||||
|
||||
declare module.exports: AxiosExport;
|
||||
}
|
|
@ -1,33 +0,0 @@
|
|||
// flow-typed signature: 70964b8e34b651dd02067461a1438532
|
||||
// flow-typed version: <<STUB>>/babel-core_v^7.0.0-bridge.0/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'babel-core'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'babel-core' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
|
||||
|
||||
// Filename aliases
|
||||
declare module 'babel-core/index' {
|
||||
declare module.exports: $Exports<'babel-core'>;
|
||||
}
|
||||
declare module 'babel-core/index.js' {
|
||||
declare module.exports: $Exports<'babel-core'>;
|
||||
}
|
|
@ -1,122 +0,0 @@
|
|||
// flow-typed signature: b9ee0b1591392a19039c5acdd9840c77
|
||||
// flow-typed version: <<STUB>>/babel-eslint_v10.0.3/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'babel-eslint'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'babel-eslint' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'babel-eslint/lib/analyze-scope' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-eslint/lib/babylon-to-espree/attachComments' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-eslint/lib/babylon-to-espree/convertComments' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-eslint/lib/babylon-to-espree/convertTemplateType' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-eslint/lib/babylon-to-espree' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-eslint/lib/babylon-to-espree/toAST' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-eslint/lib/babylon-to-espree/toToken' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-eslint/lib/babylon-to-espree/toTokens' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-eslint/lib' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-eslint/lib/parse-with-scope' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-eslint/lib/parse' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-eslint/lib/require-from-eslint' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-eslint/lib/visitor-keys' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'babel-eslint/lib/analyze-scope.js' {
|
||||
declare module.exports: $Exports<'babel-eslint/lib/analyze-scope'>;
|
||||
}
|
||||
declare module 'babel-eslint/lib/babylon-to-espree/attachComments.js' {
|
||||
declare module.exports: $Exports<'babel-eslint/lib/babylon-to-espree/attachComments'>;
|
||||
}
|
||||
declare module 'babel-eslint/lib/babylon-to-espree/convertComments.js' {
|
||||
declare module.exports: $Exports<'babel-eslint/lib/babylon-to-espree/convertComments'>;
|
||||
}
|
||||
declare module 'babel-eslint/lib/babylon-to-espree/convertTemplateType.js' {
|
||||
declare module.exports: $Exports<'babel-eslint/lib/babylon-to-espree/convertTemplateType'>;
|
||||
}
|
||||
declare module 'babel-eslint/lib/babylon-to-espree/index' {
|
||||
declare module.exports: $Exports<'babel-eslint/lib/babylon-to-espree'>;
|
||||
}
|
||||
declare module 'babel-eslint/lib/babylon-to-espree/index.js' {
|
||||
declare module.exports: $Exports<'babel-eslint/lib/babylon-to-espree'>;
|
||||
}
|
||||
declare module 'babel-eslint/lib/babylon-to-espree/toAST.js' {
|
||||
declare module.exports: $Exports<'babel-eslint/lib/babylon-to-espree/toAST'>;
|
||||
}
|
||||
declare module 'babel-eslint/lib/babylon-to-espree/toToken.js' {
|
||||
declare module.exports: $Exports<'babel-eslint/lib/babylon-to-espree/toToken'>;
|
||||
}
|
||||
declare module 'babel-eslint/lib/babylon-to-espree/toTokens.js' {
|
||||
declare module.exports: $Exports<'babel-eslint/lib/babylon-to-espree/toTokens'>;
|
||||
}
|
||||
declare module 'babel-eslint/lib/index' {
|
||||
declare module.exports: $Exports<'babel-eslint/lib'>;
|
||||
}
|
||||
declare module 'babel-eslint/lib/index.js' {
|
||||
declare module.exports: $Exports<'babel-eslint/lib'>;
|
||||
}
|
||||
declare module 'babel-eslint/lib/parse-with-scope.js' {
|
||||
declare module.exports: $Exports<'babel-eslint/lib/parse-with-scope'>;
|
||||
}
|
||||
declare module 'babel-eslint/lib/parse.js' {
|
||||
declare module.exports: $Exports<'babel-eslint/lib/parse'>;
|
||||
}
|
||||
declare module 'babel-eslint/lib/require-from-eslint.js' {
|
||||
declare module.exports: $Exports<'babel-eslint/lib/require-from-eslint'>;
|
||||
}
|
||||
declare module 'babel-eslint/lib/visitor-keys.js' {
|
||||
declare module.exports: $Exports<'babel-eslint/lib/visitor-keys'>;
|
||||
}
|
|
@ -1,35 +0,0 @@
|
|||
// flow-typed signature: ea8714c3044c236fe3420a85249f31cd
|
||||
// flow-typed version: <<STUB>>/babel-jest_v24.9.0/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'babel-jest'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'babel-jest' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'babel-jest/build' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'babel-jest/build/index' {
|
||||
declare module.exports: $Exports<'babel-jest/build'>;
|
||||
}
|
||||
declare module 'babel-jest/build/index.js' {
|
||||
declare module.exports: $Exports<'babel-jest/build'>;
|
||||
}
|
|
@ -1,63 +0,0 @@
|
|||
// flow-typed signature: 9a6b83e14f3c3acd679fba1e936d054c
|
||||
// flow-typed version: <<STUB>>/babel-loader_v8.0.6/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'babel-loader'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'babel-loader' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'babel-loader/lib/cache' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-loader/lib/Error' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-loader/lib' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-loader/lib/injectCaller' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-loader/lib/transform' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'babel-loader/lib/cache.js' {
|
||||
declare module.exports: $Exports<'babel-loader/lib/cache'>;
|
||||
}
|
||||
declare module 'babel-loader/lib/Error.js' {
|
||||
declare module.exports: $Exports<'babel-loader/lib/Error'>;
|
||||
}
|
||||
declare module 'babel-loader/lib/index' {
|
||||
declare module.exports: $Exports<'babel-loader/lib'>;
|
||||
}
|
||||
declare module 'babel-loader/lib/index.js' {
|
||||
declare module.exports: $Exports<'babel-loader/lib'>;
|
||||
}
|
||||
declare module 'babel-loader/lib/injectCaller.js' {
|
||||
declare module.exports: $Exports<'babel-loader/lib/injectCaller'>;
|
||||
}
|
||||
declare module 'babel-loader/lib/transform.js' {
|
||||
declare module.exports: $Exports<'babel-loader/lib/transform'>;
|
||||
}
|
|
@ -1,49 +0,0 @@
|
|||
// flow-typed signature: 462b396c5e61fe2597baa33e857fc1cb
|
||||
// flow-typed version: <<STUB>>/babel-plugin-dynamic-import-node_v^2.3.0/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'babel-plugin-dynamic-import-node'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'babel-plugin-dynamic-import-node' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'babel-plugin-dynamic-import-node/lib' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-plugin-dynamic-import-node/lib/utils' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'babel-plugin-dynamic-import-node/utils' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'babel-plugin-dynamic-import-node/lib/index' {
|
||||
declare module.exports: $Exports<'babel-plugin-dynamic-import-node/lib'>;
|
||||
}
|
||||
declare module 'babel-plugin-dynamic-import-node/lib/index.js' {
|
||||
declare module.exports: $Exports<'babel-plugin-dynamic-import-node/lib'>;
|
||||
}
|
||||
declare module 'babel-plugin-dynamic-import-node/lib/utils.js' {
|
||||
declare module.exports: $Exports<'babel-plugin-dynamic-import-node/lib/utils'>;
|
||||
}
|
||||
declare module 'babel-plugin-dynamic-import-node/utils.js' {
|
||||
declare module.exports: $Exports<'babel-plugin-dynamic-import-node/utils'>;
|
||||
}
|
|
@ -1,35 +0,0 @@
|
|||
// flow-typed signature: 3564e4b3f5b962221e79b81c4c13c44e
|
||||
// flow-typed version: <<STUB>>/babel-plugin-transform-es3-member-expression-literals_v^6.22.0/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'babel-plugin-transform-es3-member-expression-literals'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'babel-plugin-transform-es3-member-expression-literals' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'babel-plugin-transform-es3-member-expression-literals/lib' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'babel-plugin-transform-es3-member-expression-literals/lib/index' {
|
||||
declare module.exports: $Exports<'babel-plugin-transform-es3-member-expression-literals/lib'>;
|
||||
}
|
||||
declare module 'babel-plugin-transform-es3-member-expression-literals/lib/index.js' {
|
||||
declare module.exports: $Exports<'babel-plugin-transform-es3-member-expression-literals/lib'>;
|
||||
}
|
|
@ -1,35 +0,0 @@
|
|||
// flow-typed signature: 333df6943cd457165d99ad23a70ab5a8
|
||||
// flow-typed version: <<STUB>>/babel-plugin-transform-es3-property-literals_v^6.22.0/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'babel-plugin-transform-es3-property-literals'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'babel-plugin-transform-es3-property-literals' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'babel-plugin-transform-es3-property-literals/lib' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'babel-plugin-transform-es3-property-literals/lib/index' {
|
||||
declare module.exports: $Exports<'babel-plugin-transform-es3-property-literals/lib'>;
|
||||
}
|
||||
declare module 'babel-plugin-transform-es3-property-literals/lib/index.js' {
|
||||
declare module.exports: $Exports<'babel-plugin-transform-es3-property-literals/lib'>;
|
||||
}
|
|
@ -1,4 +0,0 @@
|
|||
// flow-typed signature: 29a6ec8f7f4b42ab84093c5f7b57d5fd
|
||||
// flow-typed version: c6154227d1/babel-polyfill_v6.x.x/flow_>=v0.104.x
|
||||
|
||||
declare module 'babel-polyfill' {}
|
|
@ -1,39 +0,0 @@
|
|||
// flow-typed signature: d659ddc4491d6414d9b811108f0d9f22
|
||||
// flow-typed version: <<STUB>>/bignumber.js_v9.0.0/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'bignumber.js'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'bignumber.js' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'bignumber.js/bignumber' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'bignumber.js/bignumber.min' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'bignumber.js/bignumber.js' {
|
||||
declare module.exports: $Exports<'bignumber.js/bignumber'>;
|
||||
}
|
||||
declare module 'bignumber.js/bignumber.min.js' {
|
||||
declare module.exports: $Exports<'bignumber.js/bignumber.min'>;
|
||||
}
|
|
@ -1,23 +0,0 @@
|
|||
// flow-typed signature: a00cf41b09af4862583460529d5cfcb9
|
||||
// flow-typed version: c6154227d1/classnames_v2.x.x/flow_>=v0.104.x
|
||||
|
||||
type $npm$classnames$Classes =
|
||||
| string
|
||||
| { [className: string]: *, ... }
|
||||
| false
|
||||
| void
|
||||
| null;
|
||||
|
||||
declare module "classnames" {
|
||||
declare module.exports: (
|
||||
...classes: Array<$npm$classnames$Classes | $npm$classnames$Classes[]>
|
||||
) => string;
|
||||
}
|
||||
|
||||
declare module "classnames/bind" {
|
||||
declare module.exports: $Exports<"classnames">;
|
||||
}
|
||||
|
||||
declare module "classnames/dedupe" {
|
||||
declare module.exports: $Exports<"classnames">;
|
||||
}
|
|
@ -1,266 +0,0 @@
|
|||
// flow-typed signature: 2470e4df3226bf5856293d15929c5d50
|
||||
// flow-typed version: <<STUB>>/connected-react-router_v6.6.1/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'connected-react-router'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'connected-react-router' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'connected-react-router/esm/actions' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'connected-react-router/esm/ConnectedRouter' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'connected-react-router/esm/immutable' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'connected-react-router/esm' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'connected-react-router/esm/middleware' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'connected-react-router/esm/reducer' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'connected-react-router/esm/seamless-immutable' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'connected-react-router/esm/selectors' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'connected-react-router/esm/structure/immutable/getIn' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'connected-react-router/esm/structure/immutable' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'connected-react-router/esm/structure/plain/getIn' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'connected-react-router/esm/structure/plain' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'connected-react-router/esm/structure/seamless-immutable' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'connected-react-router/immutable' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'connected-react-router/lib/actions' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'connected-react-router/lib/ConnectedRouter' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'connected-react-router/lib/immutable' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'connected-react-router/lib' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'connected-react-router/lib/middleware' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'connected-react-router/lib/reducer' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'connected-react-router/lib/seamless-immutable' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'connected-react-router/lib/selectors' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'connected-react-router/lib/structure/immutable/getIn' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'connected-react-router/lib/structure/immutable' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'connected-react-router/lib/structure/plain/getIn' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'connected-react-router/lib/structure/plain' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'connected-react-router/lib/structure/seamless-immutable' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'connected-react-router/seamless-immutable' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'connected-react-router/umd/ConnectedReactRouter' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'connected-react-router/umd/ConnectedReactRouter.min' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'connected-react-router/webpack.config' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'connected-react-router/esm/actions.js' {
|
||||
declare module.exports: $Exports<'connected-react-router/esm/actions'>;
|
||||
}
|
||||
declare module 'connected-react-router/esm/ConnectedRouter.js' {
|
||||
declare module.exports: $Exports<'connected-react-router/esm/ConnectedRouter'>;
|
||||
}
|
||||
declare module 'connected-react-router/esm/immutable.js' {
|
||||
declare module.exports: $Exports<'connected-react-router/esm/immutable'>;
|
||||
}
|
||||
declare module 'connected-react-router/esm/index' {
|
||||
declare module.exports: $Exports<'connected-react-router/esm'>;
|
||||
}
|
||||
declare module 'connected-react-router/esm/index.js' {
|
||||
declare module.exports: $Exports<'connected-react-router/esm'>;
|
||||
}
|
||||
declare module 'connected-react-router/esm/middleware.js' {
|
||||
declare module.exports: $Exports<'connected-react-router/esm/middleware'>;
|
||||
}
|
||||
declare module 'connected-react-router/esm/reducer.js' {
|
||||
declare module.exports: $Exports<'connected-react-router/esm/reducer'>;
|
||||
}
|
||||
declare module 'connected-react-router/esm/seamless-immutable.js' {
|
||||
declare module.exports: $Exports<'connected-react-router/esm/seamless-immutable'>;
|
||||
}
|
||||
declare module 'connected-react-router/esm/selectors.js' {
|
||||
declare module.exports: $Exports<'connected-react-router/esm/selectors'>;
|
||||
}
|
||||
declare module 'connected-react-router/esm/structure/immutable/getIn.js' {
|
||||
declare module.exports: $Exports<'connected-react-router/esm/structure/immutable/getIn'>;
|
||||
}
|
||||
declare module 'connected-react-router/esm/structure/immutable/index' {
|
||||
declare module.exports: $Exports<'connected-react-router/esm/structure/immutable'>;
|
||||
}
|
||||
declare module 'connected-react-router/esm/structure/immutable/index.js' {
|
||||
declare module.exports: $Exports<'connected-react-router/esm/structure/immutable'>;
|
||||
}
|
||||
declare module 'connected-react-router/esm/structure/plain/getIn.js' {
|
||||
declare module.exports: $Exports<'connected-react-router/esm/structure/plain/getIn'>;
|
||||
}
|
||||
declare module 'connected-react-router/esm/structure/plain/index' {
|
||||
declare module.exports: $Exports<'connected-react-router/esm/structure/plain'>;
|
||||
}
|
||||
declare module 'connected-react-router/esm/structure/plain/index.js' {
|
||||
declare module.exports: $Exports<'connected-react-router/esm/structure/plain'>;
|
||||
}
|
||||
declare module 'connected-react-router/esm/structure/seamless-immutable/index' {
|
||||
declare module.exports: $Exports<'connected-react-router/esm/structure/seamless-immutable'>;
|
||||
}
|
||||
declare module 'connected-react-router/esm/structure/seamless-immutable/index.js' {
|
||||
declare module.exports: $Exports<'connected-react-router/esm/structure/seamless-immutable'>;
|
||||
}
|
||||
declare module 'connected-react-router/immutable.js' {
|
||||
declare module.exports: $Exports<'connected-react-router/immutable'>;
|
||||
}
|
||||
declare module 'connected-react-router/lib/actions.js' {
|
||||
declare module.exports: $Exports<'connected-react-router/lib/actions'>;
|
||||
}
|
||||
declare module 'connected-react-router/lib/ConnectedRouter.js' {
|
||||
declare module.exports: $Exports<'connected-react-router/lib/ConnectedRouter'>;
|
||||
}
|
||||
declare module 'connected-react-router/lib/immutable.js' {
|
||||
declare module.exports: $Exports<'connected-react-router/lib/immutable'>;
|
||||
}
|
||||
declare module 'connected-react-router/lib/index' {
|
||||
declare module.exports: $Exports<'connected-react-router/lib'>;
|
||||
}
|
||||
declare module 'connected-react-router/lib/index.js' {
|
||||
declare module.exports: $Exports<'connected-react-router/lib'>;
|
||||
}
|
||||
declare module 'connected-react-router/lib/middleware.js' {
|
||||
declare module.exports: $Exports<'connected-react-router/lib/middleware'>;
|
||||
}
|
||||
declare module 'connected-react-router/lib/reducer.js' {
|
||||
declare module.exports: $Exports<'connected-react-router/lib/reducer'>;
|
||||
}
|
||||
declare module 'connected-react-router/lib/seamless-immutable.js' {
|
||||
declare module.exports: $Exports<'connected-react-router/lib/seamless-immutable'>;
|
||||
}
|
||||
declare module 'connected-react-router/lib/selectors.js' {
|
||||
declare module.exports: $Exports<'connected-react-router/lib/selectors'>;
|
||||
}
|
||||
declare module 'connected-react-router/lib/structure/immutable/getIn.js' {
|
||||
declare module.exports: $Exports<'connected-react-router/lib/structure/immutable/getIn'>;
|
||||
}
|
||||
declare module 'connected-react-router/lib/structure/immutable/index' {
|
||||
declare module.exports: $Exports<'connected-react-router/lib/structure/immutable'>;
|
||||
}
|
||||
declare module 'connected-react-router/lib/structure/immutable/index.js' {
|
||||
declare module.exports: $Exports<'connected-react-router/lib/structure/immutable'>;
|
||||
}
|
||||
declare module 'connected-react-router/lib/structure/plain/getIn.js' {
|
||||
declare module.exports: $Exports<'connected-react-router/lib/structure/plain/getIn'>;
|
||||
}
|
||||
declare module 'connected-react-router/lib/structure/plain/index' {
|
||||
declare module.exports: $Exports<'connected-react-router/lib/structure/plain'>;
|
||||
}
|
||||
declare module 'connected-react-router/lib/structure/plain/index.js' {
|
||||
declare module.exports: $Exports<'connected-react-router/lib/structure/plain'>;
|
||||
}
|
||||
declare module 'connected-react-router/lib/structure/seamless-immutable/index' {
|
||||
declare module.exports: $Exports<'connected-react-router/lib/structure/seamless-immutable'>;
|
||||
}
|
||||
declare module 'connected-react-router/lib/structure/seamless-immutable/index.js' {
|
||||
declare module.exports: $Exports<'connected-react-router/lib/structure/seamless-immutable'>;
|
||||
}
|
||||
declare module 'connected-react-router/seamless-immutable.js' {
|
||||
declare module.exports: $Exports<'connected-react-router/seamless-immutable'>;
|
||||
}
|
||||
declare module 'connected-react-router/umd/ConnectedReactRouter.js' {
|
||||
declare module.exports: $Exports<'connected-react-router/umd/ConnectedReactRouter'>;
|
||||
}
|
||||
declare module 'connected-react-router/umd/ConnectedReactRouter.min.js' {
|
||||
declare module.exports: $Exports<'connected-react-router/umd/ConnectedReactRouter.min'>;
|
||||
}
|
||||
declare module 'connected-react-router/webpack.config.js' {
|
||||
declare module.exports: $Exports<'connected-react-router/webpack.config'>;
|
||||
}
|
|
@ -1,108 +0,0 @@
|
|||
// flow-typed signature: 50c3630c13b8b3be7346bb912131ac29
|
||||
// flow-typed version: <<STUB>>/css-loader_v3.4.0/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'css-loader'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'css-loader' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'css-loader/dist/cjs' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'css-loader/dist/CssSyntaxError' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'css-loader/dist' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'css-loader/dist/plugins' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'css-loader/dist/plugins/postcss-icss-parser' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'css-loader/dist/plugins/postcss-import-parser' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'css-loader/dist/plugins/postcss-url-parser' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'css-loader/dist/runtime/api' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'css-loader/dist/runtime/getUrl' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'css-loader/dist/utils' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'css-loader/dist/Warning' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'css-loader/dist/cjs.js' {
|
||||
declare module.exports: $Exports<'css-loader/dist/cjs'>;
|
||||
}
|
||||
declare module 'css-loader/dist/CssSyntaxError.js' {
|
||||
declare module.exports: $Exports<'css-loader/dist/CssSyntaxError'>;
|
||||
}
|
||||
declare module 'css-loader/dist/index' {
|
||||
declare module.exports: $Exports<'css-loader/dist'>;
|
||||
}
|
||||
declare module 'css-loader/dist/index.js' {
|
||||
declare module.exports: $Exports<'css-loader/dist'>;
|
||||
}
|
||||
declare module 'css-loader/dist/plugins/index' {
|
||||
declare module.exports: $Exports<'css-loader/dist/plugins'>;
|
||||
}
|
||||
declare module 'css-loader/dist/plugins/index.js' {
|
||||
declare module.exports: $Exports<'css-loader/dist/plugins'>;
|
||||
}
|
||||
declare module 'css-loader/dist/plugins/postcss-icss-parser.js' {
|
||||
declare module.exports: $Exports<'css-loader/dist/plugins/postcss-icss-parser'>;
|
||||
}
|
||||
declare module 'css-loader/dist/plugins/postcss-import-parser.js' {
|
||||
declare module.exports: $Exports<'css-loader/dist/plugins/postcss-import-parser'>;
|
||||
}
|
||||
declare module 'css-loader/dist/plugins/postcss-url-parser.js' {
|
||||
declare module.exports: $Exports<'css-loader/dist/plugins/postcss-url-parser'>;
|
||||
}
|
||||
declare module 'css-loader/dist/runtime/api.js' {
|
||||
declare module.exports: $Exports<'css-loader/dist/runtime/api'>;
|
||||
}
|
||||
declare module 'css-loader/dist/runtime/getUrl.js' {
|
||||
declare module.exports: $Exports<'css-loader/dist/runtime/getUrl'>;
|
||||
}
|
||||
declare module 'css-loader/dist/utils.js' {
|
||||
declare module.exports: $Exports<'css-loader/dist/utils'>;
|
||||
}
|
||||
declare module 'css-loader/dist/Warning.js' {
|
||||
declare module.exports: $Exports<'css-loader/dist/Warning'>;
|
||||
}
|
|
@ -1,18 +0,0 @@
|
|||
// flow-typed signature: 679bf917ad510e03db498f47eca96544
|
||||
// flow-typed version: <<STUB>>/currency-flags_v^2.1.1/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'currency-flags'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'currency-flags' {
|
||||
declare module.exports: any;
|
||||
}
|
|
@ -1,38 +0,0 @@
|
|||
// flow-typed signature: 44540df268f6335c78e602ebb0b27cbc
|
||||
// flow-typed version: <<STUB>>/detect-port_v^1.3.0/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'detect-port'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'detect-port' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'detect-port/lib/detect-port' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'detect-port/index' {
|
||||
declare module.exports: $Exports<'detect-port'>;
|
||||
}
|
||||
declare module 'detect-port/index.js' {
|
||||
declare module.exports: $Exports<'detect-port'>;
|
||||
}
|
||||
declare module 'detect-port/lib/detect-port.js' {
|
||||
declare module.exports: $Exports<'detect-port/lib/detect-port'>;
|
||||
}
|
|
@ -1,32 +0,0 @@
|
|||
// flow-typed signature: 5653b8ca5bb6e3ea60f7bfb0e5e6bde9
|
||||
// flow-typed version: <<STUB>>/dotenv-expand_v^5.1.0/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'dotenv-expand'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'dotenv-expand' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'dotenv-expand/lib/main' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'dotenv-expand/lib/main.js' {
|
||||
declare module.exports: $Exports<'dotenv-expand/lib/main'>;
|
||||
}
|
|
@ -1,26 +0,0 @@
|
|||
// flow-typed signature: f4a700556e8a1a83c5e3ae513140d88c
|
||||
// flow-typed version: 9899c09849/dotenv_v8.x.x/flow_>=v0.53.x
|
||||
|
||||
// @flow
|
||||
|
||||
declare module 'dotenv' {
|
||||
declare type ParseResult = {| [key: string]: string |};
|
||||
declare type ConfigResult = {| parsed: ParseResult |} | {| error: Error |};
|
||||
declare function config(
|
||||
options?: $Shape<{| path: string, encoding: string, debug: boolean |}>
|
||||
): ConfigResult;
|
||||
|
||||
declare function parse(
|
||||
buffer: Buffer | string,
|
||||
options?: $Shape<{| debug: boolean |}>
|
||||
): ParseResult;
|
||||
|
||||
declare module.exports: {|
|
||||
config: typeof config,
|
||||
parse: typeof parse,
|
||||
|};
|
||||
}
|
||||
|
||||
// eslint-disable-next-line no-empty
|
||||
declare module 'dotenv/config' {
|
||||
}
|
|
@ -1,101 +0,0 @@
|
|||
// flow-typed signature: 10884ae7c70a1acf9129d34449657124
|
||||
// flow-typed version: <<STUB>>/eslint-config-airbnb_v18.0.1/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'eslint-config-airbnb'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'eslint-config-airbnb' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'eslint-config-airbnb/base' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-config-airbnb/hooks' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-config-airbnb/legacy' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-config-airbnb/rules/react-a11y' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-config-airbnb/rules/react-hooks' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-config-airbnb/rules/react' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-config-airbnb/test/requires' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-config-airbnb/test/test-base' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-config-airbnb/test/test-react-order' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-config-airbnb/whitespace' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'eslint-config-airbnb/base.js' {
|
||||
declare module.exports: $Exports<'eslint-config-airbnb/base'>;
|
||||
}
|
||||
declare module 'eslint-config-airbnb/hooks.js' {
|
||||
declare module.exports: $Exports<'eslint-config-airbnb/hooks'>;
|
||||
}
|
||||
declare module 'eslint-config-airbnb/index' {
|
||||
declare module.exports: $Exports<'eslint-config-airbnb'>;
|
||||
}
|
||||
declare module 'eslint-config-airbnb/index.js' {
|
||||
declare module.exports: $Exports<'eslint-config-airbnb'>;
|
||||
}
|
||||
declare module 'eslint-config-airbnb/legacy.js' {
|
||||
declare module.exports: $Exports<'eslint-config-airbnb/legacy'>;
|
||||
}
|
||||
declare module 'eslint-config-airbnb/rules/react-a11y.js' {
|
||||
declare module.exports: $Exports<'eslint-config-airbnb/rules/react-a11y'>;
|
||||
}
|
||||
declare module 'eslint-config-airbnb/rules/react-hooks.js' {
|
||||
declare module.exports: $Exports<'eslint-config-airbnb/rules/react-hooks'>;
|
||||
}
|
||||
declare module 'eslint-config-airbnb/rules/react.js' {
|
||||
declare module.exports: $Exports<'eslint-config-airbnb/rules/react'>;
|
||||
}
|
||||
declare module 'eslint-config-airbnb/test/requires.js' {
|
||||
declare module.exports: $Exports<'eslint-config-airbnb/test/requires'>;
|
||||
}
|
||||
declare module 'eslint-config-airbnb/test/test-base.js' {
|
||||
declare module.exports: $Exports<'eslint-config-airbnb/test/test-base'>;
|
||||
}
|
||||
declare module 'eslint-config-airbnb/test/test-react-order.js' {
|
||||
declare module.exports: $Exports<'eslint-config-airbnb/test/test-react-order'>;
|
||||
}
|
||||
declare module 'eslint-config-airbnb/whitespace.js' {
|
||||
declare module.exports: $Exports<'eslint-config-airbnb/whitespace'>;
|
||||
}
|
|
@ -1,506 +0,0 @@
|
|||
// flow-typed signature: 44989c31ab09e114d3912f966c32085a
|
||||
// flow-typed version: <<STUB>>/eslint-plugin-flowtype_v4.5.2/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'eslint-plugin-flowtype'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'eslint-plugin-flowtype' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'eslint-plugin-flowtype/dist/bin/addAssertions' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/bin/checkDocs' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/bin/checkTests' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/bin/utilities' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/arrayStyle' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/arrayStyle/isSimpleType' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/arrayStyle/needWrap' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/arrayStyleComplexType' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/arrayStyleSimpleType' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/arrowParens' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/booleanStyle' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/defineFlowType' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/delimiterDangle' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/genericSpacing' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/newlineAfterFlowAnnotation' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/noDupeKeys' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/noExistentialType' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/noFlowFixMeComments' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/noMixed' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/noMutableArray' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/noPrimitiveConstructorTypes' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/noTypesMissingFileAnnotation' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/noUnusedExpressions' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/noWeakTypes' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/objectTypeDelimiter' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/requireCompoundTypeAlias' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/requireExactType' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/requireIndexerName' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/requireInexactType' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/requireParameterType' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/requireReadonlyReactProps' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/requireReturnType' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/requireTypesAtTop' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/requireValidFileAnnotation' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/requireVariableType' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/semi' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/sortKeys' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/spaceAfterTypeColon' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/spaceBeforeGenericBracket' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/spaceBeforeTypeColon' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/spreadExactType' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateFunctions' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateObjectTypeIndexer' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateObjectTypeProperty' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateReturnType' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateTypeCastExpression' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateTypical' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateVariables' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/reporter' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/typeIdMatch' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/typeImportStyle' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/unionIntersectionSpacing' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/useFlowType' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/validSyntax' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/utilities/checkFlowFileAnnotation' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/utilities/fuzzyStringMatch' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/utilities/getParameterName' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/utilities/getTokenAfterParens' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/utilities/getTokenBeforeParens' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/utilities' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/utilities/isFlowFile' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/utilities/isFlowFileAnnotation' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/utilities/iterateFunctionNodes' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/utilities/quoteName' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-flowtype/dist/utilities/spacingFixers' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'eslint-plugin-flowtype/dist/bin/addAssertions.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/bin/addAssertions'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/bin/checkDocs.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/bin/checkDocs'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/bin/checkTests.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/bin/checkTests'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/bin/utilities.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/bin/utilities'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/index' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/index.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/arrayStyle/index' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/arrayStyle'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/arrayStyle/index.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/arrayStyle'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/arrayStyle/isSimpleType.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/arrayStyle/isSimpleType'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/arrayStyle/needWrap.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/arrayStyle/needWrap'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/arrayStyleComplexType.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/arrayStyleComplexType'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/arrayStyleSimpleType.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/arrayStyleSimpleType'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/arrowParens.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/arrowParens'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/booleanStyle.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/booleanStyle'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/defineFlowType.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/defineFlowType'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/delimiterDangle.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/delimiterDangle'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/genericSpacing.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/genericSpacing'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/newlineAfterFlowAnnotation.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/newlineAfterFlowAnnotation'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/noDupeKeys.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/noDupeKeys'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/noExistentialType.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/noExistentialType'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/noFlowFixMeComments.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/noFlowFixMeComments'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/noMixed.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/noMixed'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/noMutableArray.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/noMutableArray'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/noPrimitiveConstructorTypes.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/noPrimitiveConstructorTypes'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/noTypesMissingFileAnnotation.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/noTypesMissingFileAnnotation'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/noUnusedExpressions.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/noUnusedExpressions'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/noWeakTypes.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/noWeakTypes'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/objectTypeDelimiter.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/objectTypeDelimiter'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/requireCompoundTypeAlias.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/requireCompoundTypeAlias'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/requireExactType.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/requireExactType'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/requireIndexerName.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/requireIndexerName'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/requireInexactType.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/requireInexactType'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/requireParameterType.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/requireParameterType'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/requireReadonlyReactProps.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/requireReadonlyReactProps'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/requireReturnType.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/requireReturnType'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/requireTypesAtTop.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/requireTypesAtTop'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/requireValidFileAnnotation.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/requireValidFileAnnotation'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/requireVariableType.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/requireVariableType'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/semi.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/semi'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/sortKeys.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/sortKeys'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/spaceAfterTypeColon.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/spaceAfterTypeColon'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/spaceBeforeGenericBracket.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/spaceBeforeGenericBracket'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/spaceBeforeTypeColon.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/spaceBeforeTypeColon'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/spreadExactType.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/spreadExactType'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateFunctions.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateFunctions'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateObjectTypeIndexer.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateObjectTypeIndexer'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateObjectTypeProperty.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateObjectTypeProperty'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateReturnType.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateReturnType'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateTypeCastExpression.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateTypeCastExpression'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateTypical.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateTypical'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateVariables.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateVariables'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/index' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/typeColonSpacing'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/index.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/typeColonSpacing'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/reporter.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/typeColonSpacing/reporter'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/typeIdMatch.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/typeIdMatch'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/typeImportStyle.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/typeImportStyle'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/unionIntersectionSpacing.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/unionIntersectionSpacing'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/useFlowType.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/useFlowType'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/rules/validSyntax.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/validSyntax'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/utilities/checkFlowFileAnnotation.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/utilities/checkFlowFileAnnotation'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/utilities/fuzzyStringMatch.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/utilities/fuzzyStringMatch'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/utilities/getParameterName.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/utilities/getParameterName'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/utilities/getTokenAfterParens.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/utilities/getTokenAfterParens'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/utilities/getTokenBeforeParens.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/utilities/getTokenBeforeParens'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/utilities/index' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/utilities'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/utilities/index.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/utilities'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/utilities/isFlowFile.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/utilities/isFlowFile'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/utilities/isFlowFileAnnotation.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/utilities/isFlowFileAnnotation'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/utilities/iterateFunctionNodes.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/utilities/iterateFunctionNodes'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/utilities/quoteName.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/utilities/quoteName'>;
|
||||
}
|
||||
declare module 'eslint-plugin-flowtype/dist/utilities/spacingFixers.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-flowtype/dist/utilities/spacingFixers'>;
|
||||
}
|
|
@ -1,423 +0,0 @@
|
|||
// flow-typed signature: fdbc1b16dd4b11248a9219afa62776b2
|
||||
// flow-typed version: <<STUB>>/eslint-plugin-import_v2.19.1/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'eslint-plugin-import'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'eslint-plugin-import' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'eslint-plugin-import/config/electron' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/config/errors' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/config/react-native' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/config/react' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/config/recommended' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/config/stage-0' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/config/typescript' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/config/warnings' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/core/importType' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/core/staticRequire' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/docsUrl' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/ExportMap' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/importDeclaration' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/default' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/dynamic-import-chunkname' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/export' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/exports-last' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/extensions' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/first' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/group-exports' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/imports-first' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/max-dependencies' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/named' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/namespace' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/newline-after-import' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/no-absolute-path' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/no-amd' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/no-anonymous-default-export' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/no-commonjs' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/no-cycle' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/no-default-export' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/no-deprecated' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/no-duplicates' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/no-dynamic-require' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/no-extraneous-dependencies' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/no-internal-modules' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/no-mutable-exports' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/no-named-as-default-member' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/no-named-as-default' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/no-named-default' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/no-named-export' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/no-namespace' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/no-nodejs-modules' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/no-relative-parent-imports' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/no-restricted-paths' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/no-self-import' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/no-unassigned-import' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/no-unresolved' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/no-unused-modules' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/no-useless-path-segments' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/no-webpack-loader-syntax' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/order' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/prefer-default-export' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/lib/rules/unambiguous' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-import/memo-parser' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'eslint-plugin-import/config/electron.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/config/electron'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/config/errors.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/config/errors'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/config/react-native.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/config/react-native'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/config/react.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/config/react'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/config/recommended.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/config/recommended'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/config/stage-0.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/config/stage-0'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/config/typescript.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/config/typescript'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/config/warnings.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/config/warnings'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/core/importType.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/core/importType'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/core/staticRequire.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/core/staticRequire'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/docsUrl.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/docsUrl'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/ExportMap.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/ExportMap'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/importDeclaration.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/importDeclaration'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/index' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/index.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/default.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/default'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/dynamic-import-chunkname.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/dynamic-import-chunkname'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/export.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/export'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/exports-last.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/exports-last'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/extensions.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/extensions'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/first.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/first'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/group-exports.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/group-exports'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/imports-first.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/imports-first'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/max-dependencies.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/max-dependencies'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/named.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/named'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/namespace.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/namespace'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/newline-after-import.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/newline-after-import'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/no-absolute-path.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-absolute-path'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/no-amd.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-amd'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/no-anonymous-default-export.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-anonymous-default-export'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/no-commonjs.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-commonjs'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/no-cycle.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-cycle'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/no-default-export.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-default-export'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/no-deprecated.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-deprecated'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/no-duplicates.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-duplicates'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/no-dynamic-require.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-dynamic-require'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/no-extraneous-dependencies.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-extraneous-dependencies'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/no-internal-modules.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-internal-modules'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/no-mutable-exports.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-mutable-exports'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/no-named-as-default-member.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-named-as-default-member'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/no-named-as-default.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-named-as-default'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/no-named-default.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-named-default'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/no-named-export.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-named-export'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/no-namespace.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-namespace'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/no-nodejs-modules.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-nodejs-modules'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/no-relative-parent-imports.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-relative-parent-imports'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/no-restricted-paths.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-restricted-paths'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/no-self-import.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-self-import'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/no-unassigned-import.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-unassigned-import'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/no-unresolved.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-unresolved'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/no-unused-modules.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-unused-modules'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/no-useless-path-segments.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-useless-path-segments'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/no-webpack-loader-syntax.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-webpack-loader-syntax'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/order.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/order'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/prefer-default-export.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/prefer-default-export'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/lib/rules/unambiguous.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/lib/rules/unambiguous'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/memo-parser/index' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/memo-parser'>;
|
||||
}
|
||||
declare module 'eslint-plugin-import/memo-parser/index.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-import/memo-parser'>;
|
||||
}
|
|
@ -1,336 +0,0 @@
|
|||
// flow-typed signature: ea56b41ce621288a406beeece961aac0
|
||||
// flow-typed version: <<STUB>>/eslint-plugin-jest_v23.1.1/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'eslint-plugin-jest'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'eslint-plugin-jest' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'eslint-plugin-jest/lib/__tests__/rules.test' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-jest/lib' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-jest/lib/processors/snapshot-processor' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-jest/lib/rules/consistent-test-it' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-jest/lib/rules/expect-expect' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-jest/lib/rules/lowercase-name' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-jest/lib/rules/no-alias-methods' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-jest/lib/rules/no-commented-out-tests' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-jest/lib/rules/no-disabled-tests' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-jest/lib/rules/no-duplicate-hooks' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-jest/lib/rules/no-expect-resolves' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-jest/lib/rules/no-export' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-jest/lib/rules/no-focused-tests' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-jest/lib/rules/no-hooks' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-jest/lib/rules/no-identical-title' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-jest/lib/rules/no-if' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-jest/lib/rules/no-jasmine-globals' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-jest/lib/rules/no-jest-import' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-jest/lib/rules/no-large-snapshots' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-jest/lib/rules/no-mocks-import' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-jest/lib/rules/no-standalone-expect' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-jest/lib/rules/no-test-callback' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-jest/lib/rules/no-test-prefixes' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-jest/lib/rules/no-test-return-statement' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-jest/lib/rules/no-truthy-falsy' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-jest/lib/rules/no-try-expect' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-jest/lib/rules/prefer-called-with' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-jest/lib/rules/prefer-expect-assertions' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-jest/lib/rules/prefer-hooks-on-top' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-jest/lib/rules/prefer-inline-snapshots' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-jest/lib/rules/prefer-spy-on' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-jest/lib/rules/prefer-strict-equal' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-jest/lib/rules/prefer-to-be-null' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-jest/lib/rules/prefer-to-be-undefined' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-jest/lib/rules/prefer-to-contain' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-jest/lib/rules/prefer-to-have-length' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-jest/lib/rules/prefer-todo' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-jest/lib/rules/require-to-throw-message' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-jest/lib/rules/require-top-level-describe' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-jest/lib/rules/utils' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-jest/lib/rules/valid-describe' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-jest/lib/rules/valid-expect-in-promise' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-jest/lib/rules/valid-expect' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-jest/lib/rules/valid-title' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'eslint-plugin-jest/lib/__tests__/rules.test.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-jest/lib/__tests__/rules.test'>;
|
||||
}
|
||||
declare module 'eslint-plugin-jest/lib/index' {
|
||||
declare module.exports: $Exports<'eslint-plugin-jest/lib'>;
|
||||
}
|
||||
declare module 'eslint-plugin-jest/lib/index.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-jest/lib'>;
|
||||
}
|
||||
declare module 'eslint-plugin-jest/lib/processors/snapshot-processor.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-jest/lib/processors/snapshot-processor'>;
|
||||
}
|
||||
declare module 'eslint-plugin-jest/lib/rules/consistent-test-it.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/consistent-test-it'>;
|
||||
}
|
||||
declare module 'eslint-plugin-jest/lib/rules/expect-expect.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/expect-expect'>;
|
||||
}
|
||||
declare module 'eslint-plugin-jest/lib/rules/lowercase-name.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/lowercase-name'>;
|
||||
}
|
||||
declare module 'eslint-plugin-jest/lib/rules/no-alias-methods.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/no-alias-methods'>;
|
||||
}
|
||||
declare module 'eslint-plugin-jest/lib/rules/no-commented-out-tests.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/no-commented-out-tests'>;
|
||||
}
|
||||
declare module 'eslint-plugin-jest/lib/rules/no-disabled-tests.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/no-disabled-tests'>;
|
||||
}
|
||||
declare module 'eslint-plugin-jest/lib/rules/no-duplicate-hooks.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/no-duplicate-hooks'>;
|
||||
}
|
||||
declare module 'eslint-plugin-jest/lib/rules/no-expect-resolves.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/no-expect-resolves'>;
|
||||
}
|
||||
declare module 'eslint-plugin-jest/lib/rules/no-export.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/no-export'>;
|
||||
}
|
||||
declare module 'eslint-plugin-jest/lib/rules/no-focused-tests.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/no-focused-tests'>;
|
||||
}
|
||||
declare module 'eslint-plugin-jest/lib/rules/no-hooks.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/no-hooks'>;
|
||||
}
|
||||
declare module 'eslint-plugin-jest/lib/rules/no-identical-title.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/no-identical-title'>;
|
||||
}
|
||||
declare module 'eslint-plugin-jest/lib/rules/no-if.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/no-if'>;
|
||||
}
|
||||
declare module 'eslint-plugin-jest/lib/rules/no-jasmine-globals.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/no-jasmine-globals'>;
|
||||
}
|
||||
declare module 'eslint-plugin-jest/lib/rules/no-jest-import.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/no-jest-import'>;
|
||||
}
|
||||
declare module 'eslint-plugin-jest/lib/rules/no-large-snapshots.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/no-large-snapshots'>;
|
||||
}
|
||||
declare module 'eslint-plugin-jest/lib/rules/no-mocks-import.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/no-mocks-import'>;
|
||||
}
|
||||
declare module 'eslint-plugin-jest/lib/rules/no-standalone-expect.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/no-standalone-expect'>;
|
||||
}
|
||||
declare module 'eslint-plugin-jest/lib/rules/no-test-callback.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/no-test-callback'>;
|
||||
}
|
||||
declare module 'eslint-plugin-jest/lib/rules/no-test-prefixes.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/no-test-prefixes'>;
|
||||
}
|
||||
declare module 'eslint-plugin-jest/lib/rules/no-test-return-statement.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/no-test-return-statement'>;
|
||||
}
|
||||
declare module 'eslint-plugin-jest/lib/rules/no-truthy-falsy.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/no-truthy-falsy'>;
|
||||
}
|
||||
declare module 'eslint-plugin-jest/lib/rules/no-try-expect.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/no-try-expect'>;
|
||||
}
|
||||
declare module 'eslint-plugin-jest/lib/rules/prefer-called-with.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/prefer-called-with'>;
|
||||
}
|
||||
declare module 'eslint-plugin-jest/lib/rules/prefer-expect-assertions.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/prefer-expect-assertions'>;
|
||||
}
|
||||
declare module 'eslint-plugin-jest/lib/rules/prefer-hooks-on-top.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/prefer-hooks-on-top'>;
|
||||
}
|
||||
declare module 'eslint-plugin-jest/lib/rules/prefer-inline-snapshots.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/prefer-inline-snapshots'>;
|
||||
}
|
||||
declare module 'eslint-plugin-jest/lib/rules/prefer-spy-on.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/prefer-spy-on'>;
|
||||
}
|
||||
declare module 'eslint-plugin-jest/lib/rules/prefer-strict-equal.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/prefer-strict-equal'>;
|
||||
}
|
||||
declare module 'eslint-plugin-jest/lib/rules/prefer-to-be-null.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/prefer-to-be-null'>;
|
||||
}
|
||||
declare module 'eslint-plugin-jest/lib/rules/prefer-to-be-undefined.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/prefer-to-be-undefined'>;
|
||||
}
|
||||
declare module 'eslint-plugin-jest/lib/rules/prefer-to-contain.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/prefer-to-contain'>;
|
||||
}
|
||||
declare module 'eslint-plugin-jest/lib/rules/prefer-to-have-length.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/prefer-to-have-length'>;
|
||||
}
|
||||
declare module 'eslint-plugin-jest/lib/rules/prefer-todo.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/prefer-todo'>;
|
||||
}
|
||||
declare module 'eslint-plugin-jest/lib/rules/require-to-throw-message.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/require-to-throw-message'>;
|
||||
}
|
||||
declare module 'eslint-plugin-jest/lib/rules/require-top-level-describe.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/require-top-level-describe'>;
|
||||
}
|
||||
declare module 'eslint-plugin-jest/lib/rules/utils.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/utils'>;
|
||||
}
|
||||
declare module 'eslint-plugin-jest/lib/rules/valid-describe.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/valid-describe'>;
|
||||
}
|
||||
declare module 'eslint-plugin-jest/lib/rules/valid-expect-in-promise.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/valid-expect-in-promise'>;
|
||||
}
|
||||
declare module 'eslint-plugin-jest/lib/rules/valid-expect.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/valid-expect'>;
|
||||
}
|
||||
declare module 'eslint-plugin-jest/lib/rules/valid-title.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/valid-title'>;
|
||||
}
|
File diff suppressed because it is too large
Load Diff
|
@ -1,752 +0,0 @@
|
|||
// flow-typed signature: 56bbf7ea0af156abc12c3c0312e566f0
|
||||
// flow-typed version: <<STUB>>/eslint-plugin-react_v7.17.0/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'eslint-plugin-react'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'eslint-plugin-react' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'eslint-plugin-react/lib/rules/boolean-prop-naming' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/button-has-type' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/default-props-match-prop-types' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/destructuring-assignment' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/display-name' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/forbid-component-props' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/forbid-dom-props' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/forbid-elements' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/forbid-foreign-prop-types' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/forbid-prop-types' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-boolean-value' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-child-element-spacing' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-closing-bracket-location' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-closing-tag-location' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-curly-brace-presence' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-curly-newline' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-curly-spacing' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-equals-spacing' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-filename-extension' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-first-prop-new-line' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-fragments' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-handler-names' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-indent-props' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-indent' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-key' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-max-depth' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-max-props-per-line' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-no-bind' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-no-comment-textnodes' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-no-duplicate-props' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-no-literals' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-no-target-blank' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-no-undef' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-no-useless-fragment' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-one-expression-per-line' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-pascal-case' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-props-no-multi-spaces' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-props-no-spreading' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-sort-default-props' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-sort-props' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-space-before-closing' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-tag-spacing' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-uses-react' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-uses-vars' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-wrap-multilines' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/no-access-state-in-setstate' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/no-array-index-key' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/no-children-prop' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/no-danger-with-children' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/no-danger' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/no-deprecated' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/no-did-mount-set-state' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/no-did-update-set-state' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/no-direct-mutation-state' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/no-find-dom-node' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/no-is-mounted' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/no-multi-comp' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/no-redundant-should-component-update' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/no-render-return-value' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/no-set-state' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/no-string-refs' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/no-this-in-sfc' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/no-typos' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/no-unescaped-entities' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/no-unknown-property' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/no-unsafe' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/no-unused-prop-types' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/no-unused-state' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/no-will-update-set-state' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/prefer-es6-class' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/prefer-read-only-props' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/prefer-stateless-function' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/prop-types' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/react-in-jsx-scope' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/require-default-props' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/require-optimization' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/require-render-return' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/self-closing-comp' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/sort-comp' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/sort-prop-types' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/state-in-constructor' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/static-property-placement' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/style-prop-object' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/rules/void-dom-elements-no-children' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/util/annotations' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/util/ast' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/util/Components' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/util/defaultProps' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/util/docsUrl' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/util/error' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/util/getTokenBeforeClosingBracket' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/util/jsx' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/util/linkComponents' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/util/log' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/util/makeNoMethodSetStateRule' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/util/pragma' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/util/props' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/util/propTypes' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/util/propTypesSort' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/util/propWrapper' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/util/usedPropTypes' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/util/variable' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'eslint-plugin-react/lib/util/version' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'eslint-plugin-react/index' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/index.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/boolean-prop-naming.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/boolean-prop-naming'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/button-has-type.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/button-has-type'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/default-props-match-prop-types.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/default-props-match-prop-types'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/destructuring-assignment.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/destructuring-assignment'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/display-name.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/display-name'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/forbid-component-props.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/forbid-component-props'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/forbid-dom-props.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/forbid-dom-props'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/forbid-elements.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/forbid-elements'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/forbid-foreign-prop-types.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/forbid-foreign-prop-types'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/forbid-prop-types.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/forbid-prop-types'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-boolean-value.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-boolean-value'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-child-element-spacing.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-child-element-spacing'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-closing-bracket-location.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-closing-bracket-location'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-closing-tag-location.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-closing-tag-location'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-curly-brace-presence.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-curly-brace-presence'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-curly-newline.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-curly-newline'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-curly-spacing.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-curly-spacing'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-equals-spacing.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-equals-spacing'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-filename-extension.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-filename-extension'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-first-prop-new-line.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-first-prop-new-line'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-fragments.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-fragments'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-handler-names.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-handler-names'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-indent-props.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-indent-props'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-indent.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-indent'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-key.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-key'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-max-depth.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-max-depth'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-max-props-per-line.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-max-props-per-line'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-no-bind.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-no-bind'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-no-comment-textnodes.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-no-comment-textnodes'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-no-duplicate-props.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-no-duplicate-props'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-no-literals.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-no-literals'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-no-target-blank.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-no-target-blank'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-no-undef.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-no-undef'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-no-useless-fragment.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-no-useless-fragment'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-one-expression-per-line.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-one-expression-per-line'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-pascal-case.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-pascal-case'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-props-no-multi-spaces.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-props-no-multi-spaces'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-props-no-spreading.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-props-no-spreading'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-sort-default-props.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-sort-default-props'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-sort-props.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-sort-props'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-space-before-closing.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-space-before-closing'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-tag-spacing.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-tag-spacing'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-uses-react.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-uses-react'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-uses-vars.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-uses-vars'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/jsx-wrap-multilines.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-wrap-multilines'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/no-access-state-in-setstate.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-access-state-in-setstate'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/no-array-index-key.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-array-index-key'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/no-children-prop.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-children-prop'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/no-danger-with-children.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-danger-with-children'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/no-danger.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-danger'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/no-deprecated.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-deprecated'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/no-did-mount-set-state.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-did-mount-set-state'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/no-did-update-set-state.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-did-update-set-state'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/no-direct-mutation-state.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-direct-mutation-state'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/no-find-dom-node.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-find-dom-node'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/no-is-mounted.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-is-mounted'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/no-multi-comp.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-multi-comp'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/no-redundant-should-component-update.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-redundant-should-component-update'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/no-render-return-value.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-render-return-value'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/no-set-state.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-set-state'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/no-string-refs.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-string-refs'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/no-this-in-sfc.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-this-in-sfc'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/no-typos.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-typos'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/no-unescaped-entities.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-unescaped-entities'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/no-unknown-property.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-unknown-property'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/no-unsafe.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-unsafe'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/no-unused-prop-types.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-unused-prop-types'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/no-unused-state.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-unused-state'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/no-will-update-set-state.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-will-update-set-state'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/prefer-es6-class.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/prefer-es6-class'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/prefer-read-only-props.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/prefer-read-only-props'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/prefer-stateless-function.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/prefer-stateless-function'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/prop-types.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/prop-types'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/react-in-jsx-scope.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/react-in-jsx-scope'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/require-default-props.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/require-default-props'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/require-optimization.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/require-optimization'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/require-render-return.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/require-render-return'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/self-closing-comp.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/self-closing-comp'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/sort-comp.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/sort-comp'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/sort-prop-types.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/sort-prop-types'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/state-in-constructor.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/state-in-constructor'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/static-property-placement.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/static-property-placement'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/style-prop-object.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/style-prop-object'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/rules/void-dom-elements-no-children.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/rules/void-dom-elements-no-children'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/util/annotations.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/util/annotations'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/util/ast.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/util/ast'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/util/Components.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/util/Components'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/util/defaultProps.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/util/defaultProps'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/util/docsUrl.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/util/docsUrl'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/util/error.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/util/error'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/util/getTokenBeforeClosingBracket.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/util/getTokenBeforeClosingBracket'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/util/jsx.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/util/jsx'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/util/linkComponents.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/util/linkComponents'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/util/log.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/util/log'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/util/makeNoMethodSetStateRule.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/util/makeNoMethodSetStateRule'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/util/pragma.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/util/pragma'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/util/props.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/util/props'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/util/propTypes.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/util/propTypes'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/util/propTypesSort.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/util/propTypesSort'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/util/propWrapper.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/util/propWrapper'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/util/usedPropTypes.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/util/usedPropTypes'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/util/variable.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/util/variable'>;
|
||||
}
|
||||
declare module 'eslint-plugin-react/lib/util/version.js' {
|
||||
declare module.exports: $Exports<'eslint-plugin-react/lib/util/version'>;
|
||||
}
|
File diff suppressed because it is too large
Load Diff
|
@ -1,52 +0,0 @@
|
|||
// flow-typed signature: e0b11cd98817d59fdc9ed07230d34dde
|
||||
// flow-typed version: <<STUB>>/ethereum-ens_v0.7.8/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'ethereum-ens'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'ethereum-ens' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'ethereum-ens/src/abi' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'ethereum-ens/src/utils' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'ethereum-ens/test/test' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'ethereum-ens/index' {
|
||||
declare module.exports: $Exports<'ethereum-ens'>;
|
||||
}
|
||||
declare module 'ethereum-ens/index.js' {
|
||||
declare module.exports: $Exports<'ethereum-ens'>;
|
||||
}
|
||||
declare module 'ethereum-ens/src/abi.js' {
|
||||
declare module.exports: $Exports<'ethereum-ens/src/abi'>;
|
||||
}
|
||||
declare module 'ethereum-ens/src/utils.js' {
|
||||
declare module.exports: $Exports<'ethereum-ens/src/utils'>;
|
||||
}
|
||||
declare module 'ethereum-ens/test/test.js' {
|
||||
declare module.exports: $Exports<'ethereum-ens/test/test'>;
|
||||
}
|
|
@ -1,51 +0,0 @@
|
|||
// flow-typed signature: b52c55ca142d1df418c7dbd93ead2542
|
||||
// flow-typed version: <<STUB>>/ethereumjs-abi_v0.6.8/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'ethereumjs-abi'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'ethereumjs-abi' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'ethereumjs-abi/lib' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'ethereumjs-abi/test' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'ethereumjs-abi/index' {
|
||||
declare module.exports: $Exports<'ethereumjs-abi'>;
|
||||
}
|
||||
declare module 'ethereumjs-abi/index.js' {
|
||||
declare module.exports: $Exports<'ethereumjs-abi'>;
|
||||
}
|
||||
declare module 'ethereumjs-abi/lib/index' {
|
||||
declare module.exports: $Exports<'ethereumjs-abi/lib'>;
|
||||
}
|
||||
declare module 'ethereumjs-abi/lib/index.js' {
|
||||
declare module.exports: $Exports<'ethereumjs-abi/lib'>;
|
||||
}
|
||||
declare module 'ethereumjs-abi/test/index' {
|
||||
declare module.exports: $Exports<'ethereumjs-abi/test'>;
|
||||
}
|
||||
declare module 'ethereumjs-abi/test/index.js' {
|
||||
declare module.exports: $Exports<'ethereumjs-abi/test'>;
|
||||
}
|
|
@ -1,77 +0,0 @@
|
|||
// flow-typed signature: 8b8417e7ecafba32ce660dbd1c1a8f8c
|
||||
// flow-typed version: <<STUB>>/extract-text-webpack-plugin_v^4.0.0-beta.0/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'extract-text-webpack-plugin'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'extract-text-webpack-plugin' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'extract-text-webpack-plugin/dist/cjs' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'extract-text-webpack-plugin/dist' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'extract-text-webpack-plugin/dist/lib/ExtractedModule' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'extract-text-webpack-plugin/dist/lib/ExtractTextPluginCompilation' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'extract-text-webpack-plugin/dist/lib/helpers' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'extract-text-webpack-plugin/dist/lib/OrderUndefinedError' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'extract-text-webpack-plugin/dist/loader' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'extract-text-webpack-plugin/dist/cjs.js' {
|
||||
declare module.exports: $Exports<'extract-text-webpack-plugin/dist/cjs'>;
|
||||
}
|
||||
declare module 'extract-text-webpack-plugin/dist/index' {
|
||||
declare module.exports: $Exports<'extract-text-webpack-plugin/dist'>;
|
||||
}
|
||||
declare module 'extract-text-webpack-plugin/dist/index.js' {
|
||||
declare module.exports: $Exports<'extract-text-webpack-plugin/dist'>;
|
||||
}
|
||||
declare module 'extract-text-webpack-plugin/dist/lib/ExtractedModule.js' {
|
||||
declare module.exports: $Exports<'extract-text-webpack-plugin/dist/lib/ExtractedModule'>;
|
||||
}
|
||||
declare module 'extract-text-webpack-plugin/dist/lib/ExtractTextPluginCompilation.js' {
|
||||
declare module.exports: $Exports<'extract-text-webpack-plugin/dist/lib/ExtractTextPluginCompilation'>;
|
||||
}
|
||||
declare module 'extract-text-webpack-plugin/dist/lib/helpers.js' {
|
||||
declare module.exports: $Exports<'extract-text-webpack-plugin/dist/lib/helpers'>;
|
||||
}
|
||||
declare module 'extract-text-webpack-plugin/dist/lib/OrderUndefinedError.js' {
|
||||
declare module.exports: $Exports<'extract-text-webpack-plugin/dist/lib/OrderUndefinedError'>;
|
||||
}
|
||||
declare module 'extract-text-webpack-plugin/dist/loader.js' {
|
||||
declare module.exports: $Exports<'extract-text-webpack-plugin/dist/loader'>;
|
||||
}
|
|
@ -1,42 +0,0 @@
|
|||
// flow-typed signature: 83c28d49723c12d7cc81f48a33395013
|
||||
// flow-typed version: <<STUB>>/file-loader_v5.0.2/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'file-loader'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'file-loader' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'file-loader/dist/cjs' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'file-loader/dist' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'file-loader/dist/cjs.js' {
|
||||
declare module.exports: $Exports<'file-loader/dist/cjs'>;
|
||||
}
|
||||
declare module 'file-loader/dist/index' {
|
||||
declare module.exports: $Exports<'file-loader/dist'>;
|
||||
}
|
||||
declare module 'file-loader/dist/index.js' {
|
||||
declare module.exports: $Exports<'file-loader/dist'>;
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
// flow-typed signature: 28fdff7f110e1c75efab63ff205dda30
|
||||
// flow-typed version: c6154227d1/flow-bin_v0.x.x/flow_>=v0.104.x
|
||||
|
||||
declare module "flow-bin" {
|
||||
declare module.exports: string;
|
||||
}
|
|
@ -1,39 +0,0 @@
|
|||
// flow-typed signature: 257f7edaf77fffda41b532e22c147355
|
||||
// flow-typed version: <<STUB>>/fortmatic_v^1.0.1/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'fortmatic'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'fortmatic' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'fortmatic/dist/fortmatic' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fortmatic/lib/fortmatic' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'fortmatic/dist/fortmatic.js' {
|
||||
declare module.exports: $Exports<'fortmatic/dist/fortmatic'>;
|
||||
}
|
||||
declare module 'fortmatic/lib/fortmatic.js' {
|
||||
declare module.exports: $Exports<'fortmatic/lib/fortmatic'>;
|
||||
}
|
|
@ -1,288 +0,0 @@
|
|||
// flow-typed signature: d673dfd0f3d18cf6b7081fad3cb382d5
|
||||
// flow-typed version: <<STUB>>/fs-extra_v8.1.0/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'fs-extra'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'fs-extra' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'fs-extra/lib/copy-sync/copy-sync' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/copy-sync' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/copy/copy' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/copy' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/empty' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/ensure/file' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/ensure' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/ensure/link' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/ensure/symlink-paths' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/ensure/symlink-type' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/ensure/symlink' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/fs' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/json' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/json/jsonfile' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/json/output-json-sync' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/json/output-json' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/mkdirs' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/mkdirs/mkdirs-sync' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/mkdirs/mkdirs' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/mkdirs/win32' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/move-sync' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/move-sync/move-sync' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/move' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/move/move' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/output' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/path-exists' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/remove' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/remove/rimraf' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/util/buffer' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/util/stat' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'fs-extra/lib/util/utimes' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'fs-extra/lib/copy-sync/copy-sync.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/copy-sync/copy-sync'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/copy-sync/index' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/copy-sync'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/copy-sync/index.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/copy-sync'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/copy/copy.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/copy/copy'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/copy/index' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/copy'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/copy/index.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/copy'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/empty/index' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/empty'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/empty/index.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/empty'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/ensure/file.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/ensure/file'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/ensure/index' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/ensure'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/ensure/index.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/ensure'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/ensure/link.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/ensure/link'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/ensure/symlink-paths.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/ensure/symlink-paths'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/ensure/symlink-type.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/ensure/symlink-type'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/ensure/symlink.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/ensure/symlink'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/fs/index' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/fs'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/fs/index.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/fs'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/index' {
|
||||
declare module.exports: $Exports<'fs-extra/lib'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/index.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/json/index' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/json'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/json/index.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/json'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/json/jsonfile.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/json/jsonfile'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/json/output-json-sync.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/json/output-json-sync'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/json/output-json.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/json/output-json'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/mkdirs/index' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/mkdirs'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/mkdirs/index.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/mkdirs'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/mkdirs/mkdirs-sync.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/mkdirs/mkdirs-sync'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/mkdirs/mkdirs.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/mkdirs/mkdirs'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/mkdirs/win32.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/mkdirs/win32'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/move-sync/index' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/move-sync'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/move-sync/index.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/move-sync'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/move-sync/move-sync.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/move-sync/move-sync'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/move/index' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/move'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/move/index.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/move'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/move/move.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/move/move'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/output/index' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/output'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/output/index.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/output'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/path-exists/index' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/path-exists'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/path-exists/index.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/path-exists'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/remove/index' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/remove'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/remove/index.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/remove'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/remove/rimraf.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/remove/rimraf'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/util/buffer.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/util/buffer'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/util/stat.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/util/stat'>;
|
||||
}
|
||||
declare module 'fs-extra/lib/util/utimes.js' {
|
||||
declare module.exports: $Exports<'fs-extra/lib/util/utimes'>;
|
||||
}
|
|
@ -1,109 +0,0 @@
|
|||
// flow-typed signature: 90337b03d736e9bdaa68004c36c4d3ee
|
||||
// flow-typed version: 51319746df/history_v4.10.x/flow_>=v0.104.x
|
||||
|
||||
declare module 'history' {
|
||||
declare type Unregister = () => void;
|
||||
|
||||
declare export type Action = 'PUSH' | 'REPLACE' | 'POP';
|
||||
|
||||
declare export type Location = {|
|
||||
pathname: string,
|
||||
search: string,
|
||||
hash: string,
|
||||
state: { ... },
|
||||
key: string,
|
||||
|};
|
||||
|
||||
declare type History<HistoryLocation = Location> = {|
|
||||
length: number,
|
||||
location: HistoryLocation,
|
||||
action: Action,
|
||||
push: ((path: string, state?: { ... }) => void) &
|
||||
((location: $Shape<HistoryLocation>) => void),
|
||||
replace: ((path: string, state?: { ... }) => void) &
|
||||
((location: $Shape<HistoryLocation>) => void),
|
||||
go(n: number): void,
|
||||
goBack(): void,
|
||||
goForward(): void,
|
||||
listen((location: HistoryLocation, action: Action) => void): Unregister,
|
||||
block(
|
||||
prompt:
|
||||
| string
|
||||
| boolean
|
||||
| ((location: HistoryLocation, action: Action) => string | false | void)
|
||||
): Unregister,
|
||||
createHref(location: $Shape<HistoryLocation>): string,
|
||||
|};
|
||||
|
||||
declare export type BrowserHistory = History<>;
|
||||
|
||||
declare type BrowserHistoryOpts = {|
|
||||
basename?: string,
|
||||
forceRefresh?: boolean,
|
||||
getUserConfirmation?: (
|
||||
message: string,
|
||||
callback: (willContinue: boolean) => void
|
||||
) => void,
|
||||
keyLength?: number,
|
||||
|};
|
||||
|
||||
declare function createBrowserHistory(
|
||||
opts?: BrowserHistoryOpts
|
||||
): BrowserHistory;
|
||||
|
||||
declare export type MemoryHistory = {|
|
||||
...History<>,
|
||||
index: number,
|
||||
entries: Array<string | Location>,
|
||||
canGo(n: number): boolean,
|
||||
|};
|
||||
|
||||
declare type MemoryHistoryOpts = {|
|
||||
initialEntries?: Array<string>,
|
||||
initialIndex?: number,
|
||||
keyLength?: number,
|
||||
getUserConfirmation?: (
|
||||
message: string,
|
||||
callback: (willContinue: boolean) => void
|
||||
) => void,
|
||||
|};
|
||||
|
||||
declare function createMemoryHistory(opts?: MemoryHistoryOpts): MemoryHistory;
|
||||
|
||||
declare export type HashLocation = {|
|
||||
...Location,
|
||||
state: void,
|
||||
key: void,
|
||||
|};
|
||||
|
||||
declare export type HashHistory = History<HashLocation>;
|
||||
|
||||
declare type HashHistoryOpts = {|
|
||||
basename?: string,
|
||||
hashType: 'slash' | 'noslash' | 'hashbang',
|
||||
getUserConfirmation?: (
|
||||
message: string,
|
||||
callback: (willContinue: boolean) => void
|
||||
) => void,
|
||||
|};
|
||||
|
||||
declare function createHashHistory(opts?: HashHistoryOpts): HashHistory;
|
||||
|
||||
// PathUtils
|
||||
declare function parsePath(path: string): Location;
|
||||
|
||||
declare function createPath(location: $Shape<Location>): string;
|
||||
|
||||
// LocationUtils
|
||||
declare function locationsAreEqual(
|
||||
a: $Shape<Location>,
|
||||
b: $Shape<Location>
|
||||
): boolean;
|
||||
|
||||
declare function createLocation(
|
||||
path: string | $Shape<Location>,
|
||||
state?: { ... },
|
||||
key?: string,
|
||||
currentLocation?: Location
|
||||
): Location;
|
||||
}
|
|
@ -1,38 +0,0 @@
|
|||
// flow-typed signature: 8ff6f114dee54ddc0ae229dd5370270a
|
||||
// flow-typed version: <<STUB>>/html-loader_v^0.5.5/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'html-loader'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'html-loader' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'html-loader/lib/attributesParser' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'html-loader/index' {
|
||||
declare module.exports: $Exports<'html-loader'>;
|
||||
}
|
||||
declare module 'html-loader/index.js' {
|
||||
declare module.exports: $Exports<'html-loader'>;
|
||||
}
|
||||
declare module 'html-loader/lib/attributesParser.js' {
|
||||
declare module.exports: $Exports<'html-loader/lib/attributesParser'>;
|
||||
}
|
|
@ -1,59 +0,0 @@
|
|||
// flow-typed signature: f493213d2e5599c35b47b7b845ca80ea
|
||||
// flow-typed version: <<STUB>>/html-webpack-plugin_v^3.2.0/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'html-webpack-plugin'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'html-webpack-plugin' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'html-webpack-plugin/lib/chunksorter' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'html-webpack-plugin/lib/compiler' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'html-webpack-plugin/lib/errors' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'html-webpack-plugin/lib/loader' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'html-webpack-plugin/index' {
|
||||
declare module.exports: $Exports<'html-webpack-plugin'>;
|
||||
}
|
||||
declare module 'html-webpack-plugin/index.js' {
|
||||
declare module.exports: $Exports<'html-webpack-plugin'>;
|
||||
}
|
||||
declare module 'html-webpack-plugin/lib/chunksorter.js' {
|
||||
declare module.exports: $Exports<'html-webpack-plugin/lib/chunksorter'>;
|
||||
}
|
||||
declare module 'html-webpack-plugin/lib/compiler.js' {
|
||||
declare module.exports: $Exports<'html-webpack-plugin/lib/compiler'>;
|
||||
}
|
||||
declare module 'html-webpack-plugin/lib/errors.js' {
|
||||
declare module.exports: $Exports<'html-webpack-plugin/lib/errors'>;
|
||||
}
|
||||
declare module 'html-webpack-plugin/lib/loader.js' {
|
||||
declare module.exports: $Exports<'html-webpack-plugin/lib/loader'>;
|
||||
}
|
|
@ -1,91 +0,0 @@
|
|||
// flow-typed signature: 31fcec9a50e7373fa86d8050c505b6e4
|
||||
// flow-typed version: <<STUB>>/immortal-db_v^1.0.2/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'immortal-db'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'immortal-db' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'immortal-db/dist/immortal-db' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'immortal-db/dist/immortal-db.min' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'immortal-db/src/cookie-store' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'immortal-db/src' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'immortal-db/src/indexed-db' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'immortal-db/src/web-storage' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'immortal-db/testing/safari-cross-origin-iframe/iframe' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'immortal-db/testing/test' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
declare module 'immortal-db/webpack.config' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'immortal-db/dist/immortal-db.js' {
|
||||
declare module.exports: $Exports<'immortal-db/dist/immortal-db'>;
|
||||
}
|
||||
declare module 'immortal-db/dist/immortal-db.min.js' {
|
||||
declare module.exports: $Exports<'immortal-db/dist/immortal-db.min'>;
|
||||
}
|
||||
declare module 'immortal-db/src/cookie-store.js' {
|
||||
declare module.exports: $Exports<'immortal-db/src/cookie-store'>;
|
||||
}
|
||||
declare module 'immortal-db/src/index' {
|
||||
declare module.exports: $Exports<'immortal-db/src'>;
|
||||
}
|
||||
declare module 'immortal-db/src/index.js' {
|
||||
declare module.exports: $Exports<'immortal-db/src'>;
|
||||
}
|
||||
declare module 'immortal-db/src/indexed-db.js' {
|
||||
declare module.exports: $Exports<'immortal-db/src/indexed-db'>;
|
||||
}
|
||||
declare module 'immortal-db/src/web-storage.js' {
|
||||
declare module.exports: $Exports<'immortal-db/src/web-storage'>;
|
||||
}
|
||||
declare module 'immortal-db/testing/safari-cross-origin-iframe/iframe.js' {
|
||||
declare module.exports: $Exports<'immortal-db/testing/safari-cross-origin-iframe/iframe'>;
|
||||
}
|
||||
declare module 'immortal-db/testing/test.js' {
|
||||
declare module.exports: $Exports<'immortal-db/testing/test'>;
|
||||
}
|
||||
declare module 'immortal-db/webpack.config.js' {
|
||||
declare module.exports: $Exports<'immortal-db/webpack.config'>;
|
||||
}
|
|
@ -1,38 +0,0 @@
|
|||
// flow-typed signature: 0b5bee3ca75fb6f398d23a175dba4f0a
|
||||
// flow-typed version: <<STUB>>/jest-dom_v4.0.0/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'jest-dom'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'jest-dom' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
declare module 'jest-dom/extend-expect' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
// Filename aliases
|
||||
declare module 'jest-dom/extend-expect.js' {
|
||||
declare module.exports: $Exports<'jest-dom/extend-expect'>;
|
||||
}
|
||||
declare module 'jest-dom/index' {
|
||||
declare module.exports: $Exports<'jest-dom'>;
|
||||
}
|
||||
declare module 'jest-dom/index.js' {
|
||||
declare module.exports: $Exports<'jest-dom'>;
|
||||
}
|
File diff suppressed because it is too large
Load Diff
|
@ -1,30 +0,0 @@
|
|||
// flow-typed signature: a23fa96dc9c75f8931650efff45badee
|
||||
// flow-typed version: c6154227d1/js-cookie_v2.x.x/flow_>=v0.104.x
|
||||
|
||||
declare module 'js-cookie' {
|
||||
declare type CookieOptions = {
|
||||
expires?: number | Date,
|
||||
path?: string,
|
||||
domain?: string,
|
||||
secure?: boolean,
|
||||
...
|
||||
}
|
||||
declare type ConverterFunc = (value: string, name: string) => string;
|
||||
declare type ConverterObj = {
|
||||
read: ConverterFunc,
|
||||
write: ConverterFunc,
|
||||
...
|
||||
};
|
||||
declare class Cookie {
|
||||
defaults: CookieOptions;
|
||||
set(name: string, value: mixed, options?: CookieOptions): void;
|
||||
get(...args: Array<void>): { [key: string]: string, ... };
|
||||
get(name: string, ...args: Array<void>): string | void;
|
||||
remove(name: string, options?: CookieOptions): void;
|
||||
getJSON(name: string): Object;
|
||||
withConverter(converter: ConverterFunc | ConverterObj): this;
|
||||
noConflict(): this;
|
||||
}
|
||||
|
||||
declare module.exports: Cookie;
|
||||
}
|
|
@ -1,33 +0,0 @@
|
|||
// flow-typed signature: 6af945eafe807b768a76da0ecf58021f
|
||||
// flow-typed version: <<STUB>>/json-loader_v^0.5.7/flow_v0.114.0
|
||||
|
||||
/**
|
||||
* This is an autogenerated libdef stub for:
|
||||
*
|
||||
* 'json-loader'
|
||||
*
|
||||
* Fill this stub out by replacing all the `any` types.
|
||||
*
|
||||
* Once filled out, we encourage you to share your work with the
|
||||
* community by sending a pull request to:
|
||||
* https://github.com/flowtype/flow-typed
|
||||
*/
|
||||
|
||||
declare module 'json-loader' {
|
||||
declare module.exports: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* We include stubs for each file inside this npm package in case you need to
|
||||
* require those files directly. Feel free to delete any files that aren't
|
||||
* needed.
|
||||
*/
|
||||
|
||||
|
||||
// Filename aliases
|
||||
declare module 'json-loader/index' {
|
||||
declare module.exports: $Exports<'json-loader'>;
|
||||
}
|
||||
declare module 'json-loader/index.js' {
|
||||
declare module.exports: $Exports<'json-loader'>;
|
||||
}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue