diff --git a/.babelrc b/.babelrc deleted file mode 100644 index 559dd9ef..00000000 --- a/.babelrc +++ /dev/null @@ -1,10 +0,0 @@ -{ - "presets": [ - ["env", { - "targets": { - "electron": "8" - } - }], - "react" - ] -} diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..8749cf01 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,29 @@ +root = true + +[*] +indent_style = space +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.scss] +indent_size = 2 + +[*.js] +indent_size = 2 + +[*.jsx] +indent_size = 2 + +[*.ts] +indent_size = 2 + +[*.tsx] +indent_size = 2 + +[*.vue] +indent_size = 2 + +[Makefile] +indent_style = tab diff --git a/.eslintignore b/.eslintignore new file mode 100644 index 00000000..cb76b315 --- /dev/null +++ b/.eslintignore @@ -0,0 +1 @@ +resources/ diff --git a/.eslintrc b/.eslintrc deleted file mode 100644 index 5a136e2d..00000000 --- a/.eslintrc +++ /dev/null @@ -1,53 +0,0 @@ -{ - "rules": { - "unicorn/prevent-abbreviations": [ - "error", - { - "whitelist": { - "Props": true, - "props": true, - "getInitialProps": true, - "mapStateToProps": true - } - } - ], - "unicorn/no-reduce": [0], - "sonarjs/cognitive-complexity": ["error", 30], - "react/jsx-props-no-spreading": [0], - "react/require-default-props": [1, { "ignoreFunctionalComponents": true }], - "import/no-extraneous-dependencies": [2, { "devDependencies": true }], - "react/static-property-placement": [0], - "react/jsx-filename-extension": [1, { "extensions": [".js"] }], - "react/forbid-prop-types": [0], - "import/prefer-default-export": [0], - "no-restricted-syntax": [0], - "no-void": [0], - "camelcase": [0], - "linebreak-style": [0] - }, - "parser": "babel-eslint", - "extends": [ - "airbnb", - "airbnb/hooks", - "standard", - "plugin:flowtype/recommended", - "plugin:react/recommended", - "plugin:react-hooks/recommended", - "plugin:unicorn/recommended", - "prettier", - "prettier/flowtype", - "prettier/react", - "prettier/standard", - "prettier/unicorn", - "plugin:import/errors", - "plugin:import/warnings", - "plugin:promise/recommended", - "plugin:sonarjs/recommended" - ], - "plugins": ["flowtype", "prettier", "react", "html", "unicorn", "import", "react-hooks", "jsx-a11y", "sonarjs"], - "globals": { - "window": true, - "document": true, - "fetch": true - } -} diff --git a/.eslintrc.js b/.eslintrc.js new file mode 100644 index 00000000..2be3eba4 --- /dev/null +++ b/.eslintrc.js @@ -0,0 +1,93 @@ +module.exports = { + parser: '@typescript-eslint/parser', + parserOptions: { + project: './tsconfig.eslint.json', + tsconfigRootDir: __dirname, + sourceType: 'module', + ecmaFeatures: { + jsx: true, + }, + }, + settings: { + react: { + version: '16.13.1', + }, + 'import/resolver': { + node: { + extensions: ['.js', '.jsx', '.ts', '.tsx'], + }, + typescript: { + alwaysTryTypes: true, + }, + alias: { + map: [ + ['@', './src'], + ['@services', './src/services'], + ], + extensions: ['.js', '.jsx', '.ts', '.tsx'], + }, + }, + }, + rules: { + 'unicorn/prevent-abbreviations': [ + 'error', + { + whitelist: { + mod: true, + Mod: true, + props: true, + Props: true, + }, + }, + ], + '@typescript-eslint/member-delimiter-style': [ + 'warn', + { + multiline: { + delimiter: 'semi', // 'none' or 'semi' or 'comma' + requireLast: true, + }, + singleline: { + delimiter: 'semi', // 'semi' or 'comma' + requireLast: false, + }, + }, + ], + 'comma-dangle': [2, 'always-multiline'], + 'no-undef': 'off', + 'unicorn/filename-case': [ + 0, + { + case: 'camelCase', + ignore: [/tsx$/], + }, + ], + 'unicorn/consistent-function-scoping': [0], + 'no-void': [0], + 'no-use-before-define': [0], + '@typescript-eslint/no-use-before-define': [1], + }, + extends: [ + 'eslint:recommended', + 'standard', + 'plugin:react/recommended', + 'plugin:unicorn/recommended', + 'plugin:prettier/recommended', + 'prettier/react', + 'prettier/standard', + 'prettier/unicorn', + 'standard-with-typescript', + 'plugin:@typescript-eslint/eslint-recommended', + 'plugin:@typescript-eslint/recommended', + 'plugin:@typescript-eslint/recommended-requiring-type-checking', + 'prettier/@typescript-eslint', + 'plugin:import/errors', + 'plugin:import/warnings', + 'plugin:import/typescript', + ], + plugins: ['@typescript-eslint/eslint-plugin', 'prettier', 'react', 'html', 'babel', 'react', 'unicorn', 'import'], + env: { + browser: true, + es6: true, + }, +}; diff --git a/.gitignore b/.gitignore index 8861d077..79cd1404 100644 --- a/.gitignore +++ b/.gitignore @@ -56,3 +56,7 @@ template/wiki/tiddlers/$__StoryList.tid template/wiki/public-dist/ template/wiki/output/ template/wiki/settings/settings.json + +# web build +.webpack +out/ diff --git a/.prettierrc b/.prettierrc deleted file mode 100644 index ca5ce565..00000000 --- a/.prettierrc +++ /dev/null @@ -1,8 +0,0 @@ -{ - "semi": true, - "singleQuote": true, - "tabWidth": 2, - "trailingComma": "all", - "printWidth": 120, - "useTabs": false -} diff --git a/.prettierrc.js b/.prettierrc.js new file mode 100644 index 00000000..0a80b25a --- /dev/null +++ b/.prettierrc.js @@ -0,0 +1,13 @@ +module.exports = { + semi: true, + singleQuote: true, + tabWidth: 2, + trailingComma: 'all', + printWidth: 140, + arrowParens: 'always', + jsxBracketSameLine: true, + jsxSingleQuote: false, + quoteProps: 'as-needed', + bracketSpacing: true, + useTabs: false, +}; diff --git a/dist.js b/dist.js deleted file mode 100644 index 2bd335f6..00000000 --- a/dist.js +++ /dev/null @@ -1,241 +0,0 @@ -/* eslint-disable no-console */ -const builder = require('electron-builder'); -const { notarize } = require('electron-notarize'); -const semver = require('semver'); -const { exec } = require('child_process'); - -const packageJson = require('./package.json'); - -const { Arch, Platform } = builder; - -// sometimes, notarization works but *.app does not have a ticket stapled to it -// this ensure the *.app has the notarization ticket -const verifyNotarizationAsync = filePath => - new Promise((resolve, reject) => { - // eslint-disable-next-line no-console - console.log(`xcrun stapler validate ${filePath.replace(/ /g, '\\ ')}`); - - exec(`xcrun stapler validate ${filePath.replace(/ /g, '\\ ')}`, (e, stdout, stderr) => { - if (e instanceof Error) { - reject(e); - return; - } - - if (stderr) { - reject(new Error(stderr)); - return; - } - - if (stdout.includes('The validate action worked!')) { - resolve(stdout); - } else { - reject(new Error(stdout)); - } - }); - }); - -console.log(`Machine: ${process.platform}`); - -let targets; -switch (process.platform) { - case 'darwin': { - targets = Platform.MAC.createTarget(); - break; - } - case 'win32': { - targets = Platform.WINDOWS.createTarget(['nsis'], Arch.x64); - break; - } - default: - case 'linux': { - targets = Platform.LINUX.createTarget(['AppImage', 'snap'], Arch.x64); - break; - } -} - -/** - * exclude file from asar and unpack them - * Should also exclude them https://github.com/electron-userland/electron-builder/issues/2290 - */ -const excludedFiles = [ - // add dependencies of tiddlywiki here - // https://github.com/electron/electron/issues/18540#issuecomment-660679649 - // tiddlywiki in the worker_thread - '**/node_modules/@tiddlygit/tiddlywiki/**/*', - // dep of dugite, asar unpack it so we can solve https://github.com/desktop/dugite/issues/414 - // '**/node_modules/dugite/**/*', - // '**/node_modules/rimraf/**/*', - // '**/node_modules/progress/**/*', - // '**/node_modules/mkdirp/**/*', - // '**/node_modules/minimist/**/*', - // '**/node_modules/glob/**/*', - // '**/node_modules/checksum/**/*', - // '**/node_modules/got/**/*', - // '**/node_modules/tar/**/*', - // '**/node_modules/fs.realpath/**/*', - // '**/node_modules/inflight/**/*', - // '**/node_modules/path-is-absolute/**/*', - // '**/node_modules/optimist/**/*', - // '**/node_modules/minimatch/**/*', - // '**/node_modules/inherits/**/*', - // '**/node_modules/@sindresorhus/is/**/*', - // '**/node_modules/@szmarczak/http-timer/**/*', - // '**/node_modules/decompress-response/**/*', - // '**/node_modules/duplexer3/**/*', - // '**/node_modules/cacheable-request/**/*', - // '**/node_modules/get-stream/**/*', - // '**/node_modules/lowercase-keys/**/*', - // '**/node_modules/mimic-response/**/*', - // '**/node_modules/p-cancelable/**/*', - // '**/node_modules/to-readable-stream/**/*', - // '**/node_modules/url-parse-lax/**/*', - // '**/node_modules/fs-minipass/**/*', - // '**/node_modules/chownr/**/*', - // '**/node_modules/safe-buffer/**/*', - // '**/node_modules/once/**/*', - // '**/node_modules/minizlib/**/*', - // '**/node_modules/wrappy/**/*', - // '**/node_modules/wordwrap/**/*', - // '**/node_modules/defer-to-connect/**/*', - // '**/node_modules/minipass/**/*', - // '**/node_modules/clone-response/**/*', - // '**/node_modules/get-stream/**/*', - // '**/node_modules/http-cache-semantics/**/*', - // '**/node_modules/keyv/**/*', - // '**/node_modules/lowercase-keys/**/*', - // '**/node_modules/brace-expansion/**/*', - // '**/node_modules/responselike/**/*', - // '**/node_modules/pump/**/*', - // '**/node_modules/normalize-url/**/*', - // '**/node_modules/yallist/**/*', - // '**/node_modules/json-buffer/**/*', - // '**/node_modules/balanced-match/**/*', - // '**/node_modules/concat-map/**/*', - // '**/node_modules/prepend-http/**/*', - // '**/node_modules/end-of-stream/**/*', - // // deps of electron-settings - // '**/node_modules/electron-settings/**/*', - // '**/node_modules/lodash.get/**/*', - // '**/node_modules/lodash.set/**/*', - // '**/node_modules/write-file-atomic/**/*', - // '**/node_modules/lodash.has/**/*', - // '**/node_modules/lodash.unset/**/*', - // '**/node_modules/is-typedarray/**/*', - // '**/node_modules/signal-exit/**/*', - // '**/node_modules/imurmurhash/**/*', - // '**/node_modules/typedarray-to-buffer/**/*', -]; - -const options = { - targets, - config: { - appId: 'com.tiddlygit.app', - productName: 'TiddlyGit', - asar: true, - extraFiles: [ - { - from: 'template/wiki', - to: 'wiki', - filter: ['**/*'], - }, - { - from: 'localization', - to: 'localization', - filter: ['**/*'], - }, - ], - asarUnpack: excludedFiles, - files: [ - '!tests/**/*', - '!docs/**/*', - '!template/**/*', - '!flow-typed/**/*', - '!localization/**/*', - // ...excludedFiles.map(pathName => `!${pathName.replace('**/', '')}`), - ], - extraResources: [ - { - from: 'public/libs/wiki/wiki-worker.js', - to: 'app.asar.unpacked/wiki-worker.js', - }, - ...excludedFiles.map(pathName => ({ - from: pathName.replace('**/', '').replace('/**/*', ''), - to: `app.asar.unpacked/${pathName.replace('**/', '').replace('/**/*', '')}`, - filter: ['**/*'], - })) - ], - protocols: [ - { - name: 'HTTPS Protocol', - schemes: ['https'], - }, - { - name: 'HTTP Protocol', - schemes: ['http'], - }, - { - name: 'Mailto Protocol', - schemes: ['mailto'], - }, - ], - directories: { - buildResources: 'build-resources', - }, - mac: { - category: 'public.app-category.productivity', - hardenedRuntime: true, - gatekeeperAssess: false, - entitlements: 'build-resources/entitlements.mac.plist', - entitlementsInherit: 'build-resources/entitlements.mac.plist', - darkModeSupport: true, - }, - linux: { - category: 'Utility', - packageCategory: 'utils', - }, - snap: { - publish: [ - { - provider: 'snapStore', - channels: [semver.prerelease(packageJson.version) ? 'edge' : 'stable'], - }, - 'github', - ], - }, - afterSign: context => { - return null; - const shouldNotarize = - process.platform === 'darwin' && context.electronPlatformName === 'darwin' && process.env.CI_BUILD_TAG; - if (!shouldNotarize) return null; - - console.log('Notarizing app...'); - // https://kilianvalkhof.com/2019/electron/notarizing-your-electron-application/ - const { appOutDir } = context; - - const appName = context.packager.appInfo.productFilename; - const appPath = `${appOutDir}/${appName}.app`; - - return notarize({ - appBundleId: 'com.tiddlygit.app', - appPath, - appleId: process.env.APPLE_ID, - appleIdPassword: process.env.APPLE_ID_PASSWORD, - }) - .then(() => verifyNotarizationAsync(appPath)) - .then(notarizedInfo => { - // eslint-disable-next-line no-console - console.log(notarizedInfo); - }); - }, - }, -}; - -builder - .build(options) - .then(() => { - console.log('build successful'); - }) - .catch(error => { - console.log(error); - process.exit(1); - }); diff --git a/flow-typed/npm/@authing/sso_vx.x.x.js b/flow-typed/npm/@authing/sso_vx.x.x.js deleted file mode 100644 index dbe1819a..00000000 --- a/flow-typed/npm/@authing/sso_vx.x.x.js +++ /dev/null @@ -1,105 +0,0 @@ -// flow-typed signature: 31c868ba5d23c9c95108163f84e099da -// flow-typed version: <>/@authing/sso_v1.6.0/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * '@authing/sso' - * - * 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 '@authing/sso' { - 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 '@authing/sso/babel.config' { - declare module.exports: any; -} - -declare module '@authing/sso/dist/AuthingSSO.common' { - declare module.exports: any; -} - -declare module '@authing/sso/dist/AuthingSSO.umd' { - declare module.exports: any; -} - -declare module '@authing/sso/dist/AuthingSSO.umd.min' { - declare module.exports: any; -} - -declare module '@authing/sso/src/lib/gql/queryOAuthAppInfoByAppID' { - declare module.exports: any; -} - -declare module '@authing/sso/src/lib/gql/queryOIDCAppInfoByAppID' { - declare module.exports: any; -} - -declare module '@authing/sso/src/lib/gql/querySAMLServiceProviderInfoByAppID' { - declare module.exports: any; -} - -declare module '@authing/sso/src/lib/graphql' { - declare module.exports: any; -} - -declare module '@authing/sso/src/lib' { - declare module.exports: any; -} - -declare module '@authing/sso/src/main' { - declare module.exports: any; -} - -declare module '@authing/sso/vue.config' { - declare module.exports: any; -} - -// Filename aliases -declare module '@authing/sso/babel.config.js' { - declare module.exports: $Exports<'@authing/sso/babel.config'>; -} -declare module '@authing/sso/dist/AuthingSSO.common.js' { - declare module.exports: $Exports<'@authing/sso/dist/AuthingSSO.common'>; -} -declare module '@authing/sso/dist/AuthingSSO.umd.js' { - declare module.exports: $Exports<'@authing/sso/dist/AuthingSSO.umd'>; -} -declare module '@authing/sso/dist/AuthingSSO.umd.min.js' { - declare module.exports: $Exports<'@authing/sso/dist/AuthingSSO.umd.min'>; -} -declare module '@authing/sso/src/lib/gql/queryOAuthAppInfoByAppID.js' { - declare module.exports: $Exports<'@authing/sso/src/lib/gql/queryOAuthAppInfoByAppID'>; -} -declare module '@authing/sso/src/lib/gql/queryOIDCAppInfoByAppID.js' { - declare module.exports: $Exports<'@authing/sso/src/lib/gql/queryOIDCAppInfoByAppID'>; -} -declare module '@authing/sso/src/lib/gql/querySAMLServiceProviderInfoByAppID.js' { - declare module.exports: $Exports<'@authing/sso/src/lib/gql/querySAMLServiceProviderInfoByAppID'>; -} -declare module '@authing/sso/src/lib/graphql.js' { - declare module.exports: $Exports<'@authing/sso/src/lib/graphql'>; -} -declare module '@authing/sso/src/lib/index' { - declare module.exports: $Exports<'@authing/sso/src/lib'>; -} -declare module '@authing/sso/src/lib/index.js' { - declare module.exports: $Exports<'@authing/sso/src/lib'>; -} -declare module '@authing/sso/src/main.js' { - declare module.exports: $Exports<'@authing/sso/src/main'>; -} -declare module '@authing/sso/vue.config.js' { - declare module.exports: $Exports<'@authing/sso/vue.config'>; -} diff --git a/flow-typed/npm/@cliqz/adblocker-electron_vx.x.x.js b/flow-typed/npm/@cliqz/adblocker-electron_vx.x.x.js deleted file mode 100644 index fa365171..00000000 --- a/flow-typed/npm/@cliqz/adblocker-electron_vx.x.x.js +++ /dev/null @@ -1,39 +0,0 @@ -// flow-typed signature: c0be01e79fefe97972d3c4964971cf40 -// flow-typed version: <>/@cliqz/adblocker-electron_v1.18.3/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * '@cliqz/adblocker-electron' - * - * 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 '@cliqz/adblocker-electron' { - 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 '@cliqz/adblocker-electron/dist/cjs/adblocker' { - declare module.exports: any; -} - -declare module '@cliqz/adblocker-electron/dist/es6/adblocker' { - declare module.exports: any; -} - -// Filename aliases -declare module '@cliqz/adblocker-electron/dist/cjs/adblocker.js' { - declare module.exports: $Exports<'@cliqz/adblocker-electron/dist/cjs/adblocker'>; -} -declare module '@cliqz/adblocker-electron/dist/es6/adblocker.js' { - declare module.exports: $Exports<'@cliqz/adblocker-electron/dist/es6/adblocker'>; -} diff --git a/flow-typed/npm/@date-io/date-fns_vx.x.x.js b/flow-typed/npm/@date-io/date-fns_vx.x.x.js deleted file mode 100644 index 2ad27cae..00000000 --- a/flow-typed/npm/@date-io/date-fns_vx.x.x.js +++ /dev/null @@ -1,59 +0,0 @@ -// flow-typed signature: cb9d76fff9e7254a4bf1d2b334e1b0d3 -// flow-typed version: <>/@date-io/date-fns_v2.10.6/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * '@date-io/date-fns' - * - * 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 '@date-io/date-fns' { - 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 '@date-io/date-fns/build/index.esm' { - declare module.exports: any; -} - -declare module '@date-io/date-fns/build' { - declare module.exports: any; -} - -declare module '@date-io/date-fns/rollup.config' { - declare module.exports: any; -} - -declare module '@date-io/date-fns/type' { - declare module.exports: any; -} - -// Filename aliases -declare module '@date-io/date-fns/build/index.esm.js' { - declare module.exports: $Exports<'@date-io/date-fns/build/index.esm'>; -} -declare module '@date-io/date-fns/build/index' { - declare module.exports: $Exports<'@date-io/date-fns/build'>; -} -declare module '@date-io/date-fns/build/index.js' { - declare module.exports: $Exports<'@date-io/date-fns/build'>; -} -declare module '@date-io/date-fns/rollup.config.js' { - declare module.exports: $Exports<'@date-io/date-fns/rollup.config'>; -} -declare module '@date-io/date-fns/type/index' { - declare module.exports: $Exports<'@date-io/date-fns/type'>; -} -declare module '@date-io/date-fns/type/index.js' { - declare module.exports: $Exports<'@date-io/date-fns/type'>; -} diff --git a/flow-typed/npm/@material-ui/core_vx.x.x.js b/flow-typed/npm/@material-ui/core_vx.x.x.js deleted file mode 100644 index 1dc7eb46..00000000 --- a/flow-typed/npm/@material-ui/core_vx.x.x.js +++ /dev/null @@ -1,8873 +0,0 @@ -// flow-typed signature: bdf298956bb236124928ae56158dc1be -// flow-typed version: <>/@material-ui/core_v4.11.0/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * '@material-ui/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 '@material-ui/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 '@material-ui/core/Accordion/Accordion' { - declare module.exports: any; -} - -declare module '@material-ui/core/Accordion/AccordionContext' { - declare module.exports: any; -} - -declare module '@material-ui/core/Accordion' { - declare module.exports: any; -} - -declare module '@material-ui/core/AccordionActions/AccordionActions' { - declare module.exports: any; -} - -declare module '@material-ui/core/AccordionActions' { - declare module.exports: any; -} - -declare module '@material-ui/core/AccordionDetails/AccordionDetails' { - declare module.exports: any; -} - -declare module '@material-ui/core/AccordionDetails' { - declare module.exports: any; -} - -declare module '@material-ui/core/AccordionSummary/AccordionSummary' { - declare module.exports: any; -} - -declare module '@material-ui/core/AccordionSummary' { - declare module.exports: any; -} - -declare module '@material-ui/core/AppBar/AppBar' { - declare module.exports: any; -} - -declare module '@material-ui/core/AppBar' { - declare module.exports: any; -} - -declare module '@material-ui/core/Avatar/Avatar' { - declare module.exports: any; -} - -declare module '@material-ui/core/Avatar' { - declare module.exports: any; -} - -declare module '@material-ui/core/Backdrop/Backdrop' { - declare module.exports: any; -} - -declare module '@material-ui/core/Backdrop' { - declare module.exports: any; -} - -declare module '@material-ui/core/Badge/Badge' { - declare module.exports: any; -} - -declare module '@material-ui/core/Badge' { - declare module.exports: any; -} - -declare module '@material-ui/core/BottomNavigation/BottomNavigation' { - declare module.exports: any; -} - -declare module '@material-ui/core/BottomNavigation' { - declare module.exports: any; -} - -declare module '@material-ui/core/BottomNavigationAction/BottomNavigationAction' { - declare module.exports: any; -} - -declare module '@material-ui/core/BottomNavigationAction' { - declare module.exports: any; -} - -declare module '@material-ui/core/Box/Box' { - declare module.exports: any; -} - -declare module '@material-ui/core/Box' { - declare module.exports: any; -} - -declare module '@material-ui/core/Breadcrumbs/BreadcrumbCollapsed' { - declare module.exports: any; -} - -declare module '@material-ui/core/Breadcrumbs/Breadcrumbs' { - declare module.exports: any; -} - -declare module '@material-ui/core/Breadcrumbs' { - declare module.exports: any; -} - -declare module '@material-ui/core/Button/Button' { - declare module.exports: any; -} - -declare module '@material-ui/core/Button' { - declare module.exports: any; -} - -declare module '@material-ui/core/ButtonBase/ButtonBase' { - declare module.exports: any; -} - -declare module '@material-ui/core/ButtonBase' { - declare module.exports: any; -} - -declare module '@material-ui/core/ButtonBase/Ripple' { - declare module.exports: any; -} - -declare module '@material-ui/core/ButtonBase/TouchRipple' { - declare module.exports: any; -} - -declare module '@material-ui/core/ButtonGroup/ButtonGroup' { - declare module.exports: any; -} - -declare module '@material-ui/core/ButtonGroup' { - declare module.exports: any; -} - -declare module '@material-ui/core/Card/Card' { - declare module.exports: any; -} - -declare module '@material-ui/core/Card' { - declare module.exports: any; -} - -declare module '@material-ui/core/CardActionArea/CardActionArea' { - declare module.exports: any; -} - -declare module '@material-ui/core/CardActionArea' { - declare module.exports: any; -} - -declare module '@material-ui/core/CardActions/CardActions' { - declare module.exports: any; -} - -declare module '@material-ui/core/CardActions' { - declare module.exports: any; -} - -declare module '@material-ui/core/CardContent/CardContent' { - declare module.exports: any; -} - -declare module '@material-ui/core/CardContent' { - declare module.exports: any; -} - -declare module '@material-ui/core/CardHeader/CardHeader' { - declare module.exports: any; -} - -declare module '@material-ui/core/CardHeader' { - declare module.exports: any; -} - -declare module '@material-ui/core/CardMedia/CardMedia' { - declare module.exports: any; -} - -declare module '@material-ui/core/CardMedia' { - declare module.exports: any; -} - -declare module '@material-ui/core/Checkbox/Checkbox' { - declare module.exports: any; -} - -declare module '@material-ui/core/Checkbox' { - declare module.exports: any; -} - -declare module '@material-ui/core/Chip/Chip' { - declare module.exports: any; -} - -declare module '@material-ui/core/Chip' { - declare module.exports: any; -} - -declare module '@material-ui/core/CircularProgress/CircularProgress' { - declare module.exports: any; -} - -declare module '@material-ui/core/CircularProgress' { - declare module.exports: any; -} - -declare module '@material-ui/core/ClickAwayListener/ClickAwayListener' { - declare module.exports: any; -} - -declare module '@material-ui/core/ClickAwayListener' { - declare module.exports: any; -} - -declare module '@material-ui/core/Collapse/Collapse' { - declare module.exports: any; -} - -declare module '@material-ui/core/Collapse' { - declare module.exports: any; -} - -declare module '@material-ui/core/colors/amber' { - declare module.exports: any; -} - -declare module '@material-ui/core/colors/blue' { - declare module.exports: any; -} - -declare module '@material-ui/core/colors/blueGrey' { - declare module.exports: any; -} - -declare module '@material-ui/core/colors/brown' { - declare module.exports: any; -} - -declare module '@material-ui/core/colors/common' { - declare module.exports: any; -} - -declare module '@material-ui/core/colors/cyan' { - declare module.exports: any; -} - -declare module '@material-ui/core/colors/deepOrange' { - declare module.exports: any; -} - -declare module '@material-ui/core/colors/deepPurple' { - declare module.exports: any; -} - -declare module '@material-ui/core/colors/green' { - declare module.exports: any; -} - -declare module '@material-ui/core/colors/grey' { - declare module.exports: any; -} - -declare module '@material-ui/core/colors' { - declare module.exports: any; -} - -declare module '@material-ui/core/colors/indigo' { - declare module.exports: any; -} - -declare module '@material-ui/core/colors/lightBlue' { - declare module.exports: any; -} - -declare module '@material-ui/core/colors/lightGreen' { - declare module.exports: any; -} - -declare module '@material-ui/core/colors/lime' { - declare module.exports: any; -} - -declare module '@material-ui/core/colors/orange' { - declare module.exports: any; -} - -declare module '@material-ui/core/colors/pink' { - declare module.exports: any; -} - -declare module '@material-ui/core/colors/purple' { - declare module.exports: any; -} - -declare module '@material-ui/core/colors/red' { - declare module.exports: any; -} - -declare module '@material-ui/core/colors/teal' { - declare module.exports: any; -} - -declare module '@material-ui/core/colors/yellow' { - declare module.exports: any; -} - -declare module '@material-ui/core/Container/Container' { - declare module.exports: any; -} - -declare module '@material-ui/core/Container' { - declare module.exports: any; -} - -declare module '@material-ui/core/CssBaseline/CssBaseline' { - declare module.exports: any; -} - -declare module '@material-ui/core/CssBaseline' { - declare module.exports: any; -} - -declare module '@material-ui/core/Dialog/Dialog' { - declare module.exports: any; -} - -declare module '@material-ui/core/Dialog' { - declare module.exports: any; -} - -declare module '@material-ui/core/DialogActions/DialogActions' { - declare module.exports: any; -} - -declare module '@material-ui/core/DialogActions' { - declare module.exports: any; -} - -declare module '@material-ui/core/DialogContent/DialogContent' { - declare module.exports: any; -} - -declare module '@material-ui/core/DialogContent' { - declare module.exports: any; -} - -declare module '@material-ui/core/DialogContentText/DialogContentText' { - declare module.exports: any; -} - -declare module '@material-ui/core/DialogContentText' { - declare module.exports: any; -} - -declare module '@material-ui/core/DialogTitle/DialogTitle' { - declare module.exports: any; -} - -declare module '@material-ui/core/DialogTitle' { - declare module.exports: any; -} - -declare module '@material-ui/core/Divider/Divider' { - declare module.exports: any; -} - -declare module '@material-ui/core/Divider' { - declare module.exports: any; -} - -declare module '@material-ui/core/Drawer/Drawer' { - declare module.exports: any; -} - -declare module '@material-ui/core/Drawer' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Accordion/Accordion' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Accordion/AccordionContext' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Accordion' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/AccordionActions/AccordionActions' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/AccordionActions' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/AccordionDetails/AccordionDetails' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/AccordionDetails' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/AccordionSummary/AccordionSummary' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/AccordionSummary' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/AppBar/AppBar' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/AppBar' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Avatar/Avatar' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Avatar' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Backdrop/Backdrop' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Backdrop' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Badge/Badge' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Badge' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/BottomNavigation/BottomNavigation' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/BottomNavigation' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/BottomNavigationAction/BottomNavigationAction' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/BottomNavigationAction' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Box/Box' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Box' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Breadcrumbs/BreadcrumbCollapsed' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Breadcrumbs/Breadcrumbs' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Breadcrumbs' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Button/Button' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Button' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/ButtonBase/ButtonBase' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/ButtonBase' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/ButtonBase/Ripple' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/ButtonBase/TouchRipple' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/ButtonGroup/ButtonGroup' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/ButtonGroup' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Card/Card' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Card' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/CardActionArea/CardActionArea' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/CardActionArea' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/CardActions/CardActions' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/CardActions' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/CardContent/CardContent' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/CardContent' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/CardHeader/CardHeader' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/CardHeader' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/CardMedia/CardMedia' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/CardMedia' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Checkbox/Checkbox' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Checkbox' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Chip/Chip' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Chip' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/CircularProgress/CircularProgress' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/CircularProgress' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/ClickAwayListener/ClickAwayListener' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/ClickAwayListener' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Collapse/Collapse' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Collapse' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/colors/amber' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/colors/blue' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/colors/blueGrey' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/colors/brown' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/colors/common' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/colors/cyan' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/colors/deepOrange' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/colors/deepPurple' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/colors/green' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/colors/grey' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/colors' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/colors/indigo' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/colors/lightBlue' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/colors/lightGreen' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/colors/lime' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/colors/orange' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/colors/pink' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/colors/purple' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/colors/red' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/colors/teal' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/colors/yellow' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Container/Container' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Container' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/CssBaseline/CssBaseline' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/CssBaseline' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Dialog/Dialog' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Dialog' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/DialogActions/DialogActions' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/DialogActions' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/DialogContent/DialogContent' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/DialogContent' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/DialogContentText/DialogContentText' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/DialogContentText' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/DialogTitle/DialogTitle' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/DialogTitle' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Divider/Divider' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Divider' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Drawer/Drawer' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Drawer' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/ExpansionPanel/ExpansionPanel' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/ExpansionPanel/ExpansionPanelContext' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/ExpansionPanel' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/ExpansionPanelActions/ExpansionPanelActions' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/ExpansionPanelActions' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/ExpansionPanelDetails/ExpansionPanelDetails' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/ExpansionPanelDetails' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/ExpansionPanelSummary/ExpansionPanelSummary' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/ExpansionPanelSummary' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Fab/Fab' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Fab' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Fade/Fade' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Fade' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/FilledInput/FilledInput' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/FilledInput' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/FormControl/FormControl' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/FormControl/FormControlContext' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/FormControl/formControlState' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/FormControl' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/FormControl/useFormControl' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/FormControlLabel/FormControlLabel' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/FormControlLabel' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/FormGroup/FormGroup' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/FormGroup' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/FormHelperText/FormHelperText' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/FormHelperText' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/FormLabel/FormLabel' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/FormLabel' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Grid/Grid' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Grid' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/GridList/GridList' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/GridList' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/GridListTile/GridListTile' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/GridListTile' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/GridListTileBar/GridListTileBar' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/GridListTileBar' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Grow/Grow' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Grow' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Hidden/Hidden' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Hidden/HiddenCss' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Hidden/HiddenJs' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Hidden' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Icon/Icon' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Icon' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/IconButton/IconButton' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/IconButton' { - declare module.exports: any; -} - -declare module '@material-ui/core/es' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Input' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Input/Input' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/InputAdornment' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/InputAdornment/InputAdornment' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/InputBase' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/InputBase/InputBase' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/InputBase/utils' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/InputLabel' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/InputLabel/InputLabel' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/internal/animate' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/internal/svg-icons/ArrowDownward' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/internal/svg-icons/ArrowDropDown' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/internal/svg-icons/Cancel' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/internal/svg-icons/CheckBox' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/internal/svg-icons/CheckBoxOutlineBlank' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/internal/svg-icons/CheckCircle' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/internal/svg-icons/Close' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/internal/svg-icons/IndeterminateCheckBox' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/internal/svg-icons/KeyboardArrowLeft' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/internal/svg-icons/KeyboardArrowRight' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/internal/svg-icons/MoreHoriz' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/internal/svg-icons/Person' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/internal/svg-icons/RadioButtonChecked' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/internal/svg-icons/RadioButtonUnchecked' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/internal/svg-icons/Warning' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/internal/SwitchBase' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/LinearProgress' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/LinearProgress/LinearProgress' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Link' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Link/Link' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/List' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/List/List' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/List/ListContext' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/ListItem' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/ListItem/ListItem' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/ListItemAvatar' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/ListItemAvatar/ListItemAvatar' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/ListItemIcon' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/ListItemIcon/ListItemIcon' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/ListItemSecondaryAction' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/ListItemSecondaryAction/ListItemSecondaryAction' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/ListItemText' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/ListItemText/ListItemText' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/ListSubheader' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/ListSubheader/ListSubheader' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/locale' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Menu' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Menu/Menu' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/MenuItem' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/MenuItem/MenuItem' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/MenuList' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/MenuList/MenuList' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/MobileStepper' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/MobileStepper/MobileStepper' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Modal' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Modal/Modal' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Modal/ModalManager' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Modal/SimpleBackdrop' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/NativeSelect' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/NativeSelect/NativeSelect' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/NativeSelect/NativeSelectInput' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/NoSsr' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/NoSsr/NoSsr' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/OutlinedInput' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/OutlinedInput/NotchedOutline' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/OutlinedInput/OutlinedInput' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Paper' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Paper/Paper' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Popover' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Popover/Popover' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Popper' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Popper/Popper' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Portal' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Portal/Portal' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Radio' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Radio/Radio' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Radio/RadioButtonIcon' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/RadioGroup' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/RadioGroup/RadioGroup' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/RadioGroup/RadioGroupContext' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/RadioGroup/useRadioGroup' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/RootRef' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/RootRef/RootRef' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/ScopedCssBaseline' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/ScopedCssBaseline/ScopedCssBaseline' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Select' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Select/Select' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Select/SelectInput' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Slide' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Slide/Slide' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Slider' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Slider/Slider' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Slider/ValueLabel' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Snackbar' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Snackbar/Snackbar' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/SnackbarContent' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/SnackbarContent/SnackbarContent' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Step' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Step/Step' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/StepButton' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/StepButton/StepButton' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/StepConnector' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/StepConnector/StepConnector' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/StepContent' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/StepContent/StepContent' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/StepIcon' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/StepIcon/StepIcon' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/StepLabel' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/StepLabel/StepLabel' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Stepper' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Stepper/Stepper' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/styles/colorManipulator' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/styles/createBreakpoints' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/styles/createMixins' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/styles/createMuiStrictModeTheme' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/styles/createMuiTheme' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/styles/createPalette' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/styles/createSpacing' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/styles/createStyles' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/styles/createTypography' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/styles/cssUtils' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/styles/defaultTheme' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/styles' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/styles/makeStyles' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/styles/MuiThemeProvider' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/styles/responsiveFontSizes' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/styles/shadows' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/styles/shape' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/styles/styled' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/styles/transitions' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/styles/useTheme' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/styles/withStyles' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/styles/withTheme' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/styles/zIndex' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/SvgIcon' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/SvgIcon/SvgIcon' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/SwipeableDrawer' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/SwipeableDrawer/SwipeableDrawer' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/SwipeableDrawer/SwipeArea' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Switch' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Switch/Switch' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Tab' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Tab/Tab' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Table' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Table/Table' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Table/TableContext' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Table/Tablelvl2Context' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/TableBody' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/TableBody/TableBody' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/TableCell' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/TableCell/TableCell' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/TableContainer' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/TableContainer/TableContainer' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/TableFooter' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/TableFooter/TableFooter' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/TableHead' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/TableHead/TableHead' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/TablePagination' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/TablePagination/TablePagination' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/TablePagination/TablePaginationActions' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/TableRow' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/TableRow/TableRow' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/TableSortLabel' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/TableSortLabel/TableSortLabel' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Tabs' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Tabs/ScrollbarSize' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Tabs/TabIndicator' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Tabs/Tabs' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/TabScrollButton' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/TabScrollButton/TabScrollButton' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/test-utils/createMount' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/test-utils/createRender' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/test-utils/createShallow' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/test-utils/describeConformance' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/test-utils/findOutermostIntrinsic' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/test-utils/getClasses' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/test-utils' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/test-utils/RenderMode' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/test-utils/testRef' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/test-utils/until' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/test-utils/unwrap' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/TextareaAutosize' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/TextareaAutosize/TextareaAutosize' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/TextField' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/TextField/TextField' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Toolbar' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Toolbar/Toolbar' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Tooltip' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Tooltip/Tooltip' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/transitions/utils' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Typography' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Typography/Typography' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Unstable_TrapFocus' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Unstable_TrapFocus/Unstable_TrapFocus' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/useMediaQuery' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/useMediaQuery/useMediaQuery' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/useMediaQuery/useMediaQueryTheme' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/useScrollTrigger' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/useScrollTrigger/useScrollTrigger' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/utils/capitalize' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/utils/createChainedFunction' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/utils/createSvgIcon' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/utils/debounce' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/utils/deprecatedPropType' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/utils/getScrollbarSize' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/utils' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/utils/isMuiElement' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/utils/ownerDocument' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/utils/ownerWindow' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/utils/requirePropFactory' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/utils/scrollLeft' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/utils/setRef' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/utils/unstable_useId' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/utils/unsupportedProp' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/utils/useControlled' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/utils/useEventCallback' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/utils/useForkRef' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/utils/useIsFocusVisible' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/withMobileDialog' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/withMobileDialog/withMobileDialog' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/withWidth' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/withWidth/withWidth' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Zoom' { - declare module.exports: any; -} - -declare module '@material-ui/core/es/Zoom/Zoom' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Accordion/Accordion' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Accordion/AccordionContext' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Accordion' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/AccordionActions/AccordionActions' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/AccordionActions' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/AccordionDetails/AccordionDetails' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/AccordionDetails' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/AccordionSummary/AccordionSummary' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/AccordionSummary' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/AppBar/AppBar' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/AppBar' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Avatar/Avatar' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Avatar' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Backdrop/Backdrop' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Backdrop' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Badge/Badge' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Badge' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/BottomNavigation/BottomNavigation' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/BottomNavigation' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/BottomNavigationAction/BottomNavigationAction' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/BottomNavigationAction' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Box/Box' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Box' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Breadcrumbs/BreadcrumbCollapsed' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Breadcrumbs/Breadcrumbs' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Breadcrumbs' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Button/Button' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Button' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/ButtonBase/ButtonBase' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/ButtonBase' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/ButtonBase/Ripple' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/ButtonBase/TouchRipple' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/ButtonGroup/ButtonGroup' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/ButtonGroup' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Card/Card' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Card' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/CardActionArea/CardActionArea' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/CardActionArea' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/CardActions/CardActions' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/CardActions' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/CardContent/CardContent' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/CardContent' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/CardHeader/CardHeader' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/CardHeader' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/CardMedia/CardMedia' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/CardMedia' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Checkbox/Checkbox' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Checkbox' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Chip/Chip' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Chip' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/CircularProgress/CircularProgress' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/CircularProgress' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/ClickAwayListener/ClickAwayListener' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/ClickAwayListener' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Collapse/Collapse' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Collapse' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/colors/amber' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/colors/blue' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/colors/blueGrey' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/colors/brown' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/colors/common' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/colors/cyan' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/colors/deepOrange' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/colors/deepPurple' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/colors/green' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/colors/grey' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/colors' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/colors/indigo' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/colors/lightBlue' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/colors/lightGreen' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/colors/lime' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/colors/orange' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/colors/pink' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/colors/purple' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/colors/red' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/colors/teal' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/colors/yellow' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Container/Container' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Container' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/CssBaseline/CssBaseline' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/CssBaseline' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Dialog/Dialog' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Dialog' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/DialogActions/DialogActions' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/DialogActions' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/DialogContent/DialogContent' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/DialogContent' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/DialogContentText/DialogContentText' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/DialogContentText' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/DialogTitle/DialogTitle' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/DialogTitle' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Divider/Divider' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Divider' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Drawer/Drawer' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Drawer' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/ExpansionPanel/ExpansionPanel' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/ExpansionPanel/ExpansionPanelContext' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/ExpansionPanel' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/ExpansionPanelActions/ExpansionPanelActions' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/ExpansionPanelActions' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/ExpansionPanelDetails/ExpansionPanelDetails' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/ExpansionPanelDetails' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/ExpansionPanelSummary/ExpansionPanelSummary' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/ExpansionPanelSummary' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Fab/Fab' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Fab' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Fade/Fade' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Fade' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/FilledInput/FilledInput' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/FilledInput' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/FormControl/FormControl' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/FormControl/FormControlContext' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/FormControl/formControlState' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/FormControl' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/FormControl/useFormControl' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/FormControlLabel/FormControlLabel' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/FormControlLabel' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/FormGroup/FormGroup' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/FormGroup' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/FormHelperText/FormHelperText' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/FormHelperText' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/FormLabel/FormLabel' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/FormLabel' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Grid/Grid' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Grid' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/GridList/GridList' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/GridList' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/GridListTile/GridListTile' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/GridListTile' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/GridListTileBar/GridListTileBar' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/GridListTileBar' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Grow/Grow' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Grow' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Hidden/Hidden' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Hidden/HiddenCss' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Hidden/HiddenJs' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Hidden' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Icon/Icon' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Icon' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/IconButton/IconButton' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/IconButton' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Input' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Input/Input' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/InputAdornment' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/InputAdornment/InputAdornment' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/InputBase' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/InputBase/InputBase' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/InputBase/utils' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/InputLabel' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/InputLabel/InputLabel' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/internal/animate' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/internal/svg-icons/ArrowDownward' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/internal/svg-icons/ArrowDropDown' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/internal/svg-icons/Cancel' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/internal/svg-icons/CheckBox' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/internal/svg-icons/CheckBoxOutlineBlank' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/internal/svg-icons/CheckCircle' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/internal/svg-icons/Close' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/internal/svg-icons/IndeterminateCheckBox' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/internal/svg-icons/KeyboardArrowLeft' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/internal/svg-icons/KeyboardArrowRight' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/internal/svg-icons/MoreHoriz' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/internal/svg-icons/Person' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/internal/svg-icons/RadioButtonChecked' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/internal/svg-icons/RadioButtonUnchecked' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/internal/svg-icons/Warning' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/internal/SwitchBase' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/LinearProgress' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/LinearProgress/LinearProgress' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Link' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Link/Link' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/List' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/List/List' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/List/ListContext' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/ListItem' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/ListItem/ListItem' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/ListItemAvatar' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/ListItemAvatar/ListItemAvatar' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/ListItemIcon' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/ListItemIcon/ListItemIcon' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/ListItemSecondaryAction' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/ListItemSecondaryAction/ListItemSecondaryAction' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/ListItemText' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/ListItemText/ListItemText' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/ListSubheader' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/ListSubheader/ListSubheader' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/locale' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Menu' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Menu/Menu' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/MenuItem' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/MenuItem/MenuItem' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/MenuList' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/MenuList/MenuList' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/MobileStepper' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/MobileStepper/MobileStepper' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Modal' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Modal/Modal' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Modal/ModalManager' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Modal/SimpleBackdrop' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/NativeSelect' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/NativeSelect/NativeSelect' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/NativeSelect/NativeSelectInput' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/NoSsr' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/NoSsr/NoSsr' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/OutlinedInput' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/OutlinedInput/NotchedOutline' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/OutlinedInput/OutlinedInput' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Paper' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Paper/Paper' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Popover' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Popover/Popover' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Popper' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Popper/Popper' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Portal' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Portal/Portal' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Radio' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Radio/Radio' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Radio/RadioButtonIcon' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/RadioGroup' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/RadioGroup/RadioGroup' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/RadioGroup/RadioGroupContext' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/RadioGroup/useRadioGroup' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/RootRef' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/RootRef/RootRef' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/ScopedCssBaseline' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/ScopedCssBaseline/ScopedCssBaseline' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Select' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Select/Select' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Select/SelectInput' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Slide' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Slide/Slide' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Slider' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Slider/Slider' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Slider/ValueLabel' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Snackbar' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Snackbar/Snackbar' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/SnackbarContent' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/SnackbarContent/SnackbarContent' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Step' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Step/Step' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/StepButton' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/StepButton/StepButton' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/StepConnector' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/StepConnector/StepConnector' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/StepContent' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/StepContent/StepContent' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/StepIcon' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/StepIcon/StepIcon' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/StepLabel' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/StepLabel/StepLabel' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Stepper' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Stepper/Stepper' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/styles/colorManipulator' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/styles/createBreakpoints' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/styles/createMixins' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/styles/createMuiStrictModeTheme' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/styles/createMuiTheme' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/styles/createPalette' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/styles/createSpacing' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/styles/createStyles' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/styles/createTypography' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/styles/cssUtils' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/styles/defaultTheme' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/styles' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/styles/makeStyles' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/styles/MuiThemeProvider' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/styles/responsiveFontSizes' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/styles/shadows' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/styles/shape' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/styles/styled' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/styles/transitions' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/styles/useTheme' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/styles/withStyles' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/styles/withTheme' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/styles/zIndex' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/SvgIcon' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/SvgIcon/SvgIcon' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/SwipeableDrawer' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/SwipeableDrawer/SwipeableDrawer' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/SwipeableDrawer/SwipeArea' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Switch' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Switch/Switch' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Tab' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Tab/Tab' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Table' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Table/Table' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Table/TableContext' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Table/Tablelvl2Context' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/TableBody' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/TableBody/TableBody' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/TableCell' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/TableCell/TableCell' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/TableContainer' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/TableContainer/TableContainer' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/TableFooter' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/TableFooter/TableFooter' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/TableHead' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/TableHead/TableHead' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/TablePagination' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/TablePagination/TablePagination' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/TablePagination/TablePaginationActions' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/TableRow' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/TableRow/TableRow' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/TableSortLabel' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/TableSortLabel/TableSortLabel' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Tabs' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Tabs/ScrollbarSize' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Tabs/TabIndicator' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Tabs/Tabs' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/TabScrollButton' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/TabScrollButton/TabScrollButton' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/test-utils/createMount' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/test-utils/createRender' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/test-utils/createShallow' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/test-utils/describeConformance' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/test-utils/findOutermostIntrinsic' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/test-utils/getClasses' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/test-utils' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/test-utils/RenderMode' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/test-utils/testRef' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/test-utils/until' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/test-utils/unwrap' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/TextareaAutosize' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/TextareaAutosize/TextareaAutosize' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/TextField' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/TextField/TextField' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Toolbar' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Toolbar/Toolbar' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Tooltip' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Tooltip/Tooltip' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/transitions/utils' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Typography' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Typography/Typography' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Unstable_TrapFocus' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Unstable_TrapFocus/Unstable_TrapFocus' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/useMediaQuery' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/useMediaQuery/useMediaQuery' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/useMediaQuery/useMediaQueryTheme' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/useScrollTrigger' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/useScrollTrigger/useScrollTrigger' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/utils/capitalize' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/utils/createChainedFunction' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/utils/createSvgIcon' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/utils/debounce' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/utils/deprecatedPropType' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/utils/getScrollbarSize' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/utils' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/utils/isMuiElement' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/utils/ownerDocument' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/utils/ownerWindow' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/utils/requirePropFactory' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/utils/scrollLeft' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/utils/setRef' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/utils/unstable_useId' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/utils/unsupportedProp' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/utils/useControlled' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/utils/useEventCallback' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/utils/useForkRef' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/utils/useIsFocusVisible' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/withMobileDialog' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/withMobileDialog/withMobileDialog' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/withWidth' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/withWidth/withWidth' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Zoom' { - declare module.exports: any; -} - -declare module '@material-ui/core/esm/Zoom/Zoom' { - declare module.exports: any; -} - -declare module '@material-ui/core/ExpansionPanel/ExpansionPanel' { - declare module.exports: any; -} - -declare module '@material-ui/core/ExpansionPanel/ExpansionPanelContext' { - declare module.exports: any; -} - -declare module '@material-ui/core/ExpansionPanel' { - declare module.exports: any; -} - -declare module '@material-ui/core/ExpansionPanelActions/ExpansionPanelActions' { - declare module.exports: any; -} - -declare module '@material-ui/core/ExpansionPanelActions' { - declare module.exports: any; -} - -declare module '@material-ui/core/ExpansionPanelDetails/ExpansionPanelDetails' { - declare module.exports: any; -} - -declare module '@material-ui/core/ExpansionPanelDetails' { - declare module.exports: any; -} - -declare module '@material-ui/core/ExpansionPanelSummary/ExpansionPanelSummary' { - declare module.exports: any; -} - -declare module '@material-ui/core/ExpansionPanelSummary' { - declare module.exports: any; -} - -declare module '@material-ui/core/Fab/Fab' { - declare module.exports: any; -} - -declare module '@material-ui/core/Fab' { - declare module.exports: any; -} - -declare module '@material-ui/core/Fade/Fade' { - declare module.exports: any; -} - -declare module '@material-ui/core/Fade' { - declare module.exports: any; -} - -declare module '@material-ui/core/FilledInput/FilledInput' { - declare module.exports: any; -} - -declare module '@material-ui/core/FilledInput' { - declare module.exports: any; -} - -declare module '@material-ui/core/FormControl/FormControl' { - declare module.exports: any; -} - -declare module '@material-ui/core/FormControl/FormControlContext' { - declare module.exports: any; -} - -declare module '@material-ui/core/FormControl/formControlState' { - declare module.exports: any; -} - -declare module '@material-ui/core/FormControl' { - declare module.exports: any; -} - -declare module '@material-ui/core/FormControl/useFormControl' { - declare module.exports: any; -} - -declare module '@material-ui/core/FormControlLabel/FormControlLabel' { - declare module.exports: any; -} - -declare module '@material-ui/core/FormControlLabel' { - declare module.exports: any; -} - -declare module '@material-ui/core/FormGroup/FormGroup' { - declare module.exports: any; -} - -declare module '@material-ui/core/FormGroup' { - declare module.exports: any; -} - -declare module '@material-ui/core/FormHelperText/FormHelperText' { - declare module.exports: any; -} - -declare module '@material-ui/core/FormHelperText' { - declare module.exports: any; -} - -declare module '@material-ui/core/FormLabel/FormLabel' { - declare module.exports: any; -} - -declare module '@material-ui/core/FormLabel' { - declare module.exports: any; -} - -declare module '@material-ui/core/Grid/Grid' { - declare module.exports: any; -} - -declare module '@material-ui/core/Grid' { - declare module.exports: any; -} - -declare module '@material-ui/core/GridList/GridList' { - declare module.exports: any; -} - -declare module '@material-ui/core/GridList' { - declare module.exports: any; -} - -declare module '@material-ui/core/GridListTile/GridListTile' { - declare module.exports: any; -} - -declare module '@material-ui/core/GridListTile' { - declare module.exports: any; -} - -declare module '@material-ui/core/GridListTileBar/GridListTileBar' { - declare module.exports: any; -} - -declare module '@material-ui/core/GridListTileBar' { - declare module.exports: any; -} - -declare module '@material-ui/core/Grow/Grow' { - declare module.exports: any; -} - -declare module '@material-ui/core/Grow' { - declare module.exports: any; -} - -declare module '@material-ui/core/Hidden/Hidden' { - declare module.exports: any; -} - -declare module '@material-ui/core/Hidden/HiddenCss' { - declare module.exports: any; -} - -declare module '@material-ui/core/Hidden/HiddenJs' { - declare module.exports: any; -} - -declare module '@material-ui/core/Hidden' { - declare module.exports: any; -} - -declare module '@material-ui/core/Icon/Icon' { - declare module.exports: any; -} - -declare module '@material-ui/core/Icon' { - declare module.exports: any; -} - -declare module '@material-ui/core/IconButton/IconButton' { - declare module.exports: any; -} - -declare module '@material-ui/core/IconButton' { - declare module.exports: any; -} - -declare module '@material-ui/core/Input' { - declare module.exports: any; -} - -declare module '@material-ui/core/Input/Input' { - declare module.exports: any; -} - -declare module '@material-ui/core/InputAdornment' { - declare module.exports: any; -} - -declare module '@material-ui/core/InputAdornment/InputAdornment' { - declare module.exports: any; -} - -declare module '@material-ui/core/InputBase' { - declare module.exports: any; -} - -declare module '@material-ui/core/InputBase/InputBase' { - declare module.exports: any; -} - -declare module '@material-ui/core/InputBase/utils' { - declare module.exports: any; -} - -declare module '@material-ui/core/InputLabel' { - declare module.exports: any; -} - -declare module '@material-ui/core/InputLabel/InputLabel' { - declare module.exports: any; -} - -declare module '@material-ui/core/internal/animate' { - declare module.exports: any; -} - -declare module '@material-ui/core/internal/svg-icons/ArrowDownward' { - declare module.exports: any; -} - -declare module '@material-ui/core/internal/svg-icons/ArrowDropDown' { - declare module.exports: any; -} - -declare module '@material-ui/core/internal/svg-icons/Cancel' { - declare module.exports: any; -} - -declare module '@material-ui/core/internal/svg-icons/CheckBox' { - declare module.exports: any; -} - -declare module '@material-ui/core/internal/svg-icons/CheckBoxOutlineBlank' { - declare module.exports: any; -} - -declare module '@material-ui/core/internal/svg-icons/CheckCircle' { - declare module.exports: any; -} - -declare module '@material-ui/core/internal/svg-icons/Close' { - declare module.exports: any; -} - -declare module '@material-ui/core/internal/svg-icons/IndeterminateCheckBox' { - declare module.exports: any; -} - -declare module '@material-ui/core/internal/svg-icons/KeyboardArrowLeft' { - declare module.exports: any; -} - -declare module '@material-ui/core/internal/svg-icons/KeyboardArrowRight' { - declare module.exports: any; -} - -declare module '@material-ui/core/internal/svg-icons/MoreHoriz' { - declare module.exports: any; -} - -declare module '@material-ui/core/internal/svg-icons/Person' { - declare module.exports: any; -} - -declare module '@material-ui/core/internal/svg-icons/RadioButtonChecked' { - declare module.exports: any; -} - -declare module '@material-ui/core/internal/svg-icons/RadioButtonUnchecked' { - declare module.exports: any; -} - -declare module '@material-ui/core/internal/svg-icons/Warning' { - declare module.exports: any; -} - -declare module '@material-ui/core/internal/SwitchBase' { - declare module.exports: any; -} - -declare module '@material-ui/core/LinearProgress' { - declare module.exports: any; -} - -declare module '@material-ui/core/LinearProgress/LinearProgress' { - declare module.exports: any; -} - -declare module '@material-ui/core/Link' { - declare module.exports: any; -} - -declare module '@material-ui/core/Link/Link' { - declare module.exports: any; -} - -declare module '@material-ui/core/List' { - declare module.exports: any; -} - -declare module '@material-ui/core/List/List' { - declare module.exports: any; -} - -declare module '@material-ui/core/List/ListContext' { - declare module.exports: any; -} - -declare module '@material-ui/core/ListItem' { - declare module.exports: any; -} - -declare module '@material-ui/core/ListItem/ListItem' { - declare module.exports: any; -} - -declare module '@material-ui/core/ListItemAvatar' { - declare module.exports: any; -} - -declare module '@material-ui/core/ListItemAvatar/ListItemAvatar' { - declare module.exports: any; -} - -declare module '@material-ui/core/ListItemIcon' { - declare module.exports: any; -} - -declare module '@material-ui/core/ListItemIcon/ListItemIcon' { - declare module.exports: any; -} - -declare module '@material-ui/core/ListItemSecondaryAction' { - declare module.exports: any; -} - -declare module '@material-ui/core/ListItemSecondaryAction/ListItemSecondaryAction' { - declare module.exports: any; -} - -declare module '@material-ui/core/ListItemText' { - declare module.exports: any; -} - -declare module '@material-ui/core/ListItemText/ListItemText' { - declare module.exports: any; -} - -declare module '@material-ui/core/ListSubheader' { - declare module.exports: any; -} - -declare module '@material-ui/core/ListSubheader/ListSubheader' { - declare module.exports: any; -} - -declare module '@material-ui/core/locale' { - declare module.exports: any; -} - -declare module '@material-ui/core/Menu' { - declare module.exports: any; -} - -declare module '@material-ui/core/Menu/Menu' { - declare module.exports: any; -} - -declare module '@material-ui/core/MenuItem' { - declare module.exports: any; -} - -declare module '@material-ui/core/MenuItem/MenuItem' { - declare module.exports: any; -} - -declare module '@material-ui/core/MenuList' { - declare module.exports: any; -} - -declare module '@material-ui/core/MenuList/MenuList' { - declare module.exports: any; -} - -declare module '@material-ui/core/MobileStepper' { - declare module.exports: any; -} - -declare module '@material-ui/core/MobileStepper/MobileStepper' { - declare module.exports: any; -} - -declare module '@material-ui/core/Modal' { - declare module.exports: any; -} - -declare module '@material-ui/core/Modal/Modal' { - declare module.exports: any; -} - -declare module '@material-ui/core/Modal/ModalManager' { - declare module.exports: any; -} - -declare module '@material-ui/core/Modal/SimpleBackdrop' { - declare module.exports: any; -} - -declare module '@material-ui/core/NativeSelect' { - declare module.exports: any; -} - -declare module '@material-ui/core/NativeSelect/NativeSelect' { - declare module.exports: any; -} - -declare module '@material-ui/core/NativeSelect/NativeSelectInput' { - declare module.exports: any; -} - -declare module '@material-ui/core/NoSsr' { - declare module.exports: any; -} - -declare module '@material-ui/core/NoSsr/NoSsr' { - declare module.exports: any; -} - -declare module '@material-ui/core/OutlinedInput' { - declare module.exports: any; -} - -declare module '@material-ui/core/OutlinedInput/NotchedOutline' { - declare module.exports: any; -} - -declare module '@material-ui/core/OutlinedInput/OutlinedInput' { - declare module.exports: any; -} - -declare module '@material-ui/core/Paper' { - declare module.exports: any; -} - -declare module '@material-ui/core/Paper/Paper' { - declare module.exports: any; -} - -declare module '@material-ui/core/Popover' { - declare module.exports: any; -} - -declare module '@material-ui/core/Popover/Popover' { - declare module.exports: any; -} - -declare module '@material-ui/core/Popper' { - declare module.exports: any; -} - -declare module '@material-ui/core/Popper/Popper' { - declare module.exports: any; -} - -declare module '@material-ui/core/Portal' { - declare module.exports: any; -} - -declare module '@material-ui/core/Portal/Portal' { - declare module.exports: any; -} - -declare module '@material-ui/core/Radio' { - declare module.exports: any; -} - -declare module '@material-ui/core/Radio/Radio' { - declare module.exports: any; -} - -declare module '@material-ui/core/Radio/RadioButtonIcon' { - declare module.exports: any; -} - -declare module '@material-ui/core/RadioGroup' { - declare module.exports: any; -} - -declare module '@material-ui/core/RadioGroup/RadioGroup' { - declare module.exports: any; -} - -declare module '@material-ui/core/RadioGroup/RadioGroupContext' { - declare module.exports: any; -} - -declare module '@material-ui/core/RadioGroup/useRadioGroup' { - declare module.exports: any; -} - -declare module '@material-ui/core/RootRef' { - declare module.exports: any; -} - -declare module '@material-ui/core/RootRef/RootRef' { - declare module.exports: any; -} - -declare module '@material-ui/core/ScopedCssBaseline' { - declare module.exports: any; -} - -declare module '@material-ui/core/ScopedCssBaseline/ScopedCssBaseline' { - declare module.exports: any; -} - -declare module '@material-ui/core/Select' { - declare module.exports: any; -} - -declare module '@material-ui/core/Select/Select' { - declare module.exports: any; -} - -declare module '@material-ui/core/Select/SelectInput' { - declare module.exports: any; -} - -declare module '@material-ui/core/Slide' { - declare module.exports: any; -} - -declare module '@material-ui/core/Slide/Slide' { - declare module.exports: any; -} - -declare module '@material-ui/core/Slider' { - declare module.exports: any; -} - -declare module '@material-ui/core/Slider/Slider' { - declare module.exports: any; -} - -declare module '@material-ui/core/Slider/ValueLabel' { - declare module.exports: any; -} - -declare module '@material-ui/core/Snackbar' { - declare module.exports: any; -} - -declare module '@material-ui/core/Snackbar/Snackbar' { - declare module.exports: any; -} - -declare module '@material-ui/core/SnackbarContent' { - declare module.exports: any; -} - -declare module '@material-ui/core/SnackbarContent/SnackbarContent' { - declare module.exports: any; -} - -declare module '@material-ui/core/Step' { - declare module.exports: any; -} - -declare module '@material-ui/core/Step/Step' { - declare module.exports: any; -} - -declare module '@material-ui/core/StepButton' { - declare module.exports: any; -} - -declare module '@material-ui/core/StepButton/StepButton' { - declare module.exports: any; -} - -declare module '@material-ui/core/StepConnector' { - declare module.exports: any; -} - -declare module '@material-ui/core/StepConnector/StepConnector' { - declare module.exports: any; -} - -declare module '@material-ui/core/StepContent' { - declare module.exports: any; -} - -declare module '@material-ui/core/StepContent/StepContent' { - declare module.exports: any; -} - -declare module '@material-ui/core/StepIcon' { - declare module.exports: any; -} - -declare module '@material-ui/core/StepIcon/StepIcon' { - declare module.exports: any; -} - -declare module '@material-ui/core/StepLabel' { - declare module.exports: any; -} - -declare module '@material-ui/core/StepLabel/StepLabel' { - declare module.exports: any; -} - -declare module '@material-ui/core/Stepper' { - declare module.exports: any; -} - -declare module '@material-ui/core/Stepper/Stepper' { - declare module.exports: any; -} - -declare module '@material-ui/core/styles/colorManipulator' { - declare module.exports: any; -} - -declare module '@material-ui/core/styles/createBreakpoints' { - declare module.exports: any; -} - -declare module '@material-ui/core/styles/createMixins' { - declare module.exports: any; -} - -declare module '@material-ui/core/styles/createMuiStrictModeTheme' { - declare module.exports: any; -} - -declare module '@material-ui/core/styles/createMuiTheme' { - declare module.exports: any; -} - -declare module '@material-ui/core/styles/createPalette' { - declare module.exports: any; -} - -declare module '@material-ui/core/styles/createSpacing' { - declare module.exports: any; -} - -declare module '@material-ui/core/styles/createStyles' { - declare module.exports: any; -} - -declare module '@material-ui/core/styles/createTypography' { - declare module.exports: any; -} - -declare module '@material-ui/core/styles/cssUtils' { - declare module.exports: any; -} - -declare module '@material-ui/core/styles/defaultTheme' { - declare module.exports: any; -} - -declare module '@material-ui/core/styles' { - declare module.exports: any; -} - -declare module '@material-ui/core/styles/makeStyles' { - declare module.exports: any; -} - -declare module '@material-ui/core/styles/MuiThemeProvider' { - declare module.exports: any; -} - -declare module '@material-ui/core/styles/responsiveFontSizes' { - declare module.exports: any; -} - -declare module '@material-ui/core/styles/shadows' { - declare module.exports: any; -} - -declare module '@material-ui/core/styles/shape' { - declare module.exports: any; -} - -declare module '@material-ui/core/styles/styled' { - declare module.exports: any; -} - -declare module '@material-ui/core/styles/transitions' { - declare module.exports: any; -} - -declare module '@material-ui/core/styles/useTheme' { - declare module.exports: any; -} - -declare module '@material-ui/core/styles/withStyles' { - declare module.exports: any; -} - -declare module '@material-ui/core/styles/withTheme' { - declare module.exports: any; -} - -declare module '@material-ui/core/styles/zIndex' { - declare module.exports: any; -} - -declare module '@material-ui/core/SvgIcon' { - declare module.exports: any; -} - -declare module '@material-ui/core/SvgIcon/SvgIcon' { - declare module.exports: any; -} - -declare module '@material-ui/core/SwipeableDrawer' { - declare module.exports: any; -} - -declare module '@material-ui/core/SwipeableDrawer/SwipeableDrawer' { - declare module.exports: any; -} - -declare module '@material-ui/core/SwipeableDrawer/SwipeArea' { - declare module.exports: any; -} - -declare module '@material-ui/core/Switch' { - declare module.exports: any; -} - -declare module '@material-ui/core/Switch/Switch' { - declare module.exports: any; -} - -declare module '@material-ui/core/Tab' { - declare module.exports: any; -} - -declare module '@material-ui/core/Tab/Tab' { - declare module.exports: any; -} - -declare module '@material-ui/core/Table' { - declare module.exports: any; -} - -declare module '@material-ui/core/Table/Table' { - declare module.exports: any; -} - -declare module '@material-ui/core/Table/TableContext' { - declare module.exports: any; -} - -declare module '@material-ui/core/Table/Tablelvl2Context' { - declare module.exports: any; -} - -declare module '@material-ui/core/TableBody' { - declare module.exports: any; -} - -declare module '@material-ui/core/TableBody/TableBody' { - declare module.exports: any; -} - -declare module '@material-ui/core/TableCell' { - declare module.exports: any; -} - -declare module '@material-ui/core/TableCell/TableCell' { - declare module.exports: any; -} - -declare module '@material-ui/core/TableContainer' { - declare module.exports: any; -} - -declare module '@material-ui/core/TableContainer/TableContainer' { - declare module.exports: any; -} - -declare module '@material-ui/core/TableFooter' { - declare module.exports: any; -} - -declare module '@material-ui/core/TableFooter/TableFooter' { - declare module.exports: any; -} - -declare module '@material-ui/core/TableHead' { - declare module.exports: any; -} - -declare module '@material-ui/core/TableHead/TableHead' { - declare module.exports: any; -} - -declare module '@material-ui/core/TablePagination' { - declare module.exports: any; -} - -declare module '@material-ui/core/TablePagination/TablePagination' { - declare module.exports: any; -} - -declare module '@material-ui/core/TablePagination/TablePaginationActions' { - declare module.exports: any; -} - -declare module '@material-ui/core/TableRow' { - declare module.exports: any; -} - -declare module '@material-ui/core/TableRow/TableRow' { - declare module.exports: any; -} - -declare module '@material-ui/core/TableSortLabel' { - declare module.exports: any; -} - -declare module '@material-ui/core/TableSortLabel/TableSortLabel' { - declare module.exports: any; -} - -declare module '@material-ui/core/Tabs' { - declare module.exports: any; -} - -declare module '@material-ui/core/Tabs/ScrollbarSize' { - declare module.exports: any; -} - -declare module '@material-ui/core/Tabs/TabIndicator' { - declare module.exports: any; -} - -declare module '@material-ui/core/Tabs/Tabs' { - declare module.exports: any; -} - -declare module '@material-ui/core/TabScrollButton' { - declare module.exports: any; -} - -declare module '@material-ui/core/TabScrollButton/TabScrollButton' { - declare module.exports: any; -} - -declare module '@material-ui/core/test-utils/createMount' { - declare module.exports: any; -} - -declare module '@material-ui/core/test-utils/createRender' { - declare module.exports: any; -} - -declare module '@material-ui/core/test-utils/createShallow' { - declare module.exports: any; -} - -declare module '@material-ui/core/test-utils/describeConformance' { - declare module.exports: any; -} - -declare module '@material-ui/core/test-utils/findOutermostIntrinsic' { - declare module.exports: any; -} - -declare module '@material-ui/core/test-utils/getClasses' { - declare module.exports: any; -} - -declare module '@material-ui/core/test-utils' { - declare module.exports: any; -} - -declare module '@material-ui/core/test-utils/RenderMode' { - declare module.exports: any; -} - -declare module '@material-ui/core/test-utils/testRef' { - declare module.exports: any; -} - -declare module '@material-ui/core/test-utils/until' { - declare module.exports: any; -} - -declare module '@material-ui/core/test-utils/unwrap' { - declare module.exports: any; -} - -declare module '@material-ui/core/TextareaAutosize' { - declare module.exports: any; -} - -declare module '@material-ui/core/TextareaAutosize/TextareaAutosize' { - declare module.exports: any; -} - -declare module '@material-ui/core/TextField' { - declare module.exports: any; -} - -declare module '@material-ui/core/TextField/TextField' { - declare module.exports: any; -} - -declare module '@material-ui/core/Toolbar' { - declare module.exports: any; -} - -declare module '@material-ui/core/Toolbar/Toolbar' { - declare module.exports: any; -} - -declare module '@material-ui/core/Tooltip' { - declare module.exports: any; -} - -declare module '@material-ui/core/Tooltip/Tooltip' { - declare module.exports: any; -} - -declare module '@material-ui/core/transitions/utils' { - declare module.exports: any; -} - -declare module '@material-ui/core/Typography' { - declare module.exports: any; -} - -declare module '@material-ui/core/Typography/Typography' { - declare module.exports: any; -} - -declare module '@material-ui/core/umd/material-ui.development' { - declare module.exports: any; -} - -declare module '@material-ui/core/umd/material-ui.production.min' { - declare module.exports: any; -} - -declare module '@material-ui/core/Unstable_TrapFocus' { - declare module.exports: any; -} - -declare module '@material-ui/core/Unstable_TrapFocus/Unstable_TrapFocus' { - declare module.exports: any; -} - -declare module '@material-ui/core/useMediaQuery' { - declare module.exports: any; -} - -declare module '@material-ui/core/useMediaQuery/useMediaQuery' { - declare module.exports: any; -} - -declare module '@material-ui/core/useMediaQuery/useMediaQueryTheme' { - declare module.exports: any; -} - -declare module '@material-ui/core/useScrollTrigger' { - declare module.exports: any; -} - -declare module '@material-ui/core/useScrollTrigger/useScrollTrigger' { - declare module.exports: any; -} - -declare module '@material-ui/core/utils/capitalize' { - declare module.exports: any; -} - -declare module '@material-ui/core/utils/createChainedFunction' { - declare module.exports: any; -} - -declare module '@material-ui/core/utils/createSvgIcon' { - declare module.exports: any; -} - -declare module '@material-ui/core/utils/debounce' { - declare module.exports: any; -} - -declare module '@material-ui/core/utils/deprecatedPropType' { - declare module.exports: any; -} - -declare module '@material-ui/core/utils/getScrollbarSize' { - declare module.exports: any; -} - -declare module '@material-ui/core/utils' { - declare module.exports: any; -} - -declare module '@material-ui/core/utils/isMuiElement' { - declare module.exports: any; -} - -declare module '@material-ui/core/utils/ownerDocument' { - declare module.exports: any; -} - -declare module '@material-ui/core/utils/ownerWindow' { - declare module.exports: any; -} - -declare module '@material-ui/core/utils/requirePropFactory' { - declare module.exports: any; -} - -declare module '@material-ui/core/utils/scrollLeft' { - declare module.exports: any; -} - -declare module '@material-ui/core/utils/setRef' { - declare module.exports: any; -} - -declare module '@material-ui/core/utils/unstable_useId' { - declare module.exports: any; -} - -declare module '@material-ui/core/utils/unsupportedProp' { - declare module.exports: any; -} - -declare module '@material-ui/core/utils/useControlled' { - declare module.exports: any; -} - -declare module '@material-ui/core/utils/useEventCallback' { - declare module.exports: any; -} - -declare module '@material-ui/core/utils/useForkRef' { - declare module.exports: any; -} - -declare module '@material-ui/core/utils/useIsFocusVisible' { - declare module.exports: any; -} - -declare module '@material-ui/core/withMobileDialog' { - declare module.exports: any; -} - -declare module '@material-ui/core/withMobileDialog/withMobileDialog' { - declare module.exports: any; -} - -declare module '@material-ui/core/withWidth' { - declare module.exports: any; -} - -declare module '@material-ui/core/withWidth/withWidth' { - declare module.exports: any; -} - -declare module '@material-ui/core/Zoom' { - declare module.exports: any; -} - -declare module '@material-ui/core/Zoom/Zoom' { - declare module.exports: any; -} - -// Filename aliases -declare module '@material-ui/core/Accordion/Accordion.js' { - declare module.exports: $Exports<'@material-ui/core/Accordion/Accordion'>; -} -declare module '@material-ui/core/Accordion/AccordionContext.js' { - declare module.exports: $Exports<'@material-ui/core/Accordion/AccordionContext'>; -} -declare module '@material-ui/core/Accordion/index' { - declare module.exports: $Exports<'@material-ui/core/Accordion'>; -} -declare module '@material-ui/core/Accordion/index.js' { - declare module.exports: $Exports<'@material-ui/core/Accordion'>; -} -declare module '@material-ui/core/AccordionActions/AccordionActions.js' { - declare module.exports: $Exports<'@material-ui/core/AccordionActions/AccordionActions'>; -} -declare module '@material-ui/core/AccordionActions/index' { - declare module.exports: $Exports<'@material-ui/core/AccordionActions'>; -} -declare module '@material-ui/core/AccordionActions/index.js' { - declare module.exports: $Exports<'@material-ui/core/AccordionActions'>; -} -declare module '@material-ui/core/AccordionDetails/AccordionDetails.js' { - declare module.exports: $Exports<'@material-ui/core/AccordionDetails/AccordionDetails'>; -} -declare module '@material-ui/core/AccordionDetails/index' { - declare module.exports: $Exports<'@material-ui/core/AccordionDetails'>; -} -declare module '@material-ui/core/AccordionDetails/index.js' { - declare module.exports: $Exports<'@material-ui/core/AccordionDetails'>; -} -declare module '@material-ui/core/AccordionSummary/AccordionSummary.js' { - declare module.exports: $Exports<'@material-ui/core/AccordionSummary/AccordionSummary'>; -} -declare module '@material-ui/core/AccordionSummary/index' { - declare module.exports: $Exports<'@material-ui/core/AccordionSummary'>; -} -declare module '@material-ui/core/AccordionSummary/index.js' { - declare module.exports: $Exports<'@material-ui/core/AccordionSummary'>; -} -declare module '@material-ui/core/AppBar/AppBar.js' { - declare module.exports: $Exports<'@material-ui/core/AppBar/AppBar'>; -} -declare module '@material-ui/core/AppBar/index' { - declare module.exports: $Exports<'@material-ui/core/AppBar'>; -} -declare module '@material-ui/core/AppBar/index.js' { - declare module.exports: $Exports<'@material-ui/core/AppBar'>; -} -declare module '@material-ui/core/Avatar/Avatar.js' { - declare module.exports: $Exports<'@material-ui/core/Avatar/Avatar'>; -} -declare module '@material-ui/core/Avatar/index' { - declare module.exports: $Exports<'@material-ui/core/Avatar'>; -} -declare module '@material-ui/core/Avatar/index.js' { - declare module.exports: $Exports<'@material-ui/core/Avatar'>; -} -declare module '@material-ui/core/Backdrop/Backdrop.js' { - declare module.exports: $Exports<'@material-ui/core/Backdrop/Backdrop'>; -} -declare module '@material-ui/core/Backdrop/index' { - declare module.exports: $Exports<'@material-ui/core/Backdrop'>; -} -declare module '@material-ui/core/Backdrop/index.js' { - declare module.exports: $Exports<'@material-ui/core/Backdrop'>; -} -declare module '@material-ui/core/Badge/Badge.js' { - declare module.exports: $Exports<'@material-ui/core/Badge/Badge'>; -} -declare module '@material-ui/core/Badge/index' { - declare module.exports: $Exports<'@material-ui/core/Badge'>; -} -declare module '@material-ui/core/Badge/index.js' { - declare module.exports: $Exports<'@material-ui/core/Badge'>; -} -declare module '@material-ui/core/BottomNavigation/BottomNavigation.js' { - declare module.exports: $Exports<'@material-ui/core/BottomNavigation/BottomNavigation'>; -} -declare module '@material-ui/core/BottomNavigation/index' { - declare module.exports: $Exports<'@material-ui/core/BottomNavigation'>; -} -declare module '@material-ui/core/BottomNavigation/index.js' { - declare module.exports: $Exports<'@material-ui/core/BottomNavigation'>; -} -declare module '@material-ui/core/BottomNavigationAction/BottomNavigationAction.js' { - declare module.exports: $Exports<'@material-ui/core/BottomNavigationAction/BottomNavigationAction'>; -} -declare module '@material-ui/core/BottomNavigationAction/index' { - declare module.exports: $Exports<'@material-ui/core/BottomNavigationAction'>; -} -declare module '@material-ui/core/BottomNavigationAction/index.js' { - declare module.exports: $Exports<'@material-ui/core/BottomNavigationAction'>; -} -declare module '@material-ui/core/Box/Box.js' { - declare module.exports: $Exports<'@material-ui/core/Box/Box'>; -} -declare module '@material-ui/core/Box/index' { - declare module.exports: $Exports<'@material-ui/core/Box'>; -} -declare module '@material-ui/core/Box/index.js' { - declare module.exports: $Exports<'@material-ui/core/Box'>; -} -declare module '@material-ui/core/Breadcrumbs/BreadcrumbCollapsed.js' { - declare module.exports: $Exports<'@material-ui/core/Breadcrumbs/BreadcrumbCollapsed'>; -} -declare module '@material-ui/core/Breadcrumbs/Breadcrumbs.js' { - declare module.exports: $Exports<'@material-ui/core/Breadcrumbs/Breadcrumbs'>; -} -declare module '@material-ui/core/Breadcrumbs/index' { - declare module.exports: $Exports<'@material-ui/core/Breadcrumbs'>; -} -declare module '@material-ui/core/Breadcrumbs/index.js' { - declare module.exports: $Exports<'@material-ui/core/Breadcrumbs'>; -} -declare module '@material-ui/core/Button/Button.js' { - declare module.exports: $Exports<'@material-ui/core/Button/Button'>; -} -declare module '@material-ui/core/Button/index' { - declare module.exports: $Exports<'@material-ui/core/Button'>; -} -declare module '@material-ui/core/Button/index.js' { - declare module.exports: $Exports<'@material-ui/core/Button'>; -} -declare module '@material-ui/core/ButtonBase/ButtonBase.js' { - declare module.exports: $Exports<'@material-ui/core/ButtonBase/ButtonBase'>; -} -declare module '@material-ui/core/ButtonBase/index' { - declare module.exports: $Exports<'@material-ui/core/ButtonBase'>; -} -declare module '@material-ui/core/ButtonBase/index.js' { - declare module.exports: $Exports<'@material-ui/core/ButtonBase'>; -} -declare module '@material-ui/core/ButtonBase/Ripple.js' { - declare module.exports: $Exports<'@material-ui/core/ButtonBase/Ripple'>; -} -declare module '@material-ui/core/ButtonBase/TouchRipple.js' { - declare module.exports: $Exports<'@material-ui/core/ButtonBase/TouchRipple'>; -} -declare module '@material-ui/core/ButtonGroup/ButtonGroup.js' { - declare module.exports: $Exports<'@material-ui/core/ButtonGroup/ButtonGroup'>; -} -declare module '@material-ui/core/ButtonGroup/index' { - declare module.exports: $Exports<'@material-ui/core/ButtonGroup'>; -} -declare module '@material-ui/core/ButtonGroup/index.js' { - declare module.exports: $Exports<'@material-ui/core/ButtonGroup'>; -} -declare module '@material-ui/core/Card/Card.js' { - declare module.exports: $Exports<'@material-ui/core/Card/Card'>; -} -declare module '@material-ui/core/Card/index' { - declare module.exports: $Exports<'@material-ui/core/Card'>; -} -declare module '@material-ui/core/Card/index.js' { - declare module.exports: $Exports<'@material-ui/core/Card'>; -} -declare module '@material-ui/core/CardActionArea/CardActionArea.js' { - declare module.exports: $Exports<'@material-ui/core/CardActionArea/CardActionArea'>; -} -declare module '@material-ui/core/CardActionArea/index' { - declare module.exports: $Exports<'@material-ui/core/CardActionArea'>; -} -declare module '@material-ui/core/CardActionArea/index.js' { - declare module.exports: $Exports<'@material-ui/core/CardActionArea'>; -} -declare module '@material-ui/core/CardActions/CardActions.js' { - declare module.exports: $Exports<'@material-ui/core/CardActions/CardActions'>; -} -declare module '@material-ui/core/CardActions/index' { - declare module.exports: $Exports<'@material-ui/core/CardActions'>; -} -declare module '@material-ui/core/CardActions/index.js' { - declare module.exports: $Exports<'@material-ui/core/CardActions'>; -} -declare module '@material-ui/core/CardContent/CardContent.js' { - declare module.exports: $Exports<'@material-ui/core/CardContent/CardContent'>; -} -declare module '@material-ui/core/CardContent/index' { - declare module.exports: $Exports<'@material-ui/core/CardContent'>; -} -declare module '@material-ui/core/CardContent/index.js' { - declare module.exports: $Exports<'@material-ui/core/CardContent'>; -} -declare module '@material-ui/core/CardHeader/CardHeader.js' { - declare module.exports: $Exports<'@material-ui/core/CardHeader/CardHeader'>; -} -declare module '@material-ui/core/CardHeader/index' { - declare module.exports: $Exports<'@material-ui/core/CardHeader'>; -} -declare module '@material-ui/core/CardHeader/index.js' { - declare module.exports: $Exports<'@material-ui/core/CardHeader'>; -} -declare module '@material-ui/core/CardMedia/CardMedia.js' { - declare module.exports: $Exports<'@material-ui/core/CardMedia/CardMedia'>; -} -declare module '@material-ui/core/CardMedia/index' { - declare module.exports: $Exports<'@material-ui/core/CardMedia'>; -} -declare module '@material-ui/core/CardMedia/index.js' { - declare module.exports: $Exports<'@material-ui/core/CardMedia'>; -} -declare module '@material-ui/core/Checkbox/Checkbox.js' { - declare module.exports: $Exports<'@material-ui/core/Checkbox/Checkbox'>; -} -declare module '@material-ui/core/Checkbox/index' { - declare module.exports: $Exports<'@material-ui/core/Checkbox'>; -} -declare module '@material-ui/core/Checkbox/index.js' { - declare module.exports: $Exports<'@material-ui/core/Checkbox'>; -} -declare module '@material-ui/core/Chip/Chip.js' { - declare module.exports: $Exports<'@material-ui/core/Chip/Chip'>; -} -declare module '@material-ui/core/Chip/index' { - declare module.exports: $Exports<'@material-ui/core/Chip'>; -} -declare module '@material-ui/core/Chip/index.js' { - declare module.exports: $Exports<'@material-ui/core/Chip'>; -} -declare module '@material-ui/core/CircularProgress/CircularProgress.js' { - declare module.exports: $Exports<'@material-ui/core/CircularProgress/CircularProgress'>; -} -declare module '@material-ui/core/CircularProgress/index' { - declare module.exports: $Exports<'@material-ui/core/CircularProgress'>; -} -declare module '@material-ui/core/CircularProgress/index.js' { - declare module.exports: $Exports<'@material-ui/core/CircularProgress'>; -} -declare module '@material-ui/core/ClickAwayListener/ClickAwayListener.js' { - declare module.exports: $Exports<'@material-ui/core/ClickAwayListener/ClickAwayListener'>; -} -declare module '@material-ui/core/ClickAwayListener/index' { - declare module.exports: $Exports<'@material-ui/core/ClickAwayListener'>; -} -declare module '@material-ui/core/ClickAwayListener/index.js' { - declare module.exports: $Exports<'@material-ui/core/ClickAwayListener'>; -} -declare module '@material-ui/core/Collapse/Collapse.js' { - declare module.exports: $Exports<'@material-ui/core/Collapse/Collapse'>; -} -declare module '@material-ui/core/Collapse/index' { - declare module.exports: $Exports<'@material-ui/core/Collapse'>; -} -declare module '@material-ui/core/Collapse/index.js' { - declare module.exports: $Exports<'@material-ui/core/Collapse'>; -} -declare module '@material-ui/core/colors/amber.js' { - declare module.exports: $Exports<'@material-ui/core/colors/amber'>; -} -declare module '@material-ui/core/colors/blue.js' { - declare module.exports: $Exports<'@material-ui/core/colors/blue'>; -} -declare module '@material-ui/core/colors/blueGrey.js' { - declare module.exports: $Exports<'@material-ui/core/colors/blueGrey'>; -} -declare module '@material-ui/core/colors/brown.js' { - declare module.exports: $Exports<'@material-ui/core/colors/brown'>; -} -declare module '@material-ui/core/colors/common.js' { - declare module.exports: $Exports<'@material-ui/core/colors/common'>; -} -declare module '@material-ui/core/colors/cyan.js' { - declare module.exports: $Exports<'@material-ui/core/colors/cyan'>; -} -declare module '@material-ui/core/colors/deepOrange.js' { - declare module.exports: $Exports<'@material-ui/core/colors/deepOrange'>; -} -declare module '@material-ui/core/colors/deepPurple.js' { - declare module.exports: $Exports<'@material-ui/core/colors/deepPurple'>; -} -declare module '@material-ui/core/colors/green.js' { - declare module.exports: $Exports<'@material-ui/core/colors/green'>; -} -declare module '@material-ui/core/colors/grey.js' { - declare module.exports: $Exports<'@material-ui/core/colors/grey'>; -} -declare module '@material-ui/core/colors/index' { - declare module.exports: $Exports<'@material-ui/core/colors'>; -} -declare module '@material-ui/core/colors/index.js' { - declare module.exports: $Exports<'@material-ui/core/colors'>; -} -declare module '@material-ui/core/colors/indigo.js' { - declare module.exports: $Exports<'@material-ui/core/colors/indigo'>; -} -declare module '@material-ui/core/colors/lightBlue.js' { - declare module.exports: $Exports<'@material-ui/core/colors/lightBlue'>; -} -declare module '@material-ui/core/colors/lightGreen.js' { - declare module.exports: $Exports<'@material-ui/core/colors/lightGreen'>; -} -declare module '@material-ui/core/colors/lime.js' { - declare module.exports: $Exports<'@material-ui/core/colors/lime'>; -} -declare module '@material-ui/core/colors/orange.js' { - declare module.exports: $Exports<'@material-ui/core/colors/orange'>; -} -declare module '@material-ui/core/colors/pink.js' { - declare module.exports: $Exports<'@material-ui/core/colors/pink'>; -} -declare module '@material-ui/core/colors/purple.js' { - declare module.exports: $Exports<'@material-ui/core/colors/purple'>; -} -declare module '@material-ui/core/colors/red.js' { - declare module.exports: $Exports<'@material-ui/core/colors/red'>; -} -declare module '@material-ui/core/colors/teal.js' { - declare module.exports: $Exports<'@material-ui/core/colors/teal'>; -} -declare module '@material-ui/core/colors/yellow.js' { - declare module.exports: $Exports<'@material-ui/core/colors/yellow'>; -} -declare module '@material-ui/core/Container/Container.js' { - declare module.exports: $Exports<'@material-ui/core/Container/Container'>; -} -declare module '@material-ui/core/Container/index' { - declare module.exports: $Exports<'@material-ui/core/Container'>; -} -declare module '@material-ui/core/Container/index.js' { - declare module.exports: $Exports<'@material-ui/core/Container'>; -} -declare module '@material-ui/core/CssBaseline/CssBaseline.js' { - declare module.exports: $Exports<'@material-ui/core/CssBaseline/CssBaseline'>; -} -declare module '@material-ui/core/CssBaseline/index' { - declare module.exports: $Exports<'@material-ui/core/CssBaseline'>; -} -declare module '@material-ui/core/CssBaseline/index.js' { - declare module.exports: $Exports<'@material-ui/core/CssBaseline'>; -} -declare module '@material-ui/core/Dialog/Dialog.js' { - declare module.exports: $Exports<'@material-ui/core/Dialog/Dialog'>; -} -declare module '@material-ui/core/Dialog/index' { - declare module.exports: $Exports<'@material-ui/core/Dialog'>; -} -declare module '@material-ui/core/Dialog/index.js' { - declare module.exports: $Exports<'@material-ui/core/Dialog'>; -} -declare module '@material-ui/core/DialogActions/DialogActions.js' { - declare module.exports: $Exports<'@material-ui/core/DialogActions/DialogActions'>; -} -declare module '@material-ui/core/DialogActions/index' { - declare module.exports: $Exports<'@material-ui/core/DialogActions'>; -} -declare module '@material-ui/core/DialogActions/index.js' { - declare module.exports: $Exports<'@material-ui/core/DialogActions'>; -} -declare module '@material-ui/core/DialogContent/DialogContent.js' { - declare module.exports: $Exports<'@material-ui/core/DialogContent/DialogContent'>; -} -declare module '@material-ui/core/DialogContent/index' { - declare module.exports: $Exports<'@material-ui/core/DialogContent'>; -} -declare module '@material-ui/core/DialogContent/index.js' { - declare module.exports: $Exports<'@material-ui/core/DialogContent'>; -} -declare module '@material-ui/core/DialogContentText/DialogContentText.js' { - declare module.exports: $Exports<'@material-ui/core/DialogContentText/DialogContentText'>; -} -declare module '@material-ui/core/DialogContentText/index' { - declare module.exports: $Exports<'@material-ui/core/DialogContentText'>; -} -declare module '@material-ui/core/DialogContentText/index.js' { - declare module.exports: $Exports<'@material-ui/core/DialogContentText'>; -} -declare module '@material-ui/core/DialogTitle/DialogTitle.js' { - declare module.exports: $Exports<'@material-ui/core/DialogTitle/DialogTitle'>; -} -declare module '@material-ui/core/DialogTitle/index' { - declare module.exports: $Exports<'@material-ui/core/DialogTitle'>; -} -declare module '@material-ui/core/DialogTitle/index.js' { - declare module.exports: $Exports<'@material-ui/core/DialogTitle'>; -} -declare module '@material-ui/core/Divider/Divider.js' { - declare module.exports: $Exports<'@material-ui/core/Divider/Divider'>; -} -declare module '@material-ui/core/Divider/index' { - declare module.exports: $Exports<'@material-ui/core/Divider'>; -} -declare module '@material-ui/core/Divider/index.js' { - declare module.exports: $Exports<'@material-ui/core/Divider'>; -} -declare module '@material-ui/core/Drawer/Drawer.js' { - declare module.exports: $Exports<'@material-ui/core/Drawer/Drawer'>; -} -declare module '@material-ui/core/Drawer/index' { - declare module.exports: $Exports<'@material-ui/core/Drawer'>; -} -declare module '@material-ui/core/Drawer/index.js' { - declare module.exports: $Exports<'@material-ui/core/Drawer'>; -} -declare module '@material-ui/core/es/Accordion/Accordion.js' { - declare module.exports: $Exports<'@material-ui/core/es/Accordion/Accordion'>; -} -declare module '@material-ui/core/es/Accordion/AccordionContext.js' { - declare module.exports: $Exports<'@material-ui/core/es/Accordion/AccordionContext'>; -} -declare module '@material-ui/core/es/Accordion/index' { - declare module.exports: $Exports<'@material-ui/core/es/Accordion'>; -} -declare module '@material-ui/core/es/Accordion/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/Accordion'>; -} -declare module '@material-ui/core/es/AccordionActions/AccordionActions.js' { - declare module.exports: $Exports<'@material-ui/core/es/AccordionActions/AccordionActions'>; -} -declare module '@material-ui/core/es/AccordionActions/index' { - declare module.exports: $Exports<'@material-ui/core/es/AccordionActions'>; -} -declare module '@material-ui/core/es/AccordionActions/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/AccordionActions'>; -} -declare module '@material-ui/core/es/AccordionDetails/AccordionDetails.js' { - declare module.exports: $Exports<'@material-ui/core/es/AccordionDetails/AccordionDetails'>; -} -declare module '@material-ui/core/es/AccordionDetails/index' { - declare module.exports: $Exports<'@material-ui/core/es/AccordionDetails'>; -} -declare module '@material-ui/core/es/AccordionDetails/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/AccordionDetails'>; -} -declare module '@material-ui/core/es/AccordionSummary/AccordionSummary.js' { - declare module.exports: $Exports<'@material-ui/core/es/AccordionSummary/AccordionSummary'>; -} -declare module '@material-ui/core/es/AccordionSummary/index' { - declare module.exports: $Exports<'@material-ui/core/es/AccordionSummary'>; -} -declare module '@material-ui/core/es/AccordionSummary/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/AccordionSummary'>; -} -declare module '@material-ui/core/es/AppBar/AppBar.js' { - declare module.exports: $Exports<'@material-ui/core/es/AppBar/AppBar'>; -} -declare module '@material-ui/core/es/AppBar/index' { - declare module.exports: $Exports<'@material-ui/core/es/AppBar'>; -} -declare module '@material-ui/core/es/AppBar/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/AppBar'>; -} -declare module '@material-ui/core/es/Avatar/Avatar.js' { - declare module.exports: $Exports<'@material-ui/core/es/Avatar/Avatar'>; -} -declare module '@material-ui/core/es/Avatar/index' { - declare module.exports: $Exports<'@material-ui/core/es/Avatar'>; -} -declare module '@material-ui/core/es/Avatar/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/Avatar'>; -} -declare module '@material-ui/core/es/Backdrop/Backdrop.js' { - declare module.exports: $Exports<'@material-ui/core/es/Backdrop/Backdrop'>; -} -declare module '@material-ui/core/es/Backdrop/index' { - declare module.exports: $Exports<'@material-ui/core/es/Backdrop'>; -} -declare module '@material-ui/core/es/Backdrop/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/Backdrop'>; -} -declare module '@material-ui/core/es/Badge/Badge.js' { - declare module.exports: $Exports<'@material-ui/core/es/Badge/Badge'>; -} -declare module '@material-ui/core/es/Badge/index' { - declare module.exports: $Exports<'@material-ui/core/es/Badge'>; -} -declare module '@material-ui/core/es/Badge/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/Badge'>; -} -declare module '@material-ui/core/es/BottomNavigation/BottomNavigation.js' { - declare module.exports: $Exports<'@material-ui/core/es/BottomNavigation/BottomNavigation'>; -} -declare module '@material-ui/core/es/BottomNavigation/index' { - declare module.exports: $Exports<'@material-ui/core/es/BottomNavigation'>; -} -declare module '@material-ui/core/es/BottomNavigation/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/BottomNavigation'>; -} -declare module '@material-ui/core/es/BottomNavigationAction/BottomNavigationAction.js' { - declare module.exports: $Exports<'@material-ui/core/es/BottomNavigationAction/BottomNavigationAction'>; -} -declare module '@material-ui/core/es/BottomNavigationAction/index' { - declare module.exports: $Exports<'@material-ui/core/es/BottomNavigationAction'>; -} -declare module '@material-ui/core/es/BottomNavigationAction/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/BottomNavigationAction'>; -} -declare module '@material-ui/core/es/Box/Box.js' { - declare module.exports: $Exports<'@material-ui/core/es/Box/Box'>; -} -declare module '@material-ui/core/es/Box/index' { - declare module.exports: $Exports<'@material-ui/core/es/Box'>; -} -declare module '@material-ui/core/es/Box/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/Box'>; -} -declare module '@material-ui/core/es/Breadcrumbs/BreadcrumbCollapsed.js' { - declare module.exports: $Exports<'@material-ui/core/es/Breadcrumbs/BreadcrumbCollapsed'>; -} -declare module '@material-ui/core/es/Breadcrumbs/Breadcrumbs.js' { - declare module.exports: $Exports<'@material-ui/core/es/Breadcrumbs/Breadcrumbs'>; -} -declare module '@material-ui/core/es/Breadcrumbs/index' { - declare module.exports: $Exports<'@material-ui/core/es/Breadcrumbs'>; -} -declare module '@material-ui/core/es/Breadcrumbs/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/Breadcrumbs'>; -} -declare module '@material-ui/core/es/Button/Button.js' { - declare module.exports: $Exports<'@material-ui/core/es/Button/Button'>; -} -declare module '@material-ui/core/es/Button/index' { - declare module.exports: $Exports<'@material-ui/core/es/Button'>; -} -declare module '@material-ui/core/es/Button/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/Button'>; -} -declare module '@material-ui/core/es/ButtonBase/ButtonBase.js' { - declare module.exports: $Exports<'@material-ui/core/es/ButtonBase/ButtonBase'>; -} -declare module '@material-ui/core/es/ButtonBase/index' { - declare module.exports: $Exports<'@material-ui/core/es/ButtonBase'>; -} -declare module '@material-ui/core/es/ButtonBase/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/ButtonBase'>; -} -declare module '@material-ui/core/es/ButtonBase/Ripple.js' { - declare module.exports: $Exports<'@material-ui/core/es/ButtonBase/Ripple'>; -} -declare module '@material-ui/core/es/ButtonBase/TouchRipple.js' { - declare module.exports: $Exports<'@material-ui/core/es/ButtonBase/TouchRipple'>; -} -declare module '@material-ui/core/es/ButtonGroup/ButtonGroup.js' { - declare module.exports: $Exports<'@material-ui/core/es/ButtonGroup/ButtonGroup'>; -} -declare module '@material-ui/core/es/ButtonGroup/index' { - declare module.exports: $Exports<'@material-ui/core/es/ButtonGroup'>; -} -declare module '@material-ui/core/es/ButtonGroup/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/ButtonGroup'>; -} -declare module '@material-ui/core/es/Card/Card.js' { - declare module.exports: $Exports<'@material-ui/core/es/Card/Card'>; -} -declare module '@material-ui/core/es/Card/index' { - declare module.exports: $Exports<'@material-ui/core/es/Card'>; -} -declare module '@material-ui/core/es/Card/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/Card'>; -} -declare module '@material-ui/core/es/CardActionArea/CardActionArea.js' { - declare module.exports: $Exports<'@material-ui/core/es/CardActionArea/CardActionArea'>; -} -declare module '@material-ui/core/es/CardActionArea/index' { - declare module.exports: $Exports<'@material-ui/core/es/CardActionArea'>; -} -declare module '@material-ui/core/es/CardActionArea/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/CardActionArea'>; -} -declare module '@material-ui/core/es/CardActions/CardActions.js' { - declare module.exports: $Exports<'@material-ui/core/es/CardActions/CardActions'>; -} -declare module '@material-ui/core/es/CardActions/index' { - declare module.exports: $Exports<'@material-ui/core/es/CardActions'>; -} -declare module '@material-ui/core/es/CardActions/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/CardActions'>; -} -declare module '@material-ui/core/es/CardContent/CardContent.js' { - declare module.exports: $Exports<'@material-ui/core/es/CardContent/CardContent'>; -} -declare module '@material-ui/core/es/CardContent/index' { - declare module.exports: $Exports<'@material-ui/core/es/CardContent'>; -} -declare module '@material-ui/core/es/CardContent/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/CardContent'>; -} -declare module '@material-ui/core/es/CardHeader/CardHeader.js' { - declare module.exports: $Exports<'@material-ui/core/es/CardHeader/CardHeader'>; -} -declare module '@material-ui/core/es/CardHeader/index' { - declare module.exports: $Exports<'@material-ui/core/es/CardHeader'>; -} -declare module '@material-ui/core/es/CardHeader/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/CardHeader'>; -} -declare module '@material-ui/core/es/CardMedia/CardMedia.js' { - declare module.exports: $Exports<'@material-ui/core/es/CardMedia/CardMedia'>; -} -declare module '@material-ui/core/es/CardMedia/index' { - declare module.exports: $Exports<'@material-ui/core/es/CardMedia'>; -} -declare module '@material-ui/core/es/CardMedia/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/CardMedia'>; -} -declare module '@material-ui/core/es/Checkbox/Checkbox.js' { - declare module.exports: $Exports<'@material-ui/core/es/Checkbox/Checkbox'>; -} -declare module '@material-ui/core/es/Checkbox/index' { - declare module.exports: $Exports<'@material-ui/core/es/Checkbox'>; -} -declare module '@material-ui/core/es/Checkbox/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/Checkbox'>; -} -declare module '@material-ui/core/es/Chip/Chip.js' { - declare module.exports: $Exports<'@material-ui/core/es/Chip/Chip'>; -} -declare module '@material-ui/core/es/Chip/index' { - declare module.exports: $Exports<'@material-ui/core/es/Chip'>; -} -declare module '@material-ui/core/es/Chip/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/Chip'>; -} -declare module '@material-ui/core/es/CircularProgress/CircularProgress.js' { - declare module.exports: $Exports<'@material-ui/core/es/CircularProgress/CircularProgress'>; -} -declare module '@material-ui/core/es/CircularProgress/index' { - declare module.exports: $Exports<'@material-ui/core/es/CircularProgress'>; -} -declare module '@material-ui/core/es/CircularProgress/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/CircularProgress'>; -} -declare module '@material-ui/core/es/ClickAwayListener/ClickAwayListener.js' { - declare module.exports: $Exports<'@material-ui/core/es/ClickAwayListener/ClickAwayListener'>; -} -declare module '@material-ui/core/es/ClickAwayListener/index' { - declare module.exports: $Exports<'@material-ui/core/es/ClickAwayListener'>; -} -declare module '@material-ui/core/es/ClickAwayListener/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/ClickAwayListener'>; -} -declare module '@material-ui/core/es/Collapse/Collapse.js' { - declare module.exports: $Exports<'@material-ui/core/es/Collapse/Collapse'>; -} -declare module '@material-ui/core/es/Collapse/index' { - declare module.exports: $Exports<'@material-ui/core/es/Collapse'>; -} -declare module '@material-ui/core/es/Collapse/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/Collapse'>; -} -declare module '@material-ui/core/es/colors/amber.js' { - declare module.exports: $Exports<'@material-ui/core/es/colors/amber'>; -} -declare module '@material-ui/core/es/colors/blue.js' { - declare module.exports: $Exports<'@material-ui/core/es/colors/blue'>; -} -declare module '@material-ui/core/es/colors/blueGrey.js' { - declare module.exports: $Exports<'@material-ui/core/es/colors/blueGrey'>; -} -declare module '@material-ui/core/es/colors/brown.js' { - declare module.exports: $Exports<'@material-ui/core/es/colors/brown'>; -} -declare module '@material-ui/core/es/colors/common.js' { - declare module.exports: $Exports<'@material-ui/core/es/colors/common'>; -} -declare module '@material-ui/core/es/colors/cyan.js' { - declare module.exports: $Exports<'@material-ui/core/es/colors/cyan'>; -} -declare module '@material-ui/core/es/colors/deepOrange.js' { - declare module.exports: $Exports<'@material-ui/core/es/colors/deepOrange'>; -} -declare module '@material-ui/core/es/colors/deepPurple.js' { - declare module.exports: $Exports<'@material-ui/core/es/colors/deepPurple'>; -} -declare module '@material-ui/core/es/colors/green.js' { - declare module.exports: $Exports<'@material-ui/core/es/colors/green'>; -} -declare module '@material-ui/core/es/colors/grey.js' { - declare module.exports: $Exports<'@material-ui/core/es/colors/grey'>; -} -declare module '@material-ui/core/es/colors/index' { - declare module.exports: $Exports<'@material-ui/core/es/colors'>; -} -declare module '@material-ui/core/es/colors/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/colors'>; -} -declare module '@material-ui/core/es/colors/indigo.js' { - declare module.exports: $Exports<'@material-ui/core/es/colors/indigo'>; -} -declare module '@material-ui/core/es/colors/lightBlue.js' { - declare module.exports: $Exports<'@material-ui/core/es/colors/lightBlue'>; -} -declare module '@material-ui/core/es/colors/lightGreen.js' { - declare module.exports: $Exports<'@material-ui/core/es/colors/lightGreen'>; -} -declare module '@material-ui/core/es/colors/lime.js' { - declare module.exports: $Exports<'@material-ui/core/es/colors/lime'>; -} -declare module '@material-ui/core/es/colors/orange.js' { - declare module.exports: $Exports<'@material-ui/core/es/colors/orange'>; -} -declare module '@material-ui/core/es/colors/pink.js' { - declare module.exports: $Exports<'@material-ui/core/es/colors/pink'>; -} -declare module '@material-ui/core/es/colors/purple.js' { - declare module.exports: $Exports<'@material-ui/core/es/colors/purple'>; -} -declare module '@material-ui/core/es/colors/red.js' { - declare module.exports: $Exports<'@material-ui/core/es/colors/red'>; -} -declare module '@material-ui/core/es/colors/teal.js' { - declare module.exports: $Exports<'@material-ui/core/es/colors/teal'>; -} -declare module '@material-ui/core/es/colors/yellow.js' { - declare module.exports: $Exports<'@material-ui/core/es/colors/yellow'>; -} -declare module '@material-ui/core/es/Container/Container.js' { - declare module.exports: $Exports<'@material-ui/core/es/Container/Container'>; -} -declare module '@material-ui/core/es/Container/index' { - declare module.exports: $Exports<'@material-ui/core/es/Container'>; -} -declare module '@material-ui/core/es/Container/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/Container'>; -} -declare module '@material-ui/core/es/CssBaseline/CssBaseline.js' { - declare module.exports: $Exports<'@material-ui/core/es/CssBaseline/CssBaseline'>; -} -declare module '@material-ui/core/es/CssBaseline/index' { - declare module.exports: $Exports<'@material-ui/core/es/CssBaseline'>; -} -declare module '@material-ui/core/es/CssBaseline/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/CssBaseline'>; -} -declare module '@material-ui/core/es/Dialog/Dialog.js' { - declare module.exports: $Exports<'@material-ui/core/es/Dialog/Dialog'>; -} -declare module '@material-ui/core/es/Dialog/index' { - declare module.exports: $Exports<'@material-ui/core/es/Dialog'>; -} -declare module '@material-ui/core/es/Dialog/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/Dialog'>; -} -declare module '@material-ui/core/es/DialogActions/DialogActions.js' { - declare module.exports: $Exports<'@material-ui/core/es/DialogActions/DialogActions'>; -} -declare module '@material-ui/core/es/DialogActions/index' { - declare module.exports: $Exports<'@material-ui/core/es/DialogActions'>; -} -declare module '@material-ui/core/es/DialogActions/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/DialogActions'>; -} -declare module '@material-ui/core/es/DialogContent/DialogContent.js' { - declare module.exports: $Exports<'@material-ui/core/es/DialogContent/DialogContent'>; -} -declare module '@material-ui/core/es/DialogContent/index' { - declare module.exports: $Exports<'@material-ui/core/es/DialogContent'>; -} -declare module '@material-ui/core/es/DialogContent/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/DialogContent'>; -} -declare module '@material-ui/core/es/DialogContentText/DialogContentText.js' { - declare module.exports: $Exports<'@material-ui/core/es/DialogContentText/DialogContentText'>; -} -declare module '@material-ui/core/es/DialogContentText/index' { - declare module.exports: $Exports<'@material-ui/core/es/DialogContentText'>; -} -declare module '@material-ui/core/es/DialogContentText/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/DialogContentText'>; -} -declare module '@material-ui/core/es/DialogTitle/DialogTitle.js' { - declare module.exports: $Exports<'@material-ui/core/es/DialogTitle/DialogTitle'>; -} -declare module '@material-ui/core/es/DialogTitle/index' { - declare module.exports: $Exports<'@material-ui/core/es/DialogTitle'>; -} -declare module '@material-ui/core/es/DialogTitle/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/DialogTitle'>; -} -declare module '@material-ui/core/es/Divider/Divider.js' { - declare module.exports: $Exports<'@material-ui/core/es/Divider/Divider'>; -} -declare module '@material-ui/core/es/Divider/index' { - declare module.exports: $Exports<'@material-ui/core/es/Divider'>; -} -declare module '@material-ui/core/es/Divider/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/Divider'>; -} -declare module '@material-ui/core/es/Drawer/Drawer.js' { - declare module.exports: $Exports<'@material-ui/core/es/Drawer/Drawer'>; -} -declare module '@material-ui/core/es/Drawer/index' { - declare module.exports: $Exports<'@material-ui/core/es/Drawer'>; -} -declare module '@material-ui/core/es/Drawer/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/Drawer'>; -} -declare module '@material-ui/core/es/ExpansionPanel/ExpansionPanel.js' { - declare module.exports: $Exports<'@material-ui/core/es/ExpansionPanel/ExpansionPanel'>; -} -declare module '@material-ui/core/es/ExpansionPanel/ExpansionPanelContext.js' { - declare module.exports: $Exports<'@material-ui/core/es/ExpansionPanel/ExpansionPanelContext'>; -} -declare module '@material-ui/core/es/ExpansionPanel/index' { - declare module.exports: $Exports<'@material-ui/core/es/ExpansionPanel'>; -} -declare module '@material-ui/core/es/ExpansionPanel/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/ExpansionPanel'>; -} -declare module '@material-ui/core/es/ExpansionPanelActions/ExpansionPanelActions.js' { - declare module.exports: $Exports<'@material-ui/core/es/ExpansionPanelActions/ExpansionPanelActions'>; -} -declare module '@material-ui/core/es/ExpansionPanelActions/index' { - declare module.exports: $Exports<'@material-ui/core/es/ExpansionPanelActions'>; -} -declare module '@material-ui/core/es/ExpansionPanelActions/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/ExpansionPanelActions'>; -} -declare module '@material-ui/core/es/ExpansionPanelDetails/ExpansionPanelDetails.js' { - declare module.exports: $Exports<'@material-ui/core/es/ExpansionPanelDetails/ExpansionPanelDetails'>; -} -declare module '@material-ui/core/es/ExpansionPanelDetails/index' { - declare module.exports: $Exports<'@material-ui/core/es/ExpansionPanelDetails'>; -} -declare module '@material-ui/core/es/ExpansionPanelDetails/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/ExpansionPanelDetails'>; -} -declare module '@material-ui/core/es/ExpansionPanelSummary/ExpansionPanelSummary.js' { - declare module.exports: $Exports<'@material-ui/core/es/ExpansionPanelSummary/ExpansionPanelSummary'>; -} -declare module '@material-ui/core/es/ExpansionPanelSummary/index' { - declare module.exports: $Exports<'@material-ui/core/es/ExpansionPanelSummary'>; -} -declare module '@material-ui/core/es/ExpansionPanelSummary/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/ExpansionPanelSummary'>; -} -declare module '@material-ui/core/es/Fab/Fab.js' { - declare module.exports: $Exports<'@material-ui/core/es/Fab/Fab'>; -} -declare module '@material-ui/core/es/Fab/index' { - declare module.exports: $Exports<'@material-ui/core/es/Fab'>; -} -declare module '@material-ui/core/es/Fab/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/Fab'>; -} -declare module '@material-ui/core/es/Fade/Fade.js' { - declare module.exports: $Exports<'@material-ui/core/es/Fade/Fade'>; -} -declare module '@material-ui/core/es/Fade/index' { - declare module.exports: $Exports<'@material-ui/core/es/Fade'>; -} -declare module '@material-ui/core/es/Fade/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/Fade'>; -} -declare module '@material-ui/core/es/FilledInput/FilledInput.js' { - declare module.exports: $Exports<'@material-ui/core/es/FilledInput/FilledInput'>; -} -declare module '@material-ui/core/es/FilledInput/index' { - declare module.exports: $Exports<'@material-ui/core/es/FilledInput'>; -} -declare module '@material-ui/core/es/FilledInput/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/FilledInput'>; -} -declare module '@material-ui/core/es/FormControl/FormControl.js' { - declare module.exports: $Exports<'@material-ui/core/es/FormControl/FormControl'>; -} -declare module '@material-ui/core/es/FormControl/FormControlContext.js' { - declare module.exports: $Exports<'@material-ui/core/es/FormControl/FormControlContext'>; -} -declare module '@material-ui/core/es/FormControl/formControlState.js' { - declare module.exports: $Exports<'@material-ui/core/es/FormControl/formControlState'>; -} -declare module '@material-ui/core/es/FormControl/index' { - declare module.exports: $Exports<'@material-ui/core/es/FormControl'>; -} -declare module '@material-ui/core/es/FormControl/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/FormControl'>; -} -declare module '@material-ui/core/es/FormControl/useFormControl.js' { - declare module.exports: $Exports<'@material-ui/core/es/FormControl/useFormControl'>; -} -declare module '@material-ui/core/es/FormControlLabel/FormControlLabel.js' { - declare module.exports: $Exports<'@material-ui/core/es/FormControlLabel/FormControlLabel'>; -} -declare module '@material-ui/core/es/FormControlLabel/index' { - declare module.exports: $Exports<'@material-ui/core/es/FormControlLabel'>; -} -declare module '@material-ui/core/es/FormControlLabel/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/FormControlLabel'>; -} -declare module '@material-ui/core/es/FormGroup/FormGroup.js' { - declare module.exports: $Exports<'@material-ui/core/es/FormGroup/FormGroup'>; -} -declare module '@material-ui/core/es/FormGroup/index' { - declare module.exports: $Exports<'@material-ui/core/es/FormGroup'>; -} -declare module '@material-ui/core/es/FormGroup/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/FormGroup'>; -} -declare module '@material-ui/core/es/FormHelperText/FormHelperText.js' { - declare module.exports: $Exports<'@material-ui/core/es/FormHelperText/FormHelperText'>; -} -declare module '@material-ui/core/es/FormHelperText/index' { - declare module.exports: $Exports<'@material-ui/core/es/FormHelperText'>; -} -declare module '@material-ui/core/es/FormHelperText/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/FormHelperText'>; -} -declare module '@material-ui/core/es/FormLabel/FormLabel.js' { - declare module.exports: $Exports<'@material-ui/core/es/FormLabel/FormLabel'>; -} -declare module '@material-ui/core/es/FormLabel/index' { - declare module.exports: $Exports<'@material-ui/core/es/FormLabel'>; -} -declare module '@material-ui/core/es/FormLabel/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/FormLabel'>; -} -declare module '@material-ui/core/es/Grid/Grid.js' { - declare module.exports: $Exports<'@material-ui/core/es/Grid/Grid'>; -} -declare module '@material-ui/core/es/Grid/index' { - declare module.exports: $Exports<'@material-ui/core/es/Grid'>; -} -declare module '@material-ui/core/es/Grid/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/Grid'>; -} -declare module '@material-ui/core/es/GridList/GridList.js' { - declare module.exports: $Exports<'@material-ui/core/es/GridList/GridList'>; -} -declare module '@material-ui/core/es/GridList/index' { - declare module.exports: $Exports<'@material-ui/core/es/GridList'>; -} -declare module '@material-ui/core/es/GridList/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/GridList'>; -} -declare module '@material-ui/core/es/GridListTile/GridListTile.js' { - declare module.exports: $Exports<'@material-ui/core/es/GridListTile/GridListTile'>; -} -declare module '@material-ui/core/es/GridListTile/index' { - declare module.exports: $Exports<'@material-ui/core/es/GridListTile'>; -} -declare module '@material-ui/core/es/GridListTile/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/GridListTile'>; -} -declare module '@material-ui/core/es/GridListTileBar/GridListTileBar.js' { - declare module.exports: $Exports<'@material-ui/core/es/GridListTileBar/GridListTileBar'>; -} -declare module '@material-ui/core/es/GridListTileBar/index' { - declare module.exports: $Exports<'@material-ui/core/es/GridListTileBar'>; -} -declare module '@material-ui/core/es/GridListTileBar/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/GridListTileBar'>; -} -declare module '@material-ui/core/es/Grow/Grow.js' { - declare module.exports: $Exports<'@material-ui/core/es/Grow/Grow'>; -} -declare module '@material-ui/core/es/Grow/index' { - declare module.exports: $Exports<'@material-ui/core/es/Grow'>; -} -declare module '@material-ui/core/es/Grow/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/Grow'>; -} -declare module '@material-ui/core/es/Hidden/Hidden.js' { - declare module.exports: $Exports<'@material-ui/core/es/Hidden/Hidden'>; -} -declare module '@material-ui/core/es/Hidden/HiddenCss.js' { - declare module.exports: $Exports<'@material-ui/core/es/Hidden/HiddenCss'>; -} -declare module '@material-ui/core/es/Hidden/HiddenJs.js' { - declare module.exports: $Exports<'@material-ui/core/es/Hidden/HiddenJs'>; -} -declare module '@material-ui/core/es/Hidden/index' { - declare module.exports: $Exports<'@material-ui/core/es/Hidden'>; -} -declare module '@material-ui/core/es/Hidden/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/Hidden'>; -} -declare module '@material-ui/core/es/Icon/Icon.js' { - declare module.exports: $Exports<'@material-ui/core/es/Icon/Icon'>; -} -declare module '@material-ui/core/es/Icon/index' { - declare module.exports: $Exports<'@material-ui/core/es/Icon'>; -} -declare module '@material-ui/core/es/Icon/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/Icon'>; -} -declare module '@material-ui/core/es/IconButton/IconButton.js' { - declare module.exports: $Exports<'@material-ui/core/es/IconButton/IconButton'>; -} -declare module '@material-ui/core/es/IconButton/index' { - declare module.exports: $Exports<'@material-ui/core/es/IconButton'>; -} -declare module '@material-ui/core/es/IconButton/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/IconButton'>; -} -declare module '@material-ui/core/es/index' { - declare module.exports: $Exports<'@material-ui/core/es'>; -} -declare module '@material-ui/core/es/index.js' { - declare module.exports: $Exports<'@material-ui/core/es'>; -} -declare module '@material-ui/core/es/Input/index' { - declare module.exports: $Exports<'@material-ui/core/es/Input'>; -} -declare module '@material-ui/core/es/Input/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/Input'>; -} -declare module '@material-ui/core/es/Input/Input.js' { - declare module.exports: $Exports<'@material-ui/core/es/Input/Input'>; -} -declare module '@material-ui/core/es/InputAdornment/index' { - declare module.exports: $Exports<'@material-ui/core/es/InputAdornment'>; -} -declare module '@material-ui/core/es/InputAdornment/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/InputAdornment'>; -} -declare module '@material-ui/core/es/InputAdornment/InputAdornment.js' { - declare module.exports: $Exports<'@material-ui/core/es/InputAdornment/InputAdornment'>; -} -declare module '@material-ui/core/es/InputBase/index' { - declare module.exports: $Exports<'@material-ui/core/es/InputBase'>; -} -declare module '@material-ui/core/es/InputBase/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/InputBase'>; -} -declare module '@material-ui/core/es/InputBase/InputBase.js' { - declare module.exports: $Exports<'@material-ui/core/es/InputBase/InputBase'>; -} -declare module '@material-ui/core/es/InputBase/utils.js' { - declare module.exports: $Exports<'@material-ui/core/es/InputBase/utils'>; -} -declare module '@material-ui/core/es/InputLabel/index' { - declare module.exports: $Exports<'@material-ui/core/es/InputLabel'>; -} -declare module '@material-ui/core/es/InputLabel/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/InputLabel'>; -} -declare module '@material-ui/core/es/InputLabel/InputLabel.js' { - declare module.exports: $Exports<'@material-ui/core/es/InputLabel/InputLabel'>; -} -declare module '@material-ui/core/es/internal/animate.js' { - declare module.exports: $Exports<'@material-ui/core/es/internal/animate'>; -} -declare module '@material-ui/core/es/internal/svg-icons/ArrowDownward.js' { - declare module.exports: $Exports<'@material-ui/core/es/internal/svg-icons/ArrowDownward'>; -} -declare module '@material-ui/core/es/internal/svg-icons/ArrowDropDown.js' { - declare module.exports: $Exports<'@material-ui/core/es/internal/svg-icons/ArrowDropDown'>; -} -declare module '@material-ui/core/es/internal/svg-icons/Cancel.js' { - declare module.exports: $Exports<'@material-ui/core/es/internal/svg-icons/Cancel'>; -} -declare module '@material-ui/core/es/internal/svg-icons/CheckBox.js' { - declare module.exports: $Exports<'@material-ui/core/es/internal/svg-icons/CheckBox'>; -} -declare module '@material-ui/core/es/internal/svg-icons/CheckBoxOutlineBlank.js' { - declare module.exports: $Exports<'@material-ui/core/es/internal/svg-icons/CheckBoxOutlineBlank'>; -} -declare module '@material-ui/core/es/internal/svg-icons/CheckCircle.js' { - declare module.exports: $Exports<'@material-ui/core/es/internal/svg-icons/CheckCircle'>; -} -declare module '@material-ui/core/es/internal/svg-icons/Close.js' { - declare module.exports: $Exports<'@material-ui/core/es/internal/svg-icons/Close'>; -} -declare module '@material-ui/core/es/internal/svg-icons/IndeterminateCheckBox.js' { - declare module.exports: $Exports<'@material-ui/core/es/internal/svg-icons/IndeterminateCheckBox'>; -} -declare module '@material-ui/core/es/internal/svg-icons/KeyboardArrowLeft.js' { - declare module.exports: $Exports<'@material-ui/core/es/internal/svg-icons/KeyboardArrowLeft'>; -} -declare module '@material-ui/core/es/internal/svg-icons/KeyboardArrowRight.js' { - declare module.exports: $Exports<'@material-ui/core/es/internal/svg-icons/KeyboardArrowRight'>; -} -declare module '@material-ui/core/es/internal/svg-icons/MoreHoriz.js' { - declare module.exports: $Exports<'@material-ui/core/es/internal/svg-icons/MoreHoriz'>; -} -declare module '@material-ui/core/es/internal/svg-icons/Person.js' { - declare module.exports: $Exports<'@material-ui/core/es/internal/svg-icons/Person'>; -} -declare module '@material-ui/core/es/internal/svg-icons/RadioButtonChecked.js' { - declare module.exports: $Exports<'@material-ui/core/es/internal/svg-icons/RadioButtonChecked'>; -} -declare module '@material-ui/core/es/internal/svg-icons/RadioButtonUnchecked.js' { - declare module.exports: $Exports<'@material-ui/core/es/internal/svg-icons/RadioButtonUnchecked'>; -} -declare module '@material-ui/core/es/internal/svg-icons/Warning.js' { - declare module.exports: $Exports<'@material-ui/core/es/internal/svg-icons/Warning'>; -} -declare module '@material-ui/core/es/internal/SwitchBase.js' { - declare module.exports: $Exports<'@material-ui/core/es/internal/SwitchBase'>; -} -declare module '@material-ui/core/es/LinearProgress/index' { - declare module.exports: $Exports<'@material-ui/core/es/LinearProgress'>; -} -declare module '@material-ui/core/es/LinearProgress/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/LinearProgress'>; -} -declare module '@material-ui/core/es/LinearProgress/LinearProgress.js' { - declare module.exports: $Exports<'@material-ui/core/es/LinearProgress/LinearProgress'>; -} -declare module '@material-ui/core/es/Link/index' { - declare module.exports: $Exports<'@material-ui/core/es/Link'>; -} -declare module '@material-ui/core/es/Link/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/Link'>; -} -declare module '@material-ui/core/es/Link/Link.js' { - declare module.exports: $Exports<'@material-ui/core/es/Link/Link'>; -} -declare module '@material-ui/core/es/List/index' { - declare module.exports: $Exports<'@material-ui/core/es/List'>; -} -declare module '@material-ui/core/es/List/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/List'>; -} -declare module '@material-ui/core/es/List/List.js' { - declare module.exports: $Exports<'@material-ui/core/es/List/List'>; -} -declare module '@material-ui/core/es/List/ListContext.js' { - declare module.exports: $Exports<'@material-ui/core/es/List/ListContext'>; -} -declare module '@material-ui/core/es/ListItem/index' { - declare module.exports: $Exports<'@material-ui/core/es/ListItem'>; -} -declare module '@material-ui/core/es/ListItem/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/ListItem'>; -} -declare module '@material-ui/core/es/ListItem/ListItem.js' { - declare module.exports: $Exports<'@material-ui/core/es/ListItem/ListItem'>; -} -declare module '@material-ui/core/es/ListItemAvatar/index' { - declare module.exports: $Exports<'@material-ui/core/es/ListItemAvatar'>; -} -declare module '@material-ui/core/es/ListItemAvatar/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/ListItemAvatar'>; -} -declare module '@material-ui/core/es/ListItemAvatar/ListItemAvatar.js' { - declare module.exports: $Exports<'@material-ui/core/es/ListItemAvatar/ListItemAvatar'>; -} -declare module '@material-ui/core/es/ListItemIcon/index' { - declare module.exports: $Exports<'@material-ui/core/es/ListItemIcon'>; -} -declare module '@material-ui/core/es/ListItemIcon/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/ListItemIcon'>; -} -declare module '@material-ui/core/es/ListItemIcon/ListItemIcon.js' { - declare module.exports: $Exports<'@material-ui/core/es/ListItemIcon/ListItemIcon'>; -} -declare module '@material-ui/core/es/ListItemSecondaryAction/index' { - declare module.exports: $Exports<'@material-ui/core/es/ListItemSecondaryAction'>; -} -declare module '@material-ui/core/es/ListItemSecondaryAction/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/ListItemSecondaryAction'>; -} -declare module '@material-ui/core/es/ListItemSecondaryAction/ListItemSecondaryAction.js' { - declare module.exports: $Exports<'@material-ui/core/es/ListItemSecondaryAction/ListItemSecondaryAction'>; -} -declare module '@material-ui/core/es/ListItemText/index' { - declare module.exports: $Exports<'@material-ui/core/es/ListItemText'>; -} -declare module '@material-ui/core/es/ListItemText/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/ListItemText'>; -} -declare module '@material-ui/core/es/ListItemText/ListItemText.js' { - declare module.exports: $Exports<'@material-ui/core/es/ListItemText/ListItemText'>; -} -declare module '@material-ui/core/es/ListSubheader/index' { - declare module.exports: $Exports<'@material-ui/core/es/ListSubheader'>; -} -declare module '@material-ui/core/es/ListSubheader/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/ListSubheader'>; -} -declare module '@material-ui/core/es/ListSubheader/ListSubheader.js' { - declare module.exports: $Exports<'@material-ui/core/es/ListSubheader/ListSubheader'>; -} -declare module '@material-ui/core/es/locale/index' { - declare module.exports: $Exports<'@material-ui/core/es/locale'>; -} -declare module '@material-ui/core/es/locale/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/locale'>; -} -declare module '@material-ui/core/es/Menu/index' { - declare module.exports: $Exports<'@material-ui/core/es/Menu'>; -} -declare module '@material-ui/core/es/Menu/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/Menu'>; -} -declare module '@material-ui/core/es/Menu/Menu.js' { - declare module.exports: $Exports<'@material-ui/core/es/Menu/Menu'>; -} -declare module '@material-ui/core/es/MenuItem/index' { - declare module.exports: $Exports<'@material-ui/core/es/MenuItem'>; -} -declare module '@material-ui/core/es/MenuItem/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/MenuItem'>; -} -declare module '@material-ui/core/es/MenuItem/MenuItem.js' { - declare module.exports: $Exports<'@material-ui/core/es/MenuItem/MenuItem'>; -} -declare module '@material-ui/core/es/MenuList/index' { - declare module.exports: $Exports<'@material-ui/core/es/MenuList'>; -} -declare module '@material-ui/core/es/MenuList/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/MenuList'>; -} -declare module '@material-ui/core/es/MenuList/MenuList.js' { - declare module.exports: $Exports<'@material-ui/core/es/MenuList/MenuList'>; -} -declare module '@material-ui/core/es/MobileStepper/index' { - declare module.exports: $Exports<'@material-ui/core/es/MobileStepper'>; -} -declare module '@material-ui/core/es/MobileStepper/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/MobileStepper'>; -} -declare module '@material-ui/core/es/MobileStepper/MobileStepper.js' { - declare module.exports: $Exports<'@material-ui/core/es/MobileStepper/MobileStepper'>; -} -declare module '@material-ui/core/es/Modal/index' { - declare module.exports: $Exports<'@material-ui/core/es/Modal'>; -} -declare module '@material-ui/core/es/Modal/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/Modal'>; -} -declare module '@material-ui/core/es/Modal/Modal.js' { - declare module.exports: $Exports<'@material-ui/core/es/Modal/Modal'>; -} -declare module '@material-ui/core/es/Modal/ModalManager.js' { - declare module.exports: $Exports<'@material-ui/core/es/Modal/ModalManager'>; -} -declare module '@material-ui/core/es/Modal/SimpleBackdrop.js' { - declare module.exports: $Exports<'@material-ui/core/es/Modal/SimpleBackdrop'>; -} -declare module '@material-ui/core/es/NativeSelect/index' { - declare module.exports: $Exports<'@material-ui/core/es/NativeSelect'>; -} -declare module '@material-ui/core/es/NativeSelect/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/NativeSelect'>; -} -declare module '@material-ui/core/es/NativeSelect/NativeSelect.js' { - declare module.exports: $Exports<'@material-ui/core/es/NativeSelect/NativeSelect'>; -} -declare module '@material-ui/core/es/NativeSelect/NativeSelectInput.js' { - declare module.exports: $Exports<'@material-ui/core/es/NativeSelect/NativeSelectInput'>; -} -declare module '@material-ui/core/es/NoSsr/index' { - declare module.exports: $Exports<'@material-ui/core/es/NoSsr'>; -} -declare module '@material-ui/core/es/NoSsr/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/NoSsr'>; -} -declare module '@material-ui/core/es/NoSsr/NoSsr.js' { - declare module.exports: $Exports<'@material-ui/core/es/NoSsr/NoSsr'>; -} -declare module '@material-ui/core/es/OutlinedInput/index' { - declare module.exports: $Exports<'@material-ui/core/es/OutlinedInput'>; -} -declare module '@material-ui/core/es/OutlinedInput/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/OutlinedInput'>; -} -declare module '@material-ui/core/es/OutlinedInput/NotchedOutline.js' { - declare module.exports: $Exports<'@material-ui/core/es/OutlinedInput/NotchedOutline'>; -} -declare module '@material-ui/core/es/OutlinedInput/OutlinedInput.js' { - declare module.exports: $Exports<'@material-ui/core/es/OutlinedInput/OutlinedInput'>; -} -declare module '@material-ui/core/es/Paper/index' { - declare module.exports: $Exports<'@material-ui/core/es/Paper'>; -} -declare module '@material-ui/core/es/Paper/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/Paper'>; -} -declare module '@material-ui/core/es/Paper/Paper.js' { - declare module.exports: $Exports<'@material-ui/core/es/Paper/Paper'>; -} -declare module '@material-ui/core/es/Popover/index' { - declare module.exports: $Exports<'@material-ui/core/es/Popover'>; -} -declare module '@material-ui/core/es/Popover/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/Popover'>; -} -declare module '@material-ui/core/es/Popover/Popover.js' { - declare module.exports: $Exports<'@material-ui/core/es/Popover/Popover'>; -} -declare module '@material-ui/core/es/Popper/index' { - declare module.exports: $Exports<'@material-ui/core/es/Popper'>; -} -declare module '@material-ui/core/es/Popper/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/Popper'>; -} -declare module '@material-ui/core/es/Popper/Popper.js' { - declare module.exports: $Exports<'@material-ui/core/es/Popper/Popper'>; -} -declare module '@material-ui/core/es/Portal/index' { - declare module.exports: $Exports<'@material-ui/core/es/Portal'>; -} -declare module '@material-ui/core/es/Portal/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/Portal'>; -} -declare module '@material-ui/core/es/Portal/Portal.js' { - declare module.exports: $Exports<'@material-ui/core/es/Portal/Portal'>; -} -declare module '@material-ui/core/es/Radio/index' { - declare module.exports: $Exports<'@material-ui/core/es/Radio'>; -} -declare module '@material-ui/core/es/Radio/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/Radio'>; -} -declare module '@material-ui/core/es/Radio/Radio.js' { - declare module.exports: $Exports<'@material-ui/core/es/Radio/Radio'>; -} -declare module '@material-ui/core/es/Radio/RadioButtonIcon.js' { - declare module.exports: $Exports<'@material-ui/core/es/Radio/RadioButtonIcon'>; -} -declare module '@material-ui/core/es/RadioGroup/index' { - declare module.exports: $Exports<'@material-ui/core/es/RadioGroup'>; -} -declare module '@material-ui/core/es/RadioGroup/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/RadioGroup'>; -} -declare module '@material-ui/core/es/RadioGroup/RadioGroup.js' { - declare module.exports: $Exports<'@material-ui/core/es/RadioGroup/RadioGroup'>; -} -declare module '@material-ui/core/es/RadioGroup/RadioGroupContext.js' { - declare module.exports: $Exports<'@material-ui/core/es/RadioGroup/RadioGroupContext'>; -} -declare module '@material-ui/core/es/RadioGroup/useRadioGroup.js' { - declare module.exports: $Exports<'@material-ui/core/es/RadioGroup/useRadioGroup'>; -} -declare module '@material-ui/core/es/RootRef/index' { - declare module.exports: $Exports<'@material-ui/core/es/RootRef'>; -} -declare module '@material-ui/core/es/RootRef/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/RootRef'>; -} -declare module '@material-ui/core/es/RootRef/RootRef.js' { - declare module.exports: $Exports<'@material-ui/core/es/RootRef/RootRef'>; -} -declare module '@material-ui/core/es/ScopedCssBaseline/index' { - declare module.exports: $Exports<'@material-ui/core/es/ScopedCssBaseline'>; -} -declare module '@material-ui/core/es/ScopedCssBaseline/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/ScopedCssBaseline'>; -} -declare module '@material-ui/core/es/ScopedCssBaseline/ScopedCssBaseline.js' { - declare module.exports: $Exports<'@material-ui/core/es/ScopedCssBaseline/ScopedCssBaseline'>; -} -declare module '@material-ui/core/es/Select/index' { - declare module.exports: $Exports<'@material-ui/core/es/Select'>; -} -declare module '@material-ui/core/es/Select/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/Select'>; -} -declare module '@material-ui/core/es/Select/Select.js' { - declare module.exports: $Exports<'@material-ui/core/es/Select/Select'>; -} -declare module '@material-ui/core/es/Select/SelectInput.js' { - declare module.exports: $Exports<'@material-ui/core/es/Select/SelectInput'>; -} -declare module '@material-ui/core/es/Slide/index' { - declare module.exports: $Exports<'@material-ui/core/es/Slide'>; -} -declare module '@material-ui/core/es/Slide/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/Slide'>; -} -declare module '@material-ui/core/es/Slide/Slide.js' { - declare module.exports: $Exports<'@material-ui/core/es/Slide/Slide'>; -} -declare module '@material-ui/core/es/Slider/index' { - declare module.exports: $Exports<'@material-ui/core/es/Slider'>; -} -declare module '@material-ui/core/es/Slider/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/Slider'>; -} -declare module '@material-ui/core/es/Slider/Slider.js' { - declare module.exports: $Exports<'@material-ui/core/es/Slider/Slider'>; -} -declare module '@material-ui/core/es/Slider/ValueLabel.js' { - declare module.exports: $Exports<'@material-ui/core/es/Slider/ValueLabel'>; -} -declare module '@material-ui/core/es/Snackbar/index' { - declare module.exports: $Exports<'@material-ui/core/es/Snackbar'>; -} -declare module '@material-ui/core/es/Snackbar/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/Snackbar'>; -} -declare module '@material-ui/core/es/Snackbar/Snackbar.js' { - declare module.exports: $Exports<'@material-ui/core/es/Snackbar/Snackbar'>; -} -declare module '@material-ui/core/es/SnackbarContent/index' { - declare module.exports: $Exports<'@material-ui/core/es/SnackbarContent'>; -} -declare module '@material-ui/core/es/SnackbarContent/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/SnackbarContent'>; -} -declare module '@material-ui/core/es/SnackbarContent/SnackbarContent.js' { - declare module.exports: $Exports<'@material-ui/core/es/SnackbarContent/SnackbarContent'>; -} -declare module '@material-ui/core/es/Step/index' { - declare module.exports: $Exports<'@material-ui/core/es/Step'>; -} -declare module '@material-ui/core/es/Step/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/Step'>; -} -declare module '@material-ui/core/es/Step/Step.js' { - declare module.exports: $Exports<'@material-ui/core/es/Step/Step'>; -} -declare module '@material-ui/core/es/StepButton/index' { - declare module.exports: $Exports<'@material-ui/core/es/StepButton'>; -} -declare module '@material-ui/core/es/StepButton/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/StepButton'>; -} -declare module '@material-ui/core/es/StepButton/StepButton.js' { - declare module.exports: $Exports<'@material-ui/core/es/StepButton/StepButton'>; -} -declare module '@material-ui/core/es/StepConnector/index' { - declare module.exports: $Exports<'@material-ui/core/es/StepConnector'>; -} -declare module '@material-ui/core/es/StepConnector/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/StepConnector'>; -} -declare module '@material-ui/core/es/StepConnector/StepConnector.js' { - declare module.exports: $Exports<'@material-ui/core/es/StepConnector/StepConnector'>; -} -declare module '@material-ui/core/es/StepContent/index' { - declare module.exports: $Exports<'@material-ui/core/es/StepContent'>; -} -declare module '@material-ui/core/es/StepContent/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/StepContent'>; -} -declare module '@material-ui/core/es/StepContent/StepContent.js' { - declare module.exports: $Exports<'@material-ui/core/es/StepContent/StepContent'>; -} -declare module '@material-ui/core/es/StepIcon/index' { - declare module.exports: $Exports<'@material-ui/core/es/StepIcon'>; -} -declare module '@material-ui/core/es/StepIcon/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/StepIcon'>; -} -declare module '@material-ui/core/es/StepIcon/StepIcon.js' { - declare module.exports: $Exports<'@material-ui/core/es/StepIcon/StepIcon'>; -} -declare module '@material-ui/core/es/StepLabel/index' { - declare module.exports: $Exports<'@material-ui/core/es/StepLabel'>; -} -declare module '@material-ui/core/es/StepLabel/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/StepLabel'>; -} -declare module '@material-ui/core/es/StepLabel/StepLabel.js' { - declare module.exports: $Exports<'@material-ui/core/es/StepLabel/StepLabel'>; -} -declare module '@material-ui/core/es/Stepper/index' { - declare module.exports: $Exports<'@material-ui/core/es/Stepper'>; -} -declare module '@material-ui/core/es/Stepper/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/Stepper'>; -} -declare module '@material-ui/core/es/Stepper/Stepper.js' { - declare module.exports: $Exports<'@material-ui/core/es/Stepper/Stepper'>; -} -declare module '@material-ui/core/es/styles/colorManipulator.js' { - declare module.exports: $Exports<'@material-ui/core/es/styles/colorManipulator'>; -} -declare module '@material-ui/core/es/styles/createBreakpoints.js' { - declare module.exports: $Exports<'@material-ui/core/es/styles/createBreakpoints'>; -} -declare module '@material-ui/core/es/styles/createMixins.js' { - declare module.exports: $Exports<'@material-ui/core/es/styles/createMixins'>; -} -declare module '@material-ui/core/es/styles/createMuiStrictModeTheme.js' { - declare module.exports: $Exports<'@material-ui/core/es/styles/createMuiStrictModeTheme'>; -} -declare module '@material-ui/core/es/styles/createMuiTheme.js' { - declare module.exports: $Exports<'@material-ui/core/es/styles/createMuiTheme'>; -} -declare module '@material-ui/core/es/styles/createPalette.js' { - declare module.exports: $Exports<'@material-ui/core/es/styles/createPalette'>; -} -declare module '@material-ui/core/es/styles/createSpacing.js' { - declare module.exports: $Exports<'@material-ui/core/es/styles/createSpacing'>; -} -declare module '@material-ui/core/es/styles/createStyles.js' { - declare module.exports: $Exports<'@material-ui/core/es/styles/createStyles'>; -} -declare module '@material-ui/core/es/styles/createTypography.js' { - declare module.exports: $Exports<'@material-ui/core/es/styles/createTypography'>; -} -declare module '@material-ui/core/es/styles/cssUtils.js' { - declare module.exports: $Exports<'@material-ui/core/es/styles/cssUtils'>; -} -declare module '@material-ui/core/es/styles/defaultTheme.js' { - declare module.exports: $Exports<'@material-ui/core/es/styles/defaultTheme'>; -} -declare module '@material-ui/core/es/styles/index' { - declare module.exports: $Exports<'@material-ui/core/es/styles'>; -} -declare module '@material-ui/core/es/styles/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/styles'>; -} -declare module '@material-ui/core/es/styles/makeStyles.js' { - declare module.exports: $Exports<'@material-ui/core/es/styles/makeStyles'>; -} -declare module '@material-ui/core/es/styles/MuiThemeProvider.js' { - declare module.exports: $Exports<'@material-ui/core/es/styles/MuiThemeProvider'>; -} -declare module '@material-ui/core/es/styles/responsiveFontSizes.js' { - declare module.exports: $Exports<'@material-ui/core/es/styles/responsiveFontSizes'>; -} -declare module '@material-ui/core/es/styles/shadows.js' { - declare module.exports: $Exports<'@material-ui/core/es/styles/shadows'>; -} -declare module '@material-ui/core/es/styles/shape.js' { - declare module.exports: $Exports<'@material-ui/core/es/styles/shape'>; -} -declare module '@material-ui/core/es/styles/styled.js' { - declare module.exports: $Exports<'@material-ui/core/es/styles/styled'>; -} -declare module '@material-ui/core/es/styles/transitions.js' { - declare module.exports: $Exports<'@material-ui/core/es/styles/transitions'>; -} -declare module '@material-ui/core/es/styles/useTheme.js' { - declare module.exports: $Exports<'@material-ui/core/es/styles/useTheme'>; -} -declare module '@material-ui/core/es/styles/withStyles.js' { - declare module.exports: $Exports<'@material-ui/core/es/styles/withStyles'>; -} -declare module '@material-ui/core/es/styles/withTheme.js' { - declare module.exports: $Exports<'@material-ui/core/es/styles/withTheme'>; -} -declare module '@material-ui/core/es/styles/zIndex.js' { - declare module.exports: $Exports<'@material-ui/core/es/styles/zIndex'>; -} -declare module '@material-ui/core/es/SvgIcon/index' { - declare module.exports: $Exports<'@material-ui/core/es/SvgIcon'>; -} -declare module '@material-ui/core/es/SvgIcon/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/SvgIcon'>; -} -declare module '@material-ui/core/es/SvgIcon/SvgIcon.js' { - declare module.exports: $Exports<'@material-ui/core/es/SvgIcon/SvgIcon'>; -} -declare module '@material-ui/core/es/SwipeableDrawer/index' { - declare module.exports: $Exports<'@material-ui/core/es/SwipeableDrawer'>; -} -declare module '@material-ui/core/es/SwipeableDrawer/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/SwipeableDrawer'>; -} -declare module '@material-ui/core/es/SwipeableDrawer/SwipeableDrawer.js' { - declare module.exports: $Exports<'@material-ui/core/es/SwipeableDrawer/SwipeableDrawer'>; -} -declare module '@material-ui/core/es/SwipeableDrawer/SwipeArea.js' { - declare module.exports: $Exports<'@material-ui/core/es/SwipeableDrawer/SwipeArea'>; -} -declare module '@material-ui/core/es/Switch/index' { - declare module.exports: $Exports<'@material-ui/core/es/Switch'>; -} -declare module '@material-ui/core/es/Switch/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/Switch'>; -} -declare module '@material-ui/core/es/Switch/Switch.js' { - declare module.exports: $Exports<'@material-ui/core/es/Switch/Switch'>; -} -declare module '@material-ui/core/es/Tab/index' { - declare module.exports: $Exports<'@material-ui/core/es/Tab'>; -} -declare module '@material-ui/core/es/Tab/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/Tab'>; -} -declare module '@material-ui/core/es/Tab/Tab.js' { - declare module.exports: $Exports<'@material-ui/core/es/Tab/Tab'>; -} -declare module '@material-ui/core/es/Table/index' { - declare module.exports: $Exports<'@material-ui/core/es/Table'>; -} -declare module '@material-ui/core/es/Table/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/Table'>; -} -declare module '@material-ui/core/es/Table/Table.js' { - declare module.exports: $Exports<'@material-ui/core/es/Table/Table'>; -} -declare module '@material-ui/core/es/Table/TableContext.js' { - declare module.exports: $Exports<'@material-ui/core/es/Table/TableContext'>; -} -declare module '@material-ui/core/es/Table/Tablelvl2Context.js' { - declare module.exports: $Exports<'@material-ui/core/es/Table/Tablelvl2Context'>; -} -declare module '@material-ui/core/es/TableBody/index' { - declare module.exports: $Exports<'@material-ui/core/es/TableBody'>; -} -declare module '@material-ui/core/es/TableBody/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/TableBody'>; -} -declare module '@material-ui/core/es/TableBody/TableBody.js' { - declare module.exports: $Exports<'@material-ui/core/es/TableBody/TableBody'>; -} -declare module '@material-ui/core/es/TableCell/index' { - declare module.exports: $Exports<'@material-ui/core/es/TableCell'>; -} -declare module '@material-ui/core/es/TableCell/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/TableCell'>; -} -declare module '@material-ui/core/es/TableCell/TableCell.js' { - declare module.exports: $Exports<'@material-ui/core/es/TableCell/TableCell'>; -} -declare module '@material-ui/core/es/TableContainer/index' { - declare module.exports: $Exports<'@material-ui/core/es/TableContainer'>; -} -declare module '@material-ui/core/es/TableContainer/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/TableContainer'>; -} -declare module '@material-ui/core/es/TableContainer/TableContainer.js' { - declare module.exports: $Exports<'@material-ui/core/es/TableContainer/TableContainer'>; -} -declare module '@material-ui/core/es/TableFooter/index' { - declare module.exports: $Exports<'@material-ui/core/es/TableFooter'>; -} -declare module '@material-ui/core/es/TableFooter/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/TableFooter'>; -} -declare module '@material-ui/core/es/TableFooter/TableFooter.js' { - declare module.exports: $Exports<'@material-ui/core/es/TableFooter/TableFooter'>; -} -declare module '@material-ui/core/es/TableHead/index' { - declare module.exports: $Exports<'@material-ui/core/es/TableHead'>; -} -declare module '@material-ui/core/es/TableHead/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/TableHead'>; -} -declare module '@material-ui/core/es/TableHead/TableHead.js' { - declare module.exports: $Exports<'@material-ui/core/es/TableHead/TableHead'>; -} -declare module '@material-ui/core/es/TablePagination/index' { - declare module.exports: $Exports<'@material-ui/core/es/TablePagination'>; -} -declare module '@material-ui/core/es/TablePagination/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/TablePagination'>; -} -declare module '@material-ui/core/es/TablePagination/TablePagination.js' { - declare module.exports: $Exports<'@material-ui/core/es/TablePagination/TablePagination'>; -} -declare module '@material-ui/core/es/TablePagination/TablePaginationActions.js' { - declare module.exports: $Exports<'@material-ui/core/es/TablePagination/TablePaginationActions'>; -} -declare module '@material-ui/core/es/TableRow/index' { - declare module.exports: $Exports<'@material-ui/core/es/TableRow'>; -} -declare module '@material-ui/core/es/TableRow/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/TableRow'>; -} -declare module '@material-ui/core/es/TableRow/TableRow.js' { - declare module.exports: $Exports<'@material-ui/core/es/TableRow/TableRow'>; -} -declare module '@material-ui/core/es/TableSortLabel/index' { - declare module.exports: $Exports<'@material-ui/core/es/TableSortLabel'>; -} -declare module '@material-ui/core/es/TableSortLabel/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/TableSortLabel'>; -} -declare module '@material-ui/core/es/TableSortLabel/TableSortLabel.js' { - declare module.exports: $Exports<'@material-ui/core/es/TableSortLabel/TableSortLabel'>; -} -declare module '@material-ui/core/es/Tabs/index' { - declare module.exports: $Exports<'@material-ui/core/es/Tabs'>; -} -declare module '@material-ui/core/es/Tabs/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/Tabs'>; -} -declare module '@material-ui/core/es/Tabs/ScrollbarSize.js' { - declare module.exports: $Exports<'@material-ui/core/es/Tabs/ScrollbarSize'>; -} -declare module '@material-ui/core/es/Tabs/TabIndicator.js' { - declare module.exports: $Exports<'@material-ui/core/es/Tabs/TabIndicator'>; -} -declare module '@material-ui/core/es/Tabs/Tabs.js' { - declare module.exports: $Exports<'@material-ui/core/es/Tabs/Tabs'>; -} -declare module '@material-ui/core/es/TabScrollButton/index' { - declare module.exports: $Exports<'@material-ui/core/es/TabScrollButton'>; -} -declare module '@material-ui/core/es/TabScrollButton/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/TabScrollButton'>; -} -declare module '@material-ui/core/es/TabScrollButton/TabScrollButton.js' { - declare module.exports: $Exports<'@material-ui/core/es/TabScrollButton/TabScrollButton'>; -} -declare module '@material-ui/core/es/test-utils/createMount.js' { - declare module.exports: $Exports<'@material-ui/core/es/test-utils/createMount'>; -} -declare module '@material-ui/core/es/test-utils/createRender.js' { - declare module.exports: $Exports<'@material-ui/core/es/test-utils/createRender'>; -} -declare module '@material-ui/core/es/test-utils/createShallow.js' { - declare module.exports: $Exports<'@material-ui/core/es/test-utils/createShallow'>; -} -declare module '@material-ui/core/es/test-utils/describeConformance.js' { - declare module.exports: $Exports<'@material-ui/core/es/test-utils/describeConformance'>; -} -declare module '@material-ui/core/es/test-utils/findOutermostIntrinsic.js' { - declare module.exports: $Exports<'@material-ui/core/es/test-utils/findOutermostIntrinsic'>; -} -declare module '@material-ui/core/es/test-utils/getClasses.js' { - declare module.exports: $Exports<'@material-ui/core/es/test-utils/getClasses'>; -} -declare module '@material-ui/core/es/test-utils/index' { - declare module.exports: $Exports<'@material-ui/core/es/test-utils'>; -} -declare module '@material-ui/core/es/test-utils/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/test-utils'>; -} -declare module '@material-ui/core/es/test-utils/RenderMode.js' { - declare module.exports: $Exports<'@material-ui/core/es/test-utils/RenderMode'>; -} -declare module '@material-ui/core/es/test-utils/testRef.js' { - declare module.exports: $Exports<'@material-ui/core/es/test-utils/testRef'>; -} -declare module '@material-ui/core/es/test-utils/until.js' { - declare module.exports: $Exports<'@material-ui/core/es/test-utils/until'>; -} -declare module '@material-ui/core/es/test-utils/unwrap.js' { - declare module.exports: $Exports<'@material-ui/core/es/test-utils/unwrap'>; -} -declare module '@material-ui/core/es/TextareaAutosize/index' { - declare module.exports: $Exports<'@material-ui/core/es/TextareaAutosize'>; -} -declare module '@material-ui/core/es/TextareaAutosize/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/TextareaAutosize'>; -} -declare module '@material-ui/core/es/TextareaAutosize/TextareaAutosize.js' { - declare module.exports: $Exports<'@material-ui/core/es/TextareaAutosize/TextareaAutosize'>; -} -declare module '@material-ui/core/es/TextField/index' { - declare module.exports: $Exports<'@material-ui/core/es/TextField'>; -} -declare module '@material-ui/core/es/TextField/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/TextField'>; -} -declare module '@material-ui/core/es/TextField/TextField.js' { - declare module.exports: $Exports<'@material-ui/core/es/TextField/TextField'>; -} -declare module '@material-ui/core/es/Toolbar/index' { - declare module.exports: $Exports<'@material-ui/core/es/Toolbar'>; -} -declare module '@material-ui/core/es/Toolbar/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/Toolbar'>; -} -declare module '@material-ui/core/es/Toolbar/Toolbar.js' { - declare module.exports: $Exports<'@material-ui/core/es/Toolbar/Toolbar'>; -} -declare module '@material-ui/core/es/Tooltip/index' { - declare module.exports: $Exports<'@material-ui/core/es/Tooltip'>; -} -declare module '@material-ui/core/es/Tooltip/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/Tooltip'>; -} -declare module '@material-ui/core/es/Tooltip/Tooltip.js' { - declare module.exports: $Exports<'@material-ui/core/es/Tooltip/Tooltip'>; -} -declare module '@material-ui/core/es/transitions/utils.js' { - declare module.exports: $Exports<'@material-ui/core/es/transitions/utils'>; -} -declare module '@material-ui/core/es/Typography/index' { - declare module.exports: $Exports<'@material-ui/core/es/Typography'>; -} -declare module '@material-ui/core/es/Typography/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/Typography'>; -} -declare module '@material-ui/core/es/Typography/Typography.js' { - declare module.exports: $Exports<'@material-ui/core/es/Typography/Typography'>; -} -declare module '@material-ui/core/es/Unstable_TrapFocus/index' { - declare module.exports: $Exports<'@material-ui/core/es/Unstable_TrapFocus'>; -} -declare module '@material-ui/core/es/Unstable_TrapFocus/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/Unstable_TrapFocus'>; -} -declare module '@material-ui/core/es/Unstable_TrapFocus/Unstable_TrapFocus.js' { - declare module.exports: $Exports<'@material-ui/core/es/Unstable_TrapFocus/Unstable_TrapFocus'>; -} -declare module '@material-ui/core/es/useMediaQuery/index' { - declare module.exports: $Exports<'@material-ui/core/es/useMediaQuery'>; -} -declare module '@material-ui/core/es/useMediaQuery/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/useMediaQuery'>; -} -declare module '@material-ui/core/es/useMediaQuery/useMediaQuery.js' { - declare module.exports: $Exports<'@material-ui/core/es/useMediaQuery/useMediaQuery'>; -} -declare module '@material-ui/core/es/useMediaQuery/useMediaQueryTheme.js' { - declare module.exports: $Exports<'@material-ui/core/es/useMediaQuery/useMediaQueryTheme'>; -} -declare module '@material-ui/core/es/useScrollTrigger/index' { - declare module.exports: $Exports<'@material-ui/core/es/useScrollTrigger'>; -} -declare module '@material-ui/core/es/useScrollTrigger/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/useScrollTrigger'>; -} -declare module '@material-ui/core/es/useScrollTrigger/useScrollTrigger.js' { - declare module.exports: $Exports<'@material-ui/core/es/useScrollTrigger/useScrollTrigger'>; -} -declare module '@material-ui/core/es/utils/capitalize.js' { - declare module.exports: $Exports<'@material-ui/core/es/utils/capitalize'>; -} -declare module '@material-ui/core/es/utils/createChainedFunction.js' { - declare module.exports: $Exports<'@material-ui/core/es/utils/createChainedFunction'>; -} -declare module '@material-ui/core/es/utils/createSvgIcon.js' { - declare module.exports: $Exports<'@material-ui/core/es/utils/createSvgIcon'>; -} -declare module '@material-ui/core/es/utils/debounce.js' { - declare module.exports: $Exports<'@material-ui/core/es/utils/debounce'>; -} -declare module '@material-ui/core/es/utils/deprecatedPropType.js' { - declare module.exports: $Exports<'@material-ui/core/es/utils/deprecatedPropType'>; -} -declare module '@material-ui/core/es/utils/getScrollbarSize.js' { - declare module.exports: $Exports<'@material-ui/core/es/utils/getScrollbarSize'>; -} -declare module '@material-ui/core/es/utils/index' { - declare module.exports: $Exports<'@material-ui/core/es/utils'>; -} -declare module '@material-ui/core/es/utils/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/utils'>; -} -declare module '@material-ui/core/es/utils/isMuiElement.js' { - declare module.exports: $Exports<'@material-ui/core/es/utils/isMuiElement'>; -} -declare module '@material-ui/core/es/utils/ownerDocument.js' { - declare module.exports: $Exports<'@material-ui/core/es/utils/ownerDocument'>; -} -declare module '@material-ui/core/es/utils/ownerWindow.js' { - declare module.exports: $Exports<'@material-ui/core/es/utils/ownerWindow'>; -} -declare module '@material-ui/core/es/utils/requirePropFactory.js' { - declare module.exports: $Exports<'@material-ui/core/es/utils/requirePropFactory'>; -} -declare module '@material-ui/core/es/utils/scrollLeft.js' { - declare module.exports: $Exports<'@material-ui/core/es/utils/scrollLeft'>; -} -declare module '@material-ui/core/es/utils/setRef.js' { - declare module.exports: $Exports<'@material-ui/core/es/utils/setRef'>; -} -declare module '@material-ui/core/es/utils/unstable_useId.js' { - declare module.exports: $Exports<'@material-ui/core/es/utils/unstable_useId'>; -} -declare module '@material-ui/core/es/utils/unsupportedProp.js' { - declare module.exports: $Exports<'@material-ui/core/es/utils/unsupportedProp'>; -} -declare module '@material-ui/core/es/utils/useControlled.js' { - declare module.exports: $Exports<'@material-ui/core/es/utils/useControlled'>; -} -declare module '@material-ui/core/es/utils/useEventCallback.js' { - declare module.exports: $Exports<'@material-ui/core/es/utils/useEventCallback'>; -} -declare module '@material-ui/core/es/utils/useForkRef.js' { - declare module.exports: $Exports<'@material-ui/core/es/utils/useForkRef'>; -} -declare module '@material-ui/core/es/utils/useIsFocusVisible.js' { - declare module.exports: $Exports<'@material-ui/core/es/utils/useIsFocusVisible'>; -} -declare module '@material-ui/core/es/withMobileDialog/index' { - declare module.exports: $Exports<'@material-ui/core/es/withMobileDialog'>; -} -declare module '@material-ui/core/es/withMobileDialog/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/withMobileDialog'>; -} -declare module '@material-ui/core/es/withMobileDialog/withMobileDialog.js' { - declare module.exports: $Exports<'@material-ui/core/es/withMobileDialog/withMobileDialog'>; -} -declare module '@material-ui/core/es/withWidth/index' { - declare module.exports: $Exports<'@material-ui/core/es/withWidth'>; -} -declare module '@material-ui/core/es/withWidth/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/withWidth'>; -} -declare module '@material-ui/core/es/withWidth/withWidth.js' { - declare module.exports: $Exports<'@material-ui/core/es/withWidth/withWidth'>; -} -declare module '@material-ui/core/es/Zoom/index' { - declare module.exports: $Exports<'@material-ui/core/es/Zoom'>; -} -declare module '@material-ui/core/es/Zoom/index.js' { - declare module.exports: $Exports<'@material-ui/core/es/Zoom'>; -} -declare module '@material-ui/core/es/Zoom/Zoom.js' { - declare module.exports: $Exports<'@material-ui/core/es/Zoom/Zoom'>; -} -declare module '@material-ui/core/esm/Accordion/Accordion.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Accordion/Accordion'>; -} -declare module '@material-ui/core/esm/Accordion/AccordionContext.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Accordion/AccordionContext'>; -} -declare module '@material-ui/core/esm/Accordion/index' { - declare module.exports: $Exports<'@material-ui/core/esm/Accordion'>; -} -declare module '@material-ui/core/esm/Accordion/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Accordion'>; -} -declare module '@material-ui/core/esm/AccordionActions/AccordionActions.js' { - declare module.exports: $Exports<'@material-ui/core/esm/AccordionActions/AccordionActions'>; -} -declare module '@material-ui/core/esm/AccordionActions/index' { - declare module.exports: $Exports<'@material-ui/core/esm/AccordionActions'>; -} -declare module '@material-ui/core/esm/AccordionActions/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/AccordionActions'>; -} -declare module '@material-ui/core/esm/AccordionDetails/AccordionDetails.js' { - declare module.exports: $Exports<'@material-ui/core/esm/AccordionDetails/AccordionDetails'>; -} -declare module '@material-ui/core/esm/AccordionDetails/index' { - declare module.exports: $Exports<'@material-ui/core/esm/AccordionDetails'>; -} -declare module '@material-ui/core/esm/AccordionDetails/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/AccordionDetails'>; -} -declare module '@material-ui/core/esm/AccordionSummary/AccordionSummary.js' { - declare module.exports: $Exports<'@material-ui/core/esm/AccordionSummary/AccordionSummary'>; -} -declare module '@material-ui/core/esm/AccordionSummary/index' { - declare module.exports: $Exports<'@material-ui/core/esm/AccordionSummary'>; -} -declare module '@material-ui/core/esm/AccordionSummary/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/AccordionSummary'>; -} -declare module '@material-ui/core/esm/AppBar/AppBar.js' { - declare module.exports: $Exports<'@material-ui/core/esm/AppBar/AppBar'>; -} -declare module '@material-ui/core/esm/AppBar/index' { - declare module.exports: $Exports<'@material-ui/core/esm/AppBar'>; -} -declare module '@material-ui/core/esm/AppBar/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/AppBar'>; -} -declare module '@material-ui/core/esm/Avatar/Avatar.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Avatar/Avatar'>; -} -declare module '@material-ui/core/esm/Avatar/index' { - declare module.exports: $Exports<'@material-ui/core/esm/Avatar'>; -} -declare module '@material-ui/core/esm/Avatar/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Avatar'>; -} -declare module '@material-ui/core/esm/Backdrop/Backdrop.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Backdrop/Backdrop'>; -} -declare module '@material-ui/core/esm/Backdrop/index' { - declare module.exports: $Exports<'@material-ui/core/esm/Backdrop'>; -} -declare module '@material-ui/core/esm/Backdrop/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Backdrop'>; -} -declare module '@material-ui/core/esm/Badge/Badge.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Badge/Badge'>; -} -declare module '@material-ui/core/esm/Badge/index' { - declare module.exports: $Exports<'@material-ui/core/esm/Badge'>; -} -declare module '@material-ui/core/esm/Badge/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Badge'>; -} -declare module '@material-ui/core/esm/BottomNavigation/BottomNavigation.js' { - declare module.exports: $Exports<'@material-ui/core/esm/BottomNavigation/BottomNavigation'>; -} -declare module '@material-ui/core/esm/BottomNavigation/index' { - declare module.exports: $Exports<'@material-ui/core/esm/BottomNavigation'>; -} -declare module '@material-ui/core/esm/BottomNavigation/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/BottomNavigation'>; -} -declare module '@material-ui/core/esm/BottomNavigationAction/BottomNavigationAction.js' { - declare module.exports: $Exports<'@material-ui/core/esm/BottomNavigationAction/BottomNavigationAction'>; -} -declare module '@material-ui/core/esm/BottomNavigationAction/index' { - declare module.exports: $Exports<'@material-ui/core/esm/BottomNavigationAction'>; -} -declare module '@material-ui/core/esm/BottomNavigationAction/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/BottomNavigationAction'>; -} -declare module '@material-ui/core/esm/Box/Box.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Box/Box'>; -} -declare module '@material-ui/core/esm/Box/index' { - declare module.exports: $Exports<'@material-ui/core/esm/Box'>; -} -declare module '@material-ui/core/esm/Box/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Box'>; -} -declare module '@material-ui/core/esm/Breadcrumbs/BreadcrumbCollapsed.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Breadcrumbs/BreadcrumbCollapsed'>; -} -declare module '@material-ui/core/esm/Breadcrumbs/Breadcrumbs.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Breadcrumbs/Breadcrumbs'>; -} -declare module '@material-ui/core/esm/Breadcrumbs/index' { - declare module.exports: $Exports<'@material-ui/core/esm/Breadcrumbs'>; -} -declare module '@material-ui/core/esm/Breadcrumbs/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Breadcrumbs'>; -} -declare module '@material-ui/core/esm/Button/Button.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Button/Button'>; -} -declare module '@material-ui/core/esm/Button/index' { - declare module.exports: $Exports<'@material-ui/core/esm/Button'>; -} -declare module '@material-ui/core/esm/Button/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Button'>; -} -declare module '@material-ui/core/esm/ButtonBase/ButtonBase.js' { - declare module.exports: $Exports<'@material-ui/core/esm/ButtonBase/ButtonBase'>; -} -declare module '@material-ui/core/esm/ButtonBase/index' { - declare module.exports: $Exports<'@material-ui/core/esm/ButtonBase'>; -} -declare module '@material-ui/core/esm/ButtonBase/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/ButtonBase'>; -} -declare module '@material-ui/core/esm/ButtonBase/Ripple.js' { - declare module.exports: $Exports<'@material-ui/core/esm/ButtonBase/Ripple'>; -} -declare module '@material-ui/core/esm/ButtonBase/TouchRipple.js' { - declare module.exports: $Exports<'@material-ui/core/esm/ButtonBase/TouchRipple'>; -} -declare module '@material-ui/core/esm/ButtonGroup/ButtonGroup.js' { - declare module.exports: $Exports<'@material-ui/core/esm/ButtonGroup/ButtonGroup'>; -} -declare module '@material-ui/core/esm/ButtonGroup/index' { - declare module.exports: $Exports<'@material-ui/core/esm/ButtonGroup'>; -} -declare module '@material-ui/core/esm/ButtonGroup/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/ButtonGroup'>; -} -declare module '@material-ui/core/esm/Card/Card.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Card/Card'>; -} -declare module '@material-ui/core/esm/Card/index' { - declare module.exports: $Exports<'@material-ui/core/esm/Card'>; -} -declare module '@material-ui/core/esm/Card/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Card'>; -} -declare module '@material-ui/core/esm/CardActionArea/CardActionArea.js' { - declare module.exports: $Exports<'@material-ui/core/esm/CardActionArea/CardActionArea'>; -} -declare module '@material-ui/core/esm/CardActionArea/index' { - declare module.exports: $Exports<'@material-ui/core/esm/CardActionArea'>; -} -declare module '@material-ui/core/esm/CardActionArea/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/CardActionArea'>; -} -declare module '@material-ui/core/esm/CardActions/CardActions.js' { - declare module.exports: $Exports<'@material-ui/core/esm/CardActions/CardActions'>; -} -declare module '@material-ui/core/esm/CardActions/index' { - declare module.exports: $Exports<'@material-ui/core/esm/CardActions'>; -} -declare module '@material-ui/core/esm/CardActions/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/CardActions'>; -} -declare module '@material-ui/core/esm/CardContent/CardContent.js' { - declare module.exports: $Exports<'@material-ui/core/esm/CardContent/CardContent'>; -} -declare module '@material-ui/core/esm/CardContent/index' { - declare module.exports: $Exports<'@material-ui/core/esm/CardContent'>; -} -declare module '@material-ui/core/esm/CardContent/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/CardContent'>; -} -declare module '@material-ui/core/esm/CardHeader/CardHeader.js' { - declare module.exports: $Exports<'@material-ui/core/esm/CardHeader/CardHeader'>; -} -declare module '@material-ui/core/esm/CardHeader/index' { - declare module.exports: $Exports<'@material-ui/core/esm/CardHeader'>; -} -declare module '@material-ui/core/esm/CardHeader/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/CardHeader'>; -} -declare module '@material-ui/core/esm/CardMedia/CardMedia.js' { - declare module.exports: $Exports<'@material-ui/core/esm/CardMedia/CardMedia'>; -} -declare module '@material-ui/core/esm/CardMedia/index' { - declare module.exports: $Exports<'@material-ui/core/esm/CardMedia'>; -} -declare module '@material-ui/core/esm/CardMedia/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/CardMedia'>; -} -declare module '@material-ui/core/esm/Checkbox/Checkbox.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Checkbox/Checkbox'>; -} -declare module '@material-ui/core/esm/Checkbox/index' { - declare module.exports: $Exports<'@material-ui/core/esm/Checkbox'>; -} -declare module '@material-ui/core/esm/Checkbox/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Checkbox'>; -} -declare module '@material-ui/core/esm/Chip/Chip.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Chip/Chip'>; -} -declare module '@material-ui/core/esm/Chip/index' { - declare module.exports: $Exports<'@material-ui/core/esm/Chip'>; -} -declare module '@material-ui/core/esm/Chip/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Chip'>; -} -declare module '@material-ui/core/esm/CircularProgress/CircularProgress.js' { - declare module.exports: $Exports<'@material-ui/core/esm/CircularProgress/CircularProgress'>; -} -declare module '@material-ui/core/esm/CircularProgress/index' { - declare module.exports: $Exports<'@material-ui/core/esm/CircularProgress'>; -} -declare module '@material-ui/core/esm/CircularProgress/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/CircularProgress'>; -} -declare module '@material-ui/core/esm/ClickAwayListener/ClickAwayListener.js' { - declare module.exports: $Exports<'@material-ui/core/esm/ClickAwayListener/ClickAwayListener'>; -} -declare module '@material-ui/core/esm/ClickAwayListener/index' { - declare module.exports: $Exports<'@material-ui/core/esm/ClickAwayListener'>; -} -declare module '@material-ui/core/esm/ClickAwayListener/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/ClickAwayListener'>; -} -declare module '@material-ui/core/esm/Collapse/Collapse.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Collapse/Collapse'>; -} -declare module '@material-ui/core/esm/Collapse/index' { - declare module.exports: $Exports<'@material-ui/core/esm/Collapse'>; -} -declare module '@material-ui/core/esm/Collapse/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Collapse'>; -} -declare module '@material-ui/core/esm/colors/amber.js' { - declare module.exports: $Exports<'@material-ui/core/esm/colors/amber'>; -} -declare module '@material-ui/core/esm/colors/blue.js' { - declare module.exports: $Exports<'@material-ui/core/esm/colors/blue'>; -} -declare module '@material-ui/core/esm/colors/blueGrey.js' { - declare module.exports: $Exports<'@material-ui/core/esm/colors/blueGrey'>; -} -declare module '@material-ui/core/esm/colors/brown.js' { - declare module.exports: $Exports<'@material-ui/core/esm/colors/brown'>; -} -declare module '@material-ui/core/esm/colors/common.js' { - declare module.exports: $Exports<'@material-ui/core/esm/colors/common'>; -} -declare module '@material-ui/core/esm/colors/cyan.js' { - declare module.exports: $Exports<'@material-ui/core/esm/colors/cyan'>; -} -declare module '@material-ui/core/esm/colors/deepOrange.js' { - declare module.exports: $Exports<'@material-ui/core/esm/colors/deepOrange'>; -} -declare module '@material-ui/core/esm/colors/deepPurple.js' { - declare module.exports: $Exports<'@material-ui/core/esm/colors/deepPurple'>; -} -declare module '@material-ui/core/esm/colors/green.js' { - declare module.exports: $Exports<'@material-ui/core/esm/colors/green'>; -} -declare module '@material-ui/core/esm/colors/grey.js' { - declare module.exports: $Exports<'@material-ui/core/esm/colors/grey'>; -} -declare module '@material-ui/core/esm/colors/index' { - declare module.exports: $Exports<'@material-ui/core/esm/colors'>; -} -declare module '@material-ui/core/esm/colors/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/colors'>; -} -declare module '@material-ui/core/esm/colors/indigo.js' { - declare module.exports: $Exports<'@material-ui/core/esm/colors/indigo'>; -} -declare module '@material-ui/core/esm/colors/lightBlue.js' { - declare module.exports: $Exports<'@material-ui/core/esm/colors/lightBlue'>; -} -declare module '@material-ui/core/esm/colors/lightGreen.js' { - declare module.exports: $Exports<'@material-ui/core/esm/colors/lightGreen'>; -} -declare module '@material-ui/core/esm/colors/lime.js' { - declare module.exports: $Exports<'@material-ui/core/esm/colors/lime'>; -} -declare module '@material-ui/core/esm/colors/orange.js' { - declare module.exports: $Exports<'@material-ui/core/esm/colors/orange'>; -} -declare module '@material-ui/core/esm/colors/pink.js' { - declare module.exports: $Exports<'@material-ui/core/esm/colors/pink'>; -} -declare module '@material-ui/core/esm/colors/purple.js' { - declare module.exports: $Exports<'@material-ui/core/esm/colors/purple'>; -} -declare module '@material-ui/core/esm/colors/red.js' { - declare module.exports: $Exports<'@material-ui/core/esm/colors/red'>; -} -declare module '@material-ui/core/esm/colors/teal.js' { - declare module.exports: $Exports<'@material-ui/core/esm/colors/teal'>; -} -declare module '@material-ui/core/esm/colors/yellow.js' { - declare module.exports: $Exports<'@material-ui/core/esm/colors/yellow'>; -} -declare module '@material-ui/core/esm/Container/Container.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Container/Container'>; -} -declare module '@material-ui/core/esm/Container/index' { - declare module.exports: $Exports<'@material-ui/core/esm/Container'>; -} -declare module '@material-ui/core/esm/Container/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Container'>; -} -declare module '@material-ui/core/esm/CssBaseline/CssBaseline.js' { - declare module.exports: $Exports<'@material-ui/core/esm/CssBaseline/CssBaseline'>; -} -declare module '@material-ui/core/esm/CssBaseline/index' { - declare module.exports: $Exports<'@material-ui/core/esm/CssBaseline'>; -} -declare module '@material-ui/core/esm/CssBaseline/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/CssBaseline'>; -} -declare module '@material-ui/core/esm/Dialog/Dialog.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Dialog/Dialog'>; -} -declare module '@material-ui/core/esm/Dialog/index' { - declare module.exports: $Exports<'@material-ui/core/esm/Dialog'>; -} -declare module '@material-ui/core/esm/Dialog/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Dialog'>; -} -declare module '@material-ui/core/esm/DialogActions/DialogActions.js' { - declare module.exports: $Exports<'@material-ui/core/esm/DialogActions/DialogActions'>; -} -declare module '@material-ui/core/esm/DialogActions/index' { - declare module.exports: $Exports<'@material-ui/core/esm/DialogActions'>; -} -declare module '@material-ui/core/esm/DialogActions/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/DialogActions'>; -} -declare module '@material-ui/core/esm/DialogContent/DialogContent.js' { - declare module.exports: $Exports<'@material-ui/core/esm/DialogContent/DialogContent'>; -} -declare module '@material-ui/core/esm/DialogContent/index' { - declare module.exports: $Exports<'@material-ui/core/esm/DialogContent'>; -} -declare module '@material-ui/core/esm/DialogContent/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/DialogContent'>; -} -declare module '@material-ui/core/esm/DialogContentText/DialogContentText.js' { - declare module.exports: $Exports<'@material-ui/core/esm/DialogContentText/DialogContentText'>; -} -declare module '@material-ui/core/esm/DialogContentText/index' { - declare module.exports: $Exports<'@material-ui/core/esm/DialogContentText'>; -} -declare module '@material-ui/core/esm/DialogContentText/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/DialogContentText'>; -} -declare module '@material-ui/core/esm/DialogTitle/DialogTitle.js' { - declare module.exports: $Exports<'@material-ui/core/esm/DialogTitle/DialogTitle'>; -} -declare module '@material-ui/core/esm/DialogTitle/index' { - declare module.exports: $Exports<'@material-ui/core/esm/DialogTitle'>; -} -declare module '@material-ui/core/esm/DialogTitle/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/DialogTitle'>; -} -declare module '@material-ui/core/esm/Divider/Divider.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Divider/Divider'>; -} -declare module '@material-ui/core/esm/Divider/index' { - declare module.exports: $Exports<'@material-ui/core/esm/Divider'>; -} -declare module '@material-ui/core/esm/Divider/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Divider'>; -} -declare module '@material-ui/core/esm/Drawer/Drawer.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Drawer/Drawer'>; -} -declare module '@material-ui/core/esm/Drawer/index' { - declare module.exports: $Exports<'@material-ui/core/esm/Drawer'>; -} -declare module '@material-ui/core/esm/Drawer/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Drawer'>; -} -declare module '@material-ui/core/esm/ExpansionPanel/ExpansionPanel.js' { - declare module.exports: $Exports<'@material-ui/core/esm/ExpansionPanel/ExpansionPanel'>; -} -declare module '@material-ui/core/esm/ExpansionPanel/ExpansionPanelContext.js' { - declare module.exports: $Exports<'@material-ui/core/esm/ExpansionPanel/ExpansionPanelContext'>; -} -declare module '@material-ui/core/esm/ExpansionPanel/index' { - declare module.exports: $Exports<'@material-ui/core/esm/ExpansionPanel'>; -} -declare module '@material-ui/core/esm/ExpansionPanel/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/ExpansionPanel'>; -} -declare module '@material-ui/core/esm/ExpansionPanelActions/ExpansionPanelActions.js' { - declare module.exports: $Exports<'@material-ui/core/esm/ExpansionPanelActions/ExpansionPanelActions'>; -} -declare module '@material-ui/core/esm/ExpansionPanelActions/index' { - declare module.exports: $Exports<'@material-ui/core/esm/ExpansionPanelActions'>; -} -declare module '@material-ui/core/esm/ExpansionPanelActions/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/ExpansionPanelActions'>; -} -declare module '@material-ui/core/esm/ExpansionPanelDetails/ExpansionPanelDetails.js' { - declare module.exports: $Exports<'@material-ui/core/esm/ExpansionPanelDetails/ExpansionPanelDetails'>; -} -declare module '@material-ui/core/esm/ExpansionPanelDetails/index' { - declare module.exports: $Exports<'@material-ui/core/esm/ExpansionPanelDetails'>; -} -declare module '@material-ui/core/esm/ExpansionPanelDetails/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/ExpansionPanelDetails'>; -} -declare module '@material-ui/core/esm/ExpansionPanelSummary/ExpansionPanelSummary.js' { - declare module.exports: $Exports<'@material-ui/core/esm/ExpansionPanelSummary/ExpansionPanelSummary'>; -} -declare module '@material-ui/core/esm/ExpansionPanelSummary/index' { - declare module.exports: $Exports<'@material-ui/core/esm/ExpansionPanelSummary'>; -} -declare module '@material-ui/core/esm/ExpansionPanelSummary/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/ExpansionPanelSummary'>; -} -declare module '@material-ui/core/esm/Fab/Fab.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Fab/Fab'>; -} -declare module '@material-ui/core/esm/Fab/index' { - declare module.exports: $Exports<'@material-ui/core/esm/Fab'>; -} -declare module '@material-ui/core/esm/Fab/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Fab'>; -} -declare module '@material-ui/core/esm/Fade/Fade.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Fade/Fade'>; -} -declare module '@material-ui/core/esm/Fade/index' { - declare module.exports: $Exports<'@material-ui/core/esm/Fade'>; -} -declare module '@material-ui/core/esm/Fade/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Fade'>; -} -declare module '@material-ui/core/esm/FilledInput/FilledInput.js' { - declare module.exports: $Exports<'@material-ui/core/esm/FilledInput/FilledInput'>; -} -declare module '@material-ui/core/esm/FilledInput/index' { - declare module.exports: $Exports<'@material-ui/core/esm/FilledInput'>; -} -declare module '@material-ui/core/esm/FilledInput/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/FilledInput'>; -} -declare module '@material-ui/core/esm/FormControl/FormControl.js' { - declare module.exports: $Exports<'@material-ui/core/esm/FormControl/FormControl'>; -} -declare module '@material-ui/core/esm/FormControl/FormControlContext.js' { - declare module.exports: $Exports<'@material-ui/core/esm/FormControl/FormControlContext'>; -} -declare module '@material-ui/core/esm/FormControl/formControlState.js' { - declare module.exports: $Exports<'@material-ui/core/esm/FormControl/formControlState'>; -} -declare module '@material-ui/core/esm/FormControl/index' { - declare module.exports: $Exports<'@material-ui/core/esm/FormControl'>; -} -declare module '@material-ui/core/esm/FormControl/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/FormControl'>; -} -declare module '@material-ui/core/esm/FormControl/useFormControl.js' { - declare module.exports: $Exports<'@material-ui/core/esm/FormControl/useFormControl'>; -} -declare module '@material-ui/core/esm/FormControlLabel/FormControlLabel.js' { - declare module.exports: $Exports<'@material-ui/core/esm/FormControlLabel/FormControlLabel'>; -} -declare module '@material-ui/core/esm/FormControlLabel/index' { - declare module.exports: $Exports<'@material-ui/core/esm/FormControlLabel'>; -} -declare module '@material-ui/core/esm/FormControlLabel/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/FormControlLabel'>; -} -declare module '@material-ui/core/esm/FormGroup/FormGroup.js' { - declare module.exports: $Exports<'@material-ui/core/esm/FormGroup/FormGroup'>; -} -declare module '@material-ui/core/esm/FormGroup/index' { - declare module.exports: $Exports<'@material-ui/core/esm/FormGroup'>; -} -declare module '@material-ui/core/esm/FormGroup/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/FormGroup'>; -} -declare module '@material-ui/core/esm/FormHelperText/FormHelperText.js' { - declare module.exports: $Exports<'@material-ui/core/esm/FormHelperText/FormHelperText'>; -} -declare module '@material-ui/core/esm/FormHelperText/index' { - declare module.exports: $Exports<'@material-ui/core/esm/FormHelperText'>; -} -declare module '@material-ui/core/esm/FormHelperText/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/FormHelperText'>; -} -declare module '@material-ui/core/esm/FormLabel/FormLabel.js' { - declare module.exports: $Exports<'@material-ui/core/esm/FormLabel/FormLabel'>; -} -declare module '@material-ui/core/esm/FormLabel/index' { - declare module.exports: $Exports<'@material-ui/core/esm/FormLabel'>; -} -declare module '@material-ui/core/esm/FormLabel/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/FormLabel'>; -} -declare module '@material-ui/core/esm/Grid/Grid.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Grid/Grid'>; -} -declare module '@material-ui/core/esm/Grid/index' { - declare module.exports: $Exports<'@material-ui/core/esm/Grid'>; -} -declare module '@material-ui/core/esm/Grid/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Grid'>; -} -declare module '@material-ui/core/esm/GridList/GridList.js' { - declare module.exports: $Exports<'@material-ui/core/esm/GridList/GridList'>; -} -declare module '@material-ui/core/esm/GridList/index' { - declare module.exports: $Exports<'@material-ui/core/esm/GridList'>; -} -declare module '@material-ui/core/esm/GridList/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/GridList'>; -} -declare module '@material-ui/core/esm/GridListTile/GridListTile.js' { - declare module.exports: $Exports<'@material-ui/core/esm/GridListTile/GridListTile'>; -} -declare module '@material-ui/core/esm/GridListTile/index' { - declare module.exports: $Exports<'@material-ui/core/esm/GridListTile'>; -} -declare module '@material-ui/core/esm/GridListTile/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/GridListTile'>; -} -declare module '@material-ui/core/esm/GridListTileBar/GridListTileBar.js' { - declare module.exports: $Exports<'@material-ui/core/esm/GridListTileBar/GridListTileBar'>; -} -declare module '@material-ui/core/esm/GridListTileBar/index' { - declare module.exports: $Exports<'@material-ui/core/esm/GridListTileBar'>; -} -declare module '@material-ui/core/esm/GridListTileBar/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/GridListTileBar'>; -} -declare module '@material-ui/core/esm/Grow/Grow.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Grow/Grow'>; -} -declare module '@material-ui/core/esm/Grow/index' { - declare module.exports: $Exports<'@material-ui/core/esm/Grow'>; -} -declare module '@material-ui/core/esm/Grow/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Grow'>; -} -declare module '@material-ui/core/esm/Hidden/Hidden.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Hidden/Hidden'>; -} -declare module '@material-ui/core/esm/Hidden/HiddenCss.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Hidden/HiddenCss'>; -} -declare module '@material-ui/core/esm/Hidden/HiddenJs.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Hidden/HiddenJs'>; -} -declare module '@material-ui/core/esm/Hidden/index' { - declare module.exports: $Exports<'@material-ui/core/esm/Hidden'>; -} -declare module '@material-ui/core/esm/Hidden/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Hidden'>; -} -declare module '@material-ui/core/esm/Icon/Icon.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Icon/Icon'>; -} -declare module '@material-ui/core/esm/Icon/index' { - declare module.exports: $Exports<'@material-ui/core/esm/Icon'>; -} -declare module '@material-ui/core/esm/Icon/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Icon'>; -} -declare module '@material-ui/core/esm/IconButton/IconButton.js' { - declare module.exports: $Exports<'@material-ui/core/esm/IconButton/IconButton'>; -} -declare module '@material-ui/core/esm/IconButton/index' { - declare module.exports: $Exports<'@material-ui/core/esm/IconButton'>; -} -declare module '@material-ui/core/esm/IconButton/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/IconButton'>; -} -declare module '@material-ui/core/esm/index' { - declare module.exports: $Exports<'@material-ui/core/esm'>; -} -declare module '@material-ui/core/esm/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm'>; -} -declare module '@material-ui/core/esm/Input/index' { - declare module.exports: $Exports<'@material-ui/core/esm/Input'>; -} -declare module '@material-ui/core/esm/Input/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Input'>; -} -declare module '@material-ui/core/esm/Input/Input.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Input/Input'>; -} -declare module '@material-ui/core/esm/InputAdornment/index' { - declare module.exports: $Exports<'@material-ui/core/esm/InputAdornment'>; -} -declare module '@material-ui/core/esm/InputAdornment/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/InputAdornment'>; -} -declare module '@material-ui/core/esm/InputAdornment/InputAdornment.js' { - declare module.exports: $Exports<'@material-ui/core/esm/InputAdornment/InputAdornment'>; -} -declare module '@material-ui/core/esm/InputBase/index' { - declare module.exports: $Exports<'@material-ui/core/esm/InputBase'>; -} -declare module '@material-ui/core/esm/InputBase/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/InputBase'>; -} -declare module '@material-ui/core/esm/InputBase/InputBase.js' { - declare module.exports: $Exports<'@material-ui/core/esm/InputBase/InputBase'>; -} -declare module '@material-ui/core/esm/InputBase/utils.js' { - declare module.exports: $Exports<'@material-ui/core/esm/InputBase/utils'>; -} -declare module '@material-ui/core/esm/InputLabel/index' { - declare module.exports: $Exports<'@material-ui/core/esm/InputLabel'>; -} -declare module '@material-ui/core/esm/InputLabel/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/InputLabel'>; -} -declare module '@material-ui/core/esm/InputLabel/InputLabel.js' { - declare module.exports: $Exports<'@material-ui/core/esm/InputLabel/InputLabel'>; -} -declare module '@material-ui/core/esm/internal/animate.js' { - declare module.exports: $Exports<'@material-ui/core/esm/internal/animate'>; -} -declare module '@material-ui/core/esm/internal/svg-icons/ArrowDownward.js' { - declare module.exports: $Exports<'@material-ui/core/esm/internal/svg-icons/ArrowDownward'>; -} -declare module '@material-ui/core/esm/internal/svg-icons/ArrowDropDown.js' { - declare module.exports: $Exports<'@material-ui/core/esm/internal/svg-icons/ArrowDropDown'>; -} -declare module '@material-ui/core/esm/internal/svg-icons/Cancel.js' { - declare module.exports: $Exports<'@material-ui/core/esm/internal/svg-icons/Cancel'>; -} -declare module '@material-ui/core/esm/internal/svg-icons/CheckBox.js' { - declare module.exports: $Exports<'@material-ui/core/esm/internal/svg-icons/CheckBox'>; -} -declare module '@material-ui/core/esm/internal/svg-icons/CheckBoxOutlineBlank.js' { - declare module.exports: $Exports<'@material-ui/core/esm/internal/svg-icons/CheckBoxOutlineBlank'>; -} -declare module '@material-ui/core/esm/internal/svg-icons/CheckCircle.js' { - declare module.exports: $Exports<'@material-ui/core/esm/internal/svg-icons/CheckCircle'>; -} -declare module '@material-ui/core/esm/internal/svg-icons/Close.js' { - declare module.exports: $Exports<'@material-ui/core/esm/internal/svg-icons/Close'>; -} -declare module '@material-ui/core/esm/internal/svg-icons/IndeterminateCheckBox.js' { - declare module.exports: $Exports<'@material-ui/core/esm/internal/svg-icons/IndeterminateCheckBox'>; -} -declare module '@material-ui/core/esm/internal/svg-icons/KeyboardArrowLeft.js' { - declare module.exports: $Exports<'@material-ui/core/esm/internal/svg-icons/KeyboardArrowLeft'>; -} -declare module '@material-ui/core/esm/internal/svg-icons/KeyboardArrowRight.js' { - declare module.exports: $Exports<'@material-ui/core/esm/internal/svg-icons/KeyboardArrowRight'>; -} -declare module '@material-ui/core/esm/internal/svg-icons/MoreHoriz.js' { - declare module.exports: $Exports<'@material-ui/core/esm/internal/svg-icons/MoreHoriz'>; -} -declare module '@material-ui/core/esm/internal/svg-icons/Person.js' { - declare module.exports: $Exports<'@material-ui/core/esm/internal/svg-icons/Person'>; -} -declare module '@material-ui/core/esm/internal/svg-icons/RadioButtonChecked.js' { - declare module.exports: $Exports<'@material-ui/core/esm/internal/svg-icons/RadioButtonChecked'>; -} -declare module '@material-ui/core/esm/internal/svg-icons/RadioButtonUnchecked.js' { - declare module.exports: $Exports<'@material-ui/core/esm/internal/svg-icons/RadioButtonUnchecked'>; -} -declare module '@material-ui/core/esm/internal/svg-icons/Warning.js' { - declare module.exports: $Exports<'@material-ui/core/esm/internal/svg-icons/Warning'>; -} -declare module '@material-ui/core/esm/internal/SwitchBase.js' { - declare module.exports: $Exports<'@material-ui/core/esm/internal/SwitchBase'>; -} -declare module '@material-ui/core/esm/LinearProgress/index' { - declare module.exports: $Exports<'@material-ui/core/esm/LinearProgress'>; -} -declare module '@material-ui/core/esm/LinearProgress/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/LinearProgress'>; -} -declare module '@material-ui/core/esm/LinearProgress/LinearProgress.js' { - declare module.exports: $Exports<'@material-ui/core/esm/LinearProgress/LinearProgress'>; -} -declare module '@material-ui/core/esm/Link/index' { - declare module.exports: $Exports<'@material-ui/core/esm/Link'>; -} -declare module '@material-ui/core/esm/Link/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Link'>; -} -declare module '@material-ui/core/esm/Link/Link.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Link/Link'>; -} -declare module '@material-ui/core/esm/List/index' { - declare module.exports: $Exports<'@material-ui/core/esm/List'>; -} -declare module '@material-ui/core/esm/List/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/List'>; -} -declare module '@material-ui/core/esm/List/List.js' { - declare module.exports: $Exports<'@material-ui/core/esm/List/List'>; -} -declare module '@material-ui/core/esm/List/ListContext.js' { - declare module.exports: $Exports<'@material-ui/core/esm/List/ListContext'>; -} -declare module '@material-ui/core/esm/ListItem/index' { - declare module.exports: $Exports<'@material-ui/core/esm/ListItem'>; -} -declare module '@material-ui/core/esm/ListItem/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/ListItem'>; -} -declare module '@material-ui/core/esm/ListItem/ListItem.js' { - declare module.exports: $Exports<'@material-ui/core/esm/ListItem/ListItem'>; -} -declare module '@material-ui/core/esm/ListItemAvatar/index' { - declare module.exports: $Exports<'@material-ui/core/esm/ListItemAvatar'>; -} -declare module '@material-ui/core/esm/ListItemAvatar/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/ListItemAvatar'>; -} -declare module '@material-ui/core/esm/ListItemAvatar/ListItemAvatar.js' { - declare module.exports: $Exports<'@material-ui/core/esm/ListItemAvatar/ListItemAvatar'>; -} -declare module '@material-ui/core/esm/ListItemIcon/index' { - declare module.exports: $Exports<'@material-ui/core/esm/ListItemIcon'>; -} -declare module '@material-ui/core/esm/ListItemIcon/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/ListItemIcon'>; -} -declare module '@material-ui/core/esm/ListItemIcon/ListItemIcon.js' { - declare module.exports: $Exports<'@material-ui/core/esm/ListItemIcon/ListItemIcon'>; -} -declare module '@material-ui/core/esm/ListItemSecondaryAction/index' { - declare module.exports: $Exports<'@material-ui/core/esm/ListItemSecondaryAction'>; -} -declare module '@material-ui/core/esm/ListItemSecondaryAction/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/ListItemSecondaryAction'>; -} -declare module '@material-ui/core/esm/ListItemSecondaryAction/ListItemSecondaryAction.js' { - declare module.exports: $Exports<'@material-ui/core/esm/ListItemSecondaryAction/ListItemSecondaryAction'>; -} -declare module '@material-ui/core/esm/ListItemText/index' { - declare module.exports: $Exports<'@material-ui/core/esm/ListItemText'>; -} -declare module '@material-ui/core/esm/ListItemText/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/ListItemText'>; -} -declare module '@material-ui/core/esm/ListItemText/ListItemText.js' { - declare module.exports: $Exports<'@material-ui/core/esm/ListItemText/ListItemText'>; -} -declare module '@material-ui/core/esm/ListSubheader/index' { - declare module.exports: $Exports<'@material-ui/core/esm/ListSubheader'>; -} -declare module '@material-ui/core/esm/ListSubheader/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/ListSubheader'>; -} -declare module '@material-ui/core/esm/ListSubheader/ListSubheader.js' { - declare module.exports: $Exports<'@material-ui/core/esm/ListSubheader/ListSubheader'>; -} -declare module '@material-ui/core/esm/locale/index' { - declare module.exports: $Exports<'@material-ui/core/esm/locale'>; -} -declare module '@material-ui/core/esm/locale/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/locale'>; -} -declare module '@material-ui/core/esm/Menu/index' { - declare module.exports: $Exports<'@material-ui/core/esm/Menu'>; -} -declare module '@material-ui/core/esm/Menu/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Menu'>; -} -declare module '@material-ui/core/esm/Menu/Menu.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Menu/Menu'>; -} -declare module '@material-ui/core/esm/MenuItem/index' { - declare module.exports: $Exports<'@material-ui/core/esm/MenuItem'>; -} -declare module '@material-ui/core/esm/MenuItem/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/MenuItem'>; -} -declare module '@material-ui/core/esm/MenuItem/MenuItem.js' { - declare module.exports: $Exports<'@material-ui/core/esm/MenuItem/MenuItem'>; -} -declare module '@material-ui/core/esm/MenuList/index' { - declare module.exports: $Exports<'@material-ui/core/esm/MenuList'>; -} -declare module '@material-ui/core/esm/MenuList/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/MenuList'>; -} -declare module '@material-ui/core/esm/MenuList/MenuList.js' { - declare module.exports: $Exports<'@material-ui/core/esm/MenuList/MenuList'>; -} -declare module '@material-ui/core/esm/MobileStepper/index' { - declare module.exports: $Exports<'@material-ui/core/esm/MobileStepper'>; -} -declare module '@material-ui/core/esm/MobileStepper/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/MobileStepper'>; -} -declare module '@material-ui/core/esm/MobileStepper/MobileStepper.js' { - declare module.exports: $Exports<'@material-ui/core/esm/MobileStepper/MobileStepper'>; -} -declare module '@material-ui/core/esm/Modal/index' { - declare module.exports: $Exports<'@material-ui/core/esm/Modal'>; -} -declare module '@material-ui/core/esm/Modal/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Modal'>; -} -declare module '@material-ui/core/esm/Modal/Modal.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Modal/Modal'>; -} -declare module '@material-ui/core/esm/Modal/ModalManager.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Modal/ModalManager'>; -} -declare module '@material-ui/core/esm/Modal/SimpleBackdrop.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Modal/SimpleBackdrop'>; -} -declare module '@material-ui/core/esm/NativeSelect/index' { - declare module.exports: $Exports<'@material-ui/core/esm/NativeSelect'>; -} -declare module '@material-ui/core/esm/NativeSelect/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/NativeSelect'>; -} -declare module '@material-ui/core/esm/NativeSelect/NativeSelect.js' { - declare module.exports: $Exports<'@material-ui/core/esm/NativeSelect/NativeSelect'>; -} -declare module '@material-ui/core/esm/NativeSelect/NativeSelectInput.js' { - declare module.exports: $Exports<'@material-ui/core/esm/NativeSelect/NativeSelectInput'>; -} -declare module '@material-ui/core/esm/NoSsr/index' { - declare module.exports: $Exports<'@material-ui/core/esm/NoSsr'>; -} -declare module '@material-ui/core/esm/NoSsr/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/NoSsr'>; -} -declare module '@material-ui/core/esm/NoSsr/NoSsr.js' { - declare module.exports: $Exports<'@material-ui/core/esm/NoSsr/NoSsr'>; -} -declare module '@material-ui/core/esm/OutlinedInput/index' { - declare module.exports: $Exports<'@material-ui/core/esm/OutlinedInput'>; -} -declare module '@material-ui/core/esm/OutlinedInput/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/OutlinedInput'>; -} -declare module '@material-ui/core/esm/OutlinedInput/NotchedOutline.js' { - declare module.exports: $Exports<'@material-ui/core/esm/OutlinedInput/NotchedOutline'>; -} -declare module '@material-ui/core/esm/OutlinedInput/OutlinedInput.js' { - declare module.exports: $Exports<'@material-ui/core/esm/OutlinedInput/OutlinedInput'>; -} -declare module '@material-ui/core/esm/Paper/index' { - declare module.exports: $Exports<'@material-ui/core/esm/Paper'>; -} -declare module '@material-ui/core/esm/Paper/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Paper'>; -} -declare module '@material-ui/core/esm/Paper/Paper.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Paper/Paper'>; -} -declare module '@material-ui/core/esm/Popover/index' { - declare module.exports: $Exports<'@material-ui/core/esm/Popover'>; -} -declare module '@material-ui/core/esm/Popover/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Popover'>; -} -declare module '@material-ui/core/esm/Popover/Popover.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Popover/Popover'>; -} -declare module '@material-ui/core/esm/Popper/index' { - declare module.exports: $Exports<'@material-ui/core/esm/Popper'>; -} -declare module '@material-ui/core/esm/Popper/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Popper'>; -} -declare module '@material-ui/core/esm/Popper/Popper.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Popper/Popper'>; -} -declare module '@material-ui/core/esm/Portal/index' { - declare module.exports: $Exports<'@material-ui/core/esm/Portal'>; -} -declare module '@material-ui/core/esm/Portal/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Portal'>; -} -declare module '@material-ui/core/esm/Portal/Portal.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Portal/Portal'>; -} -declare module '@material-ui/core/esm/Radio/index' { - declare module.exports: $Exports<'@material-ui/core/esm/Radio'>; -} -declare module '@material-ui/core/esm/Radio/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Radio'>; -} -declare module '@material-ui/core/esm/Radio/Radio.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Radio/Radio'>; -} -declare module '@material-ui/core/esm/Radio/RadioButtonIcon.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Radio/RadioButtonIcon'>; -} -declare module '@material-ui/core/esm/RadioGroup/index' { - declare module.exports: $Exports<'@material-ui/core/esm/RadioGroup'>; -} -declare module '@material-ui/core/esm/RadioGroup/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/RadioGroup'>; -} -declare module '@material-ui/core/esm/RadioGroup/RadioGroup.js' { - declare module.exports: $Exports<'@material-ui/core/esm/RadioGroup/RadioGroup'>; -} -declare module '@material-ui/core/esm/RadioGroup/RadioGroupContext.js' { - declare module.exports: $Exports<'@material-ui/core/esm/RadioGroup/RadioGroupContext'>; -} -declare module '@material-ui/core/esm/RadioGroup/useRadioGroup.js' { - declare module.exports: $Exports<'@material-ui/core/esm/RadioGroup/useRadioGroup'>; -} -declare module '@material-ui/core/esm/RootRef/index' { - declare module.exports: $Exports<'@material-ui/core/esm/RootRef'>; -} -declare module '@material-ui/core/esm/RootRef/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/RootRef'>; -} -declare module '@material-ui/core/esm/RootRef/RootRef.js' { - declare module.exports: $Exports<'@material-ui/core/esm/RootRef/RootRef'>; -} -declare module '@material-ui/core/esm/ScopedCssBaseline/index' { - declare module.exports: $Exports<'@material-ui/core/esm/ScopedCssBaseline'>; -} -declare module '@material-ui/core/esm/ScopedCssBaseline/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/ScopedCssBaseline'>; -} -declare module '@material-ui/core/esm/ScopedCssBaseline/ScopedCssBaseline.js' { - declare module.exports: $Exports<'@material-ui/core/esm/ScopedCssBaseline/ScopedCssBaseline'>; -} -declare module '@material-ui/core/esm/Select/index' { - declare module.exports: $Exports<'@material-ui/core/esm/Select'>; -} -declare module '@material-ui/core/esm/Select/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Select'>; -} -declare module '@material-ui/core/esm/Select/Select.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Select/Select'>; -} -declare module '@material-ui/core/esm/Select/SelectInput.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Select/SelectInput'>; -} -declare module '@material-ui/core/esm/Slide/index' { - declare module.exports: $Exports<'@material-ui/core/esm/Slide'>; -} -declare module '@material-ui/core/esm/Slide/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Slide'>; -} -declare module '@material-ui/core/esm/Slide/Slide.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Slide/Slide'>; -} -declare module '@material-ui/core/esm/Slider/index' { - declare module.exports: $Exports<'@material-ui/core/esm/Slider'>; -} -declare module '@material-ui/core/esm/Slider/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Slider'>; -} -declare module '@material-ui/core/esm/Slider/Slider.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Slider/Slider'>; -} -declare module '@material-ui/core/esm/Slider/ValueLabel.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Slider/ValueLabel'>; -} -declare module '@material-ui/core/esm/Snackbar/index' { - declare module.exports: $Exports<'@material-ui/core/esm/Snackbar'>; -} -declare module '@material-ui/core/esm/Snackbar/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Snackbar'>; -} -declare module '@material-ui/core/esm/Snackbar/Snackbar.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Snackbar/Snackbar'>; -} -declare module '@material-ui/core/esm/SnackbarContent/index' { - declare module.exports: $Exports<'@material-ui/core/esm/SnackbarContent'>; -} -declare module '@material-ui/core/esm/SnackbarContent/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/SnackbarContent'>; -} -declare module '@material-ui/core/esm/SnackbarContent/SnackbarContent.js' { - declare module.exports: $Exports<'@material-ui/core/esm/SnackbarContent/SnackbarContent'>; -} -declare module '@material-ui/core/esm/Step/index' { - declare module.exports: $Exports<'@material-ui/core/esm/Step'>; -} -declare module '@material-ui/core/esm/Step/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Step'>; -} -declare module '@material-ui/core/esm/Step/Step.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Step/Step'>; -} -declare module '@material-ui/core/esm/StepButton/index' { - declare module.exports: $Exports<'@material-ui/core/esm/StepButton'>; -} -declare module '@material-ui/core/esm/StepButton/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/StepButton'>; -} -declare module '@material-ui/core/esm/StepButton/StepButton.js' { - declare module.exports: $Exports<'@material-ui/core/esm/StepButton/StepButton'>; -} -declare module '@material-ui/core/esm/StepConnector/index' { - declare module.exports: $Exports<'@material-ui/core/esm/StepConnector'>; -} -declare module '@material-ui/core/esm/StepConnector/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/StepConnector'>; -} -declare module '@material-ui/core/esm/StepConnector/StepConnector.js' { - declare module.exports: $Exports<'@material-ui/core/esm/StepConnector/StepConnector'>; -} -declare module '@material-ui/core/esm/StepContent/index' { - declare module.exports: $Exports<'@material-ui/core/esm/StepContent'>; -} -declare module '@material-ui/core/esm/StepContent/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/StepContent'>; -} -declare module '@material-ui/core/esm/StepContent/StepContent.js' { - declare module.exports: $Exports<'@material-ui/core/esm/StepContent/StepContent'>; -} -declare module '@material-ui/core/esm/StepIcon/index' { - declare module.exports: $Exports<'@material-ui/core/esm/StepIcon'>; -} -declare module '@material-ui/core/esm/StepIcon/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/StepIcon'>; -} -declare module '@material-ui/core/esm/StepIcon/StepIcon.js' { - declare module.exports: $Exports<'@material-ui/core/esm/StepIcon/StepIcon'>; -} -declare module '@material-ui/core/esm/StepLabel/index' { - declare module.exports: $Exports<'@material-ui/core/esm/StepLabel'>; -} -declare module '@material-ui/core/esm/StepLabel/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/StepLabel'>; -} -declare module '@material-ui/core/esm/StepLabel/StepLabel.js' { - declare module.exports: $Exports<'@material-ui/core/esm/StepLabel/StepLabel'>; -} -declare module '@material-ui/core/esm/Stepper/index' { - declare module.exports: $Exports<'@material-ui/core/esm/Stepper'>; -} -declare module '@material-ui/core/esm/Stepper/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Stepper'>; -} -declare module '@material-ui/core/esm/Stepper/Stepper.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Stepper/Stepper'>; -} -declare module '@material-ui/core/esm/styles/colorManipulator.js' { - declare module.exports: $Exports<'@material-ui/core/esm/styles/colorManipulator'>; -} -declare module '@material-ui/core/esm/styles/createBreakpoints.js' { - declare module.exports: $Exports<'@material-ui/core/esm/styles/createBreakpoints'>; -} -declare module '@material-ui/core/esm/styles/createMixins.js' { - declare module.exports: $Exports<'@material-ui/core/esm/styles/createMixins'>; -} -declare module '@material-ui/core/esm/styles/createMuiStrictModeTheme.js' { - declare module.exports: $Exports<'@material-ui/core/esm/styles/createMuiStrictModeTheme'>; -} -declare module '@material-ui/core/esm/styles/createMuiTheme.js' { - declare module.exports: $Exports<'@material-ui/core/esm/styles/createMuiTheme'>; -} -declare module '@material-ui/core/esm/styles/createPalette.js' { - declare module.exports: $Exports<'@material-ui/core/esm/styles/createPalette'>; -} -declare module '@material-ui/core/esm/styles/createSpacing.js' { - declare module.exports: $Exports<'@material-ui/core/esm/styles/createSpacing'>; -} -declare module '@material-ui/core/esm/styles/createStyles.js' { - declare module.exports: $Exports<'@material-ui/core/esm/styles/createStyles'>; -} -declare module '@material-ui/core/esm/styles/createTypography.js' { - declare module.exports: $Exports<'@material-ui/core/esm/styles/createTypography'>; -} -declare module '@material-ui/core/esm/styles/cssUtils.js' { - declare module.exports: $Exports<'@material-ui/core/esm/styles/cssUtils'>; -} -declare module '@material-ui/core/esm/styles/defaultTheme.js' { - declare module.exports: $Exports<'@material-ui/core/esm/styles/defaultTheme'>; -} -declare module '@material-ui/core/esm/styles/index' { - declare module.exports: $Exports<'@material-ui/core/esm/styles'>; -} -declare module '@material-ui/core/esm/styles/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/styles'>; -} -declare module '@material-ui/core/esm/styles/makeStyles.js' { - declare module.exports: $Exports<'@material-ui/core/esm/styles/makeStyles'>; -} -declare module '@material-ui/core/esm/styles/MuiThemeProvider.js' { - declare module.exports: $Exports<'@material-ui/core/esm/styles/MuiThemeProvider'>; -} -declare module '@material-ui/core/esm/styles/responsiveFontSizes.js' { - declare module.exports: $Exports<'@material-ui/core/esm/styles/responsiveFontSizes'>; -} -declare module '@material-ui/core/esm/styles/shadows.js' { - declare module.exports: $Exports<'@material-ui/core/esm/styles/shadows'>; -} -declare module '@material-ui/core/esm/styles/shape.js' { - declare module.exports: $Exports<'@material-ui/core/esm/styles/shape'>; -} -declare module '@material-ui/core/esm/styles/styled.js' { - declare module.exports: $Exports<'@material-ui/core/esm/styles/styled'>; -} -declare module '@material-ui/core/esm/styles/transitions.js' { - declare module.exports: $Exports<'@material-ui/core/esm/styles/transitions'>; -} -declare module '@material-ui/core/esm/styles/useTheme.js' { - declare module.exports: $Exports<'@material-ui/core/esm/styles/useTheme'>; -} -declare module '@material-ui/core/esm/styles/withStyles.js' { - declare module.exports: $Exports<'@material-ui/core/esm/styles/withStyles'>; -} -declare module '@material-ui/core/esm/styles/withTheme.js' { - declare module.exports: $Exports<'@material-ui/core/esm/styles/withTheme'>; -} -declare module '@material-ui/core/esm/styles/zIndex.js' { - declare module.exports: $Exports<'@material-ui/core/esm/styles/zIndex'>; -} -declare module '@material-ui/core/esm/SvgIcon/index' { - declare module.exports: $Exports<'@material-ui/core/esm/SvgIcon'>; -} -declare module '@material-ui/core/esm/SvgIcon/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/SvgIcon'>; -} -declare module '@material-ui/core/esm/SvgIcon/SvgIcon.js' { - declare module.exports: $Exports<'@material-ui/core/esm/SvgIcon/SvgIcon'>; -} -declare module '@material-ui/core/esm/SwipeableDrawer/index' { - declare module.exports: $Exports<'@material-ui/core/esm/SwipeableDrawer'>; -} -declare module '@material-ui/core/esm/SwipeableDrawer/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/SwipeableDrawer'>; -} -declare module '@material-ui/core/esm/SwipeableDrawer/SwipeableDrawer.js' { - declare module.exports: $Exports<'@material-ui/core/esm/SwipeableDrawer/SwipeableDrawer'>; -} -declare module '@material-ui/core/esm/SwipeableDrawer/SwipeArea.js' { - declare module.exports: $Exports<'@material-ui/core/esm/SwipeableDrawer/SwipeArea'>; -} -declare module '@material-ui/core/esm/Switch/index' { - declare module.exports: $Exports<'@material-ui/core/esm/Switch'>; -} -declare module '@material-ui/core/esm/Switch/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Switch'>; -} -declare module '@material-ui/core/esm/Switch/Switch.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Switch/Switch'>; -} -declare module '@material-ui/core/esm/Tab/index' { - declare module.exports: $Exports<'@material-ui/core/esm/Tab'>; -} -declare module '@material-ui/core/esm/Tab/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Tab'>; -} -declare module '@material-ui/core/esm/Tab/Tab.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Tab/Tab'>; -} -declare module '@material-ui/core/esm/Table/index' { - declare module.exports: $Exports<'@material-ui/core/esm/Table'>; -} -declare module '@material-ui/core/esm/Table/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Table'>; -} -declare module '@material-ui/core/esm/Table/Table.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Table/Table'>; -} -declare module '@material-ui/core/esm/Table/TableContext.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Table/TableContext'>; -} -declare module '@material-ui/core/esm/Table/Tablelvl2Context.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Table/Tablelvl2Context'>; -} -declare module '@material-ui/core/esm/TableBody/index' { - declare module.exports: $Exports<'@material-ui/core/esm/TableBody'>; -} -declare module '@material-ui/core/esm/TableBody/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/TableBody'>; -} -declare module '@material-ui/core/esm/TableBody/TableBody.js' { - declare module.exports: $Exports<'@material-ui/core/esm/TableBody/TableBody'>; -} -declare module '@material-ui/core/esm/TableCell/index' { - declare module.exports: $Exports<'@material-ui/core/esm/TableCell'>; -} -declare module '@material-ui/core/esm/TableCell/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/TableCell'>; -} -declare module '@material-ui/core/esm/TableCell/TableCell.js' { - declare module.exports: $Exports<'@material-ui/core/esm/TableCell/TableCell'>; -} -declare module '@material-ui/core/esm/TableContainer/index' { - declare module.exports: $Exports<'@material-ui/core/esm/TableContainer'>; -} -declare module '@material-ui/core/esm/TableContainer/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/TableContainer'>; -} -declare module '@material-ui/core/esm/TableContainer/TableContainer.js' { - declare module.exports: $Exports<'@material-ui/core/esm/TableContainer/TableContainer'>; -} -declare module '@material-ui/core/esm/TableFooter/index' { - declare module.exports: $Exports<'@material-ui/core/esm/TableFooter'>; -} -declare module '@material-ui/core/esm/TableFooter/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/TableFooter'>; -} -declare module '@material-ui/core/esm/TableFooter/TableFooter.js' { - declare module.exports: $Exports<'@material-ui/core/esm/TableFooter/TableFooter'>; -} -declare module '@material-ui/core/esm/TableHead/index' { - declare module.exports: $Exports<'@material-ui/core/esm/TableHead'>; -} -declare module '@material-ui/core/esm/TableHead/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/TableHead'>; -} -declare module '@material-ui/core/esm/TableHead/TableHead.js' { - declare module.exports: $Exports<'@material-ui/core/esm/TableHead/TableHead'>; -} -declare module '@material-ui/core/esm/TablePagination/index' { - declare module.exports: $Exports<'@material-ui/core/esm/TablePagination'>; -} -declare module '@material-ui/core/esm/TablePagination/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/TablePagination'>; -} -declare module '@material-ui/core/esm/TablePagination/TablePagination.js' { - declare module.exports: $Exports<'@material-ui/core/esm/TablePagination/TablePagination'>; -} -declare module '@material-ui/core/esm/TablePagination/TablePaginationActions.js' { - declare module.exports: $Exports<'@material-ui/core/esm/TablePagination/TablePaginationActions'>; -} -declare module '@material-ui/core/esm/TableRow/index' { - declare module.exports: $Exports<'@material-ui/core/esm/TableRow'>; -} -declare module '@material-ui/core/esm/TableRow/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/TableRow'>; -} -declare module '@material-ui/core/esm/TableRow/TableRow.js' { - declare module.exports: $Exports<'@material-ui/core/esm/TableRow/TableRow'>; -} -declare module '@material-ui/core/esm/TableSortLabel/index' { - declare module.exports: $Exports<'@material-ui/core/esm/TableSortLabel'>; -} -declare module '@material-ui/core/esm/TableSortLabel/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/TableSortLabel'>; -} -declare module '@material-ui/core/esm/TableSortLabel/TableSortLabel.js' { - declare module.exports: $Exports<'@material-ui/core/esm/TableSortLabel/TableSortLabel'>; -} -declare module '@material-ui/core/esm/Tabs/index' { - declare module.exports: $Exports<'@material-ui/core/esm/Tabs'>; -} -declare module '@material-ui/core/esm/Tabs/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Tabs'>; -} -declare module '@material-ui/core/esm/Tabs/ScrollbarSize.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Tabs/ScrollbarSize'>; -} -declare module '@material-ui/core/esm/Tabs/TabIndicator.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Tabs/TabIndicator'>; -} -declare module '@material-ui/core/esm/Tabs/Tabs.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Tabs/Tabs'>; -} -declare module '@material-ui/core/esm/TabScrollButton/index' { - declare module.exports: $Exports<'@material-ui/core/esm/TabScrollButton'>; -} -declare module '@material-ui/core/esm/TabScrollButton/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/TabScrollButton'>; -} -declare module '@material-ui/core/esm/TabScrollButton/TabScrollButton.js' { - declare module.exports: $Exports<'@material-ui/core/esm/TabScrollButton/TabScrollButton'>; -} -declare module '@material-ui/core/esm/test-utils/createMount.js' { - declare module.exports: $Exports<'@material-ui/core/esm/test-utils/createMount'>; -} -declare module '@material-ui/core/esm/test-utils/createRender.js' { - declare module.exports: $Exports<'@material-ui/core/esm/test-utils/createRender'>; -} -declare module '@material-ui/core/esm/test-utils/createShallow.js' { - declare module.exports: $Exports<'@material-ui/core/esm/test-utils/createShallow'>; -} -declare module '@material-ui/core/esm/test-utils/describeConformance.js' { - declare module.exports: $Exports<'@material-ui/core/esm/test-utils/describeConformance'>; -} -declare module '@material-ui/core/esm/test-utils/findOutermostIntrinsic.js' { - declare module.exports: $Exports<'@material-ui/core/esm/test-utils/findOutermostIntrinsic'>; -} -declare module '@material-ui/core/esm/test-utils/getClasses.js' { - declare module.exports: $Exports<'@material-ui/core/esm/test-utils/getClasses'>; -} -declare module '@material-ui/core/esm/test-utils/index' { - declare module.exports: $Exports<'@material-ui/core/esm/test-utils'>; -} -declare module '@material-ui/core/esm/test-utils/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/test-utils'>; -} -declare module '@material-ui/core/esm/test-utils/RenderMode.js' { - declare module.exports: $Exports<'@material-ui/core/esm/test-utils/RenderMode'>; -} -declare module '@material-ui/core/esm/test-utils/testRef.js' { - declare module.exports: $Exports<'@material-ui/core/esm/test-utils/testRef'>; -} -declare module '@material-ui/core/esm/test-utils/until.js' { - declare module.exports: $Exports<'@material-ui/core/esm/test-utils/until'>; -} -declare module '@material-ui/core/esm/test-utils/unwrap.js' { - declare module.exports: $Exports<'@material-ui/core/esm/test-utils/unwrap'>; -} -declare module '@material-ui/core/esm/TextareaAutosize/index' { - declare module.exports: $Exports<'@material-ui/core/esm/TextareaAutosize'>; -} -declare module '@material-ui/core/esm/TextareaAutosize/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/TextareaAutosize'>; -} -declare module '@material-ui/core/esm/TextareaAutosize/TextareaAutosize.js' { - declare module.exports: $Exports<'@material-ui/core/esm/TextareaAutosize/TextareaAutosize'>; -} -declare module '@material-ui/core/esm/TextField/index' { - declare module.exports: $Exports<'@material-ui/core/esm/TextField'>; -} -declare module '@material-ui/core/esm/TextField/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/TextField'>; -} -declare module '@material-ui/core/esm/TextField/TextField.js' { - declare module.exports: $Exports<'@material-ui/core/esm/TextField/TextField'>; -} -declare module '@material-ui/core/esm/Toolbar/index' { - declare module.exports: $Exports<'@material-ui/core/esm/Toolbar'>; -} -declare module '@material-ui/core/esm/Toolbar/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Toolbar'>; -} -declare module '@material-ui/core/esm/Toolbar/Toolbar.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Toolbar/Toolbar'>; -} -declare module '@material-ui/core/esm/Tooltip/index' { - declare module.exports: $Exports<'@material-ui/core/esm/Tooltip'>; -} -declare module '@material-ui/core/esm/Tooltip/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Tooltip'>; -} -declare module '@material-ui/core/esm/Tooltip/Tooltip.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Tooltip/Tooltip'>; -} -declare module '@material-ui/core/esm/transitions/utils.js' { - declare module.exports: $Exports<'@material-ui/core/esm/transitions/utils'>; -} -declare module '@material-ui/core/esm/Typography/index' { - declare module.exports: $Exports<'@material-ui/core/esm/Typography'>; -} -declare module '@material-ui/core/esm/Typography/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Typography'>; -} -declare module '@material-ui/core/esm/Typography/Typography.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Typography/Typography'>; -} -declare module '@material-ui/core/esm/Unstable_TrapFocus/index' { - declare module.exports: $Exports<'@material-ui/core/esm/Unstable_TrapFocus'>; -} -declare module '@material-ui/core/esm/Unstable_TrapFocus/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Unstable_TrapFocus'>; -} -declare module '@material-ui/core/esm/Unstable_TrapFocus/Unstable_TrapFocus.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Unstable_TrapFocus/Unstable_TrapFocus'>; -} -declare module '@material-ui/core/esm/useMediaQuery/index' { - declare module.exports: $Exports<'@material-ui/core/esm/useMediaQuery'>; -} -declare module '@material-ui/core/esm/useMediaQuery/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/useMediaQuery'>; -} -declare module '@material-ui/core/esm/useMediaQuery/useMediaQuery.js' { - declare module.exports: $Exports<'@material-ui/core/esm/useMediaQuery/useMediaQuery'>; -} -declare module '@material-ui/core/esm/useMediaQuery/useMediaQueryTheme.js' { - declare module.exports: $Exports<'@material-ui/core/esm/useMediaQuery/useMediaQueryTheme'>; -} -declare module '@material-ui/core/esm/useScrollTrigger/index' { - declare module.exports: $Exports<'@material-ui/core/esm/useScrollTrigger'>; -} -declare module '@material-ui/core/esm/useScrollTrigger/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/useScrollTrigger'>; -} -declare module '@material-ui/core/esm/useScrollTrigger/useScrollTrigger.js' { - declare module.exports: $Exports<'@material-ui/core/esm/useScrollTrigger/useScrollTrigger'>; -} -declare module '@material-ui/core/esm/utils/capitalize.js' { - declare module.exports: $Exports<'@material-ui/core/esm/utils/capitalize'>; -} -declare module '@material-ui/core/esm/utils/createChainedFunction.js' { - declare module.exports: $Exports<'@material-ui/core/esm/utils/createChainedFunction'>; -} -declare module '@material-ui/core/esm/utils/createSvgIcon.js' { - declare module.exports: $Exports<'@material-ui/core/esm/utils/createSvgIcon'>; -} -declare module '@material-ui/core/esm/utils/debounce.js' { - declare module.exports: $Exports<'@material-ui/core/esm/utils/debounce'>; -} -declare module '@material-ui/core/esm/utils/deprecatedPropType.js' { - declare module.exports: $Exports<'@material-ui/core/esm/utils/deprecatedPropType'>; -} -declare module '@material-ui/core/esm/utils/getScrollbarSize.js' { - declare module.exports: $Exports<'@material-ui/core/esm/utils/getScrollbarSize'>; -} -declare module '@material-ui/core/esm/utils/index' { - declare module.exports: $Exports<'@material-ui/core/esm/utils'>; -} -declare module '@material-ui/core/esm/utils/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/utils'>; -} -declare module '@material-ui/core/esm/utils/isMuiElement.js' { - declare module.exports: $Exports<'@material-ui/core/esm/utils/isMuiElement'>; -} -declare module '@material-ui/core/esm/utils/ownerDocument.js' { - declare module.exports: $Exports<'@material-ui/core/esm/utils/ownerDocument'>; -} -declare module '@material-ui/core/esm/utils/ownerWindow.js' { - declare module.exports: $Exports<'@material-ui/core/esm/utils/ownerWindow'>; -} -declare module '@material-ui/core/esm/utils/requirePropFactory.js' { - declare module.exports: $Exports<'@material-ui/core/esm/utils/requirePropFactory'>; -} -declare module '@material-ui/core/esm/utils/scrollLeft.js' { - declare module.exports: $Exports<'@material-ui/core/esm/utils/scrollLeft'>; -} -declare module '@material-ui/core/esm/utils/setRef.js' { - declare module.exports: $Exports<'@material-ui/core/esm/utils/setRef'>; -} -declare module '@material-ui/core/esm/utils/unstable_useId.js' { - declare module.exports: $Exports<'@material-ui/core/esm/utils/unstable_useId'>; -} -declare module '@material-ui/core/esm/utils/unsupportedProp.js' { - declare module.exports: $Exports<'@material-ui/core/esm/utils/unsupportedProp'>; -} -declare module '@material-ui/core/esm/utils/useControlled.js' { - declare module.exports: $Exports<'@material-ui/core/esm/utils/useControlled'>; -} -declare module '@material-ui/core/esm/utils/useEventCallback.js' { - declare module.exports: $Exports<'@material-ui/core/esm/utils/useEventCallback'>; -} -declare module '@material-ui/core/esm/utils/useForkRef.js' { - declare module.exports: $Exports<'@material-ui/core/esm/utils/useForkRef'>; -} -declare module '@material-ui/core/esm/utils/useIsFocusVisible.js' { - declare module.exports: $Exports<'@material-ui/core/esm/utils/useIsFocusVisible'>; -} -declare module '@material-ui/core/esm/withMobileDialog/index' { - declare module.exports: $Exports<'@material-ui/core/esm/withMobileDialog'>; -} -declare module '@material-ui/core/esm/withMobileDialog/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/withMobileDialog'>; -} -declare module '@material-ui/core/esm/withMobileDialog/withMobileDialog.js' { - declare module.exports: $Exports<'@material-ui/core/esm/withMobileDialog/withMobileDialog'>; -} -declare module '@material-ui/core/esm/withWidth/index' { - declare module.exports: $Exports<'@material-ui/core/esm/withWidth'>; -} -declare module '@material-ui/core/esm/withWidth/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/withWidth'>; -} -declare module '@material-ui/core/esm/withWidth/withWidth.js' { - declare module.exports: $Exports<'@material-ui/core/esm/withWidth/withWidth'>; -} -declare module '@material-ui/core/esm/Zoom/index' { - declare module.exports: $Exports<'@material-ui/core/esm/Zoom'>; -} -declare module '@material-ui/core/esm/Zoom/index.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Zoom'>; -} -declare module '@material-ui/core/esm/Zoom/Zoom.js' { - declare module.exports: $Exports<'@material-ui/core/esm/Zoom/Zoom'>; -} -declare module '@material-ui/core/ExpansionPanel/ExpansionPanel.js' { - declare module.exports: $Exports<'@material-ui/core/ExpansionPanel/ExpansionPanel'>; -} -declare module '@material-ui/core/ExpansionPanel/ExpansionPanelContext.js' { - declare module.exports: $Exports<'@material-ui/core/ExpansionPanel/ExpansionPanelContext'>; -} -declare module '@material-ui/core/ExpansionPanel/index' { - declare module.exports: $Exports<'@material-ui/core/ExpansionPanel'>; -} -declare module '@material-ui/core/ExpansionPanel/index.js' { - declare module.exports: $Exports<'@material-ui/core/ExpansionPanel'>; -} -declare module '@material-ui/core/ExpansionPanelActions/ExpansionPanelActions.js' { - declare module.exports: $Exports<'@material-ui/core/ExpansionPanelActions/ExpansionPanelActions'>; -} -declare module '@material-ui/core/ExpansionPanelActions/index' { - declare module.exports: $Exports<'@material-ui/core/ExpansionPanelActions'>; -} -declare module '@material-ui/core/ExpansionPanelActions/index.js' { - declare module.exports: $Exports<'@material-ui/core/ExpansionPanelActions'>; -} -declare module '@material-ui/core/ExpansionPanelDetails/ExpansionPanelDetails.js' { - declare module.exports: $Exports<'@material-ui/core/ExpansionPanelDetails/ExpansionPanelDetails'>; -} -declare module '@material-ui/core/ExpansionPanelDetails/index' { - declare module.exports: $Exports<'@material-ui/core/ExpansionPanelDetails'>; -} -declare module '@material-ui/core/ExpansionPanelDetails/index.js' { - declare module.exports: $Exports<'@material-ui/core/ExpansionPanelDetails'>; -} -declare module '@material-ui/core/ExpansionPanelSummary/ExpansionPanelSummary.js' { - declare module.exports: $Exports<'@material-ui/core/ExpansionPanelSummary/ExpansionPanelSummary'>; -} -declare module '@material-ui/core/ExpansionPanelSummary/index' { - declare module.exports: $Exports<'@material-ui/core/ExpansionPanelSummary'>; -} -declare module '@material-ui/core/ExpansionPanelSummary/index.js' { - declare module.exports: $Exports<'@material-ui/core/ExpansionPanelSummary'>; -} -declare module '@material-ui/core/Fab/Fab.js' { - declare module.exports: $Exports<'@material-ui/core/Fab/Fab'>; -} -declare module '@material-ui/core/Fab/index' { - declare module.exports: $Exports<'@material-ui/core/Fab'>; -} -declare module '@material-ui/core/Fab/index.js' { - declare module.exports: $Exports<'@material-ui/core/Fab'>; -} -declare module '@material-ui/core/Fade/Fade.js' { - declare module.exports: $Exports<'@material-ui/core/Fade/Fade'>; -} -declare module '@material-ui/core/Fade/index' { - declare module.exports: $Exports<'@material-ui/core/Fade'>; -} -declare module '@material-ui/core/Fade/index.js' { - declare module.exports: $Exports<'@material-ui/core/Fade'>; -} -declare module '@material-ui/core/FilledInput/FilledInput.js' { - declare module.exports: $Exports<'@material-ui/core/FilledInput/FilledInput'>; -} -declare module '@material-ui/core/FilledInput/index' { - declare module.exports: $Exports<'@material-ui/core/FilledInput'>; -} -declare module '@material-ui/core/FilledInput/index.js' { - declare module.exports: $Exports<'@material-ui/core/FilledInput'>; -} -declare module '@material-ui/core/FormControl/FormControl.js' { - declare module.exports: $Exports<'@material-ui/core/FormControl/FormControl'>; -} -declare module '@material-ui/core/FormControl/FormControlContext.js' { - declare module.exports: $Exports<'@material-ui/core/FormControl/FormControlContext'>; -} -declare module '@material-ui/core/FormControl/formControlState.js' { - declare module.exports: $Exports<'@material-ui/core/FormControl/formControlState'>; -} -declare module '@material-ui/core/FormControl/index' { - declare module.exports: $Exports<'@material-ui/core/FormControl'>; -} -declare module '@material-ui/core/FormControl/index.js' { - declare module.exports: $Exports<'@material-ui/core/FormControl'>; -} -declare module '@material-ui/core/FormControl/useFormControl.js' { - declare module.exports: $Exports<'@material-ui/core/FormControl/useFormControl'>; -} -declare module '@material-ui/core/FormControlLabel/FormControlLabel.js' { - declare module.exports: $Exports<'@material-ui/core/FormControlLabel/FormControlLabel'>; -} -declare module '@material-ui/core/FormControlLabel/index' { - declare module.exports: $Exports<'@material-ui/core/FormControlLabel'>; -} -declare module '@material-ui/core/FormControlLabel/index.js' { - declare module.exports: $Exports<'@material-ui/core/FormControlLabel'>; -} -declare module '@material-ui/core/FormGroup/FormGroup.js' { - declare module.exports: $Exports<'@material-ui/core/FormGroup/FormGroup'>; -} -declare module '@material-ui/core/FormGroup/index' { - declare module.exports: $Exports<'@material-ui/core/FormGroup'>; -} -declare module '@material-ui/core/FormGroup/index.js' { - declare module.exports: $Exports<'@material-ui/core/FormGroup'>; -} -declare module '@material-ui/core/FormHelperText/FormHelperText.js' { - declare module.exports: $Exports<'@material-ui/core/FormHelperText/FormHelperText'>; -} -declare module '@material-ui/core/FormHelperText/index' { - declare module.exports: $Exports<'@material-ui/core/FormHelperText'>; -} -declare module '@material-ui/core/FormHelperText/index.js' { - declare module.exports: $Exports<'@material-ui/core/FormHelperText'>; -} -declare module '@material-ui/core/FormLabel/FormLabel.js' { - declare module.exports: $Exports<'@material-ui/core/FormLabel/FormLabel'>; -} -declare module '@material-ui/core/FormLabel/index' { - declare module.exports: $Exports<'@material-ui/core/FormLabel'>; -} -declare module '@material-ui/core/FormLabel/index.js' { - declare module.exports: $Exports<'@material-ui/core/FormLabel'>; -} -declare module '@material-ui/core/Grid/Grid.js' { - declare module.exports: $Exports<'@material-ui/core/Grid/Grid'>; -} -declare module '@material-ui/core/Grid/index' { - declare module.exports: $Exports<'@material-ui/core/Grid'>; -} -declare module '@material-ui/core/Grid/index.js' { - declare module.exports: $Exports<'@material-ui/core/Grid'>; -} -declare module '@material-ui/core/GridList/GridList.js' { - declare module.exports: $Exports<'@material-ui/core/GridList/GridList'>; -} -declare module '@material-ui/core/GridList/index' { - declare module.exports: $Exports<'@material-ui/core/GridList'>; -} -declare module '@material-ui/core/GridList/index.js' { - declare module.exports: $Exports<'@material-ui/core/GridList'>; -} -declare module '@material-ui/core/GridListTile/GridListTile.js' { - declare module.exports: $Exports<'@material-ui/core/GridListTile/GridListTile'>; -} -declare module '@material-ui/core/GridListTile/index' { - declare module.exports: $Exports<'@material-ui/core/GridListTile'>; -} -declare module '@material-ui/core/GridListTile/index.js' { - declare module.exports: $Exports<'@material-ui/core/GridListTile'>; -} -declare module '@material-ui/core/GridListTileBar/GridListTileBar.js' { - declare module.exports: $Exports<'@material-ui/core/GridListTileBar/GridListTileBar'>; -} -declare module '@material-ui/core/GridListTileBar/index' { - declare module.exports: $Exports<'@material-ui/core/GridListTileBar'>; -} -declare module '@material-ui/core/GridListTileBar/index.js' { - declare module.exports: $Exports<'@material-ui/core/GridListTileBar'>; -} -declare module '@material-ui/core/Grow/Grow.js' { - declare module.exports: $Exports<'@material-ui/core/Grow/Grow'>; -} -declare module '@material-ui/core/Grow/index' { - declare module.exports: $Exports<'@material-ui/core/Grow'>; -} -declare module '@material-ui/core/Grow/index.js' { - declare module.exports: $Exports<'@material-ui/core/Grow'>; -} -declare module '@material-ui/core/Hidden/Hidden.js' { - declare module.exports: $Exports<'@material-ui/core/Hidden/Hidden'>; -} -declare module '@material-ui/core/Hidden/HiddenCss.js' { - declare module.exports: $Exports<'@material-ui/core/Hidden/HiddenCss'>; -} -declare module '@material-ui/core/Hidden/HiddenJs.js' { - declare module.exports: $Exports<'@material-ui/core/Hidden/HiddenJs'>; -} -declare module '@material-ui/core/Hidden/index' { - declare module.exports: $Exports<'@material-ui/core/Hidden'>; -} -declare module '@material-ui/core/Hidden/index.js' { - declare module.exports: $Exports<'@material-ui/core/Hidden'>; -} -declare module '@material-ui/core/Icon/Icon.js' { - declare module.exports: $Exports<'@material-ui/core/Icon/Icon'>; -} -declare module '@material-ui/core/Icon/index' { - declare module.exports: $Exports<'@material-ui/core/Icon'>; -} -declare module '@material-ui/core/Icon/index.js' { - declare module.exports: $Exports<'@material-ui/core/Icon'>; -} -declare module '@material-ui/core/IconButton/IconButton.js' { - declare module.exports: $Exports<'@material-ui/core/IconButton/IconButton'>; -} -declare module '@material-ui/core/IconButton/index' { - declare module.exports: $Exports<'@material-ui/core/IconButton'>; -} -declare module '@material-ui/core/IconButton/index.js' { - declare module.exports: $Exports<'@material-ui/core/IconButton'>; -} -declare module '@material-ui/core/index' { - declare module.exports: $Exports<'@material-ui/core'>; -} -declare module '@material-ui/core/index.js' { - declare module.exports: $Exports<'@material-ui/core'>; -} -declare module '@material-ui/core/Input/index' { - declare module.exports: $Exports<'@material-ui/core/Input'>; -} -declare module '@material-ui/core/Input/index.js' { - declare module.exports: $Exports<'@material-ui/core/Input'>; -} -declare module '@material-ui/core/Input/Input.js' { - declare module.exports: $Exports<'@material-ui/core/Input/Input'>; -} -declare module '@material-ui/core/InputAdornment/index' { - declare module.exports: $Exports<'@material-ui/core/InputAdornment'>; -} -declare module '@material-ui/core/InputAdornment/index.js' { - declare module.exports: $Exports<'@material-ui/core/InputAdornment'>; -} -declare module '@material-ui/core/InputAdornment/InputAdornment.js' { - declare module.exports: $Exports<'@material-ui/core/InputAdornment/InputAdornment'>; -} -declare module '@material-ui/core/InputBase/index' { - declare module.exports: $Exports<'@material-ui/core/InputBase'>; -} -declare module '@material-ui/core/InputBase/index.js' { - declare module.exports: $Exports<'@material-ui/core/InputBase'>; -} -declare module '@material-ui/core/InputBase/InputBase.js' { - declare module.exports: $Exports<'@material-ui/core/InputBase/InputBase'>; -} -declare module '@material-ui/core/InputBase/utils.js' { - declare module.exports: $Exports<'@material-ui/core/InputBase/utils'>; -} -declare module '@material-ui/core/InputLabel/index' { - declare module.exports: $Exports<'@material-ui/core/InputLabel'>; -} -declare module '@material-ui/core/InputLabel/index.js' { - declare module.exports: $Exports<'@material-ui/core/InputLabel'>; -} -declare module '@material-ui/core/InputLabel/InputLabel.js' { - declare module.exports: $Exports<'@material-ui/core/InputLabel/InputLabel'>; -} -declare module '@material-ui/core/internal/animate.js' { - declare module.exports: $Exports<'@material-ui/core/internal/animate'>; -} -declare module '@material-ui/core/internal/svg-icons/ArrowDownward.js' { - declare module.exports: $Exports<'@material-ui/core/internal/svg-icons/ArrowDownward'>; -} -declare module '@material-ui/core/internal/svg-icons/ArrowDropDown.js' { - declare module.exports: $Exports<'@material-ui/core/internal/svg-icons/ArrowDropDown'>; -} -declare module '@material-ui/core/internal/svg-icons/Cancel.js' { - declare module.exports: $Exports<'@material-ui/core/internal/svg-icons/Cancel'>; -} -declare module '@material-ui/core/internal/svg-icons/CheckBox.js' { - declare module.exports: $Exports<'@material-ui/core/internal/svg-icons/CheckBox'>; -} -declare module '@material-ui/core/internal/svg-icons/CheckBoxOutlineBlank.js' { - declare module.exports: $Exports<'@material-ui/core/internal/svg-icons/CheckBoxOutlineBlank'>; -} -declare module '@material-ui/core/internal/svg-icons/CheckCircle.js' { - declare module.exports: $Exports<'@material-ui/core/internal/svg-icons/CheckCircle'>; -} -declare module '@material-ui/core/internal/svg-icons/Close.js' { - declare module.exports: $Exports<'@material-ui/core/internal/svg-icons/Close'>; -} -declare module '@material-ui/core/internal/svg-icons/IndeterminateCheckBox.js' { - declare module.exports: $Exports<'@material-ui/core/internal/svg-icons/IndeterminateCheckBox'>; -} -declare module '@material-ui/core/internal/svg-icons/KeyboardArrowLeft.js' { - declare module.exports: $Exports<'@material-ui/core/internal/svg-icons/KeyboardArrowLeft'>; -} -declare module '@material-ui/core/internal/svg-icons/KeyboardArrowRight.js' { - declare module.exports: $Exports<'@material-ui/core/internal/svg-icons/KeyboardArrowRight'>; -} -declare module '@material-ui/core/internal/svg-icons/MoreHoriz.js' { - declare module.exports: $Exports<'@material-ui/core/internal/svg-icons/MoreHoriz'>; -} -declare module '@material-ui/core/internal/svg-icons/Person.js' { - declare module.exports: $Exports<'@material-ui/core/internal/svg-icons/Person'>; -} -declare module '@material-ui/core/internal/svg-icons/RadioButtonChecked.js' { - declare module.exports: $Exports<'@material-ui/core/internal/svg-icons/RadioButtonChecked'>; -} -declare module '@material-ui/core/internal/svg-icons/RadioButtonUnchecked.js' { - declare module.exports: $Exports<'@material-ui/core/internal/svg-icons/RadioButtonUnchecked'>; -} -declare module '@material-ui/core/internal/svg-icons/Warning.js' { - declare module.exports: $Exports<'@material-ui/core/internal/svg-icons/Warning'>; -} -declare module '@material-ui/core/internal/SwitchBase.js' { - declare module.exports: $Exports<'@material-ui/core/internal/SwitchBase'>; -} -declare module '@material-ui/core/LinearProgress/index' { - declare module.exports: $Exports<'@material-ui/core/LinearProgress'>; -} -declare module '@material-ui/core/LinearProgress/index.js' { - declare module.exports: $Exports<'@material-ui/core/LinearProgress'>; -} -declare module '@material-ui/core/LinearProgress/LinearProgress.js' { - declare module.exports: $Exports<'@material-ui/core/LinearProgress/LinearProgress'>; -} -declare module '@material-ui/core/Link/index' { - declare module.exports: $Exports<'@material-ui/core/Link'>; -} -declare module '@material-ui/core/Link/index.js' { - declare module.exports: $Exports<'@material-ui/core/Link'>; -} -declare module '@material-ui/core/Link/Link.js' { - declare module.exports: $Exports<'@material-ui/core/Link/Link'>; -} -declare module '@material-ui/core/List/index' { - declare module.exports: $Exports<'@material-ui/core/List'>; -} -declare module '@material-ui/core/List/index.js' { - declare module.exports: $Exports<'@material-ui/core/List'>; -} -declare module '@material-ui/core/List/List.js' { - declare module.exports: $Exports<'@material-ui/core/List/List'>; -} -declare module '@material-ui/core/List/ListContext.js' { - declare module.exports: $Exports<'@material-ui/core/List/ListContext'>; -} -declare module '@material-ui/core/ListItem/index' { - declare module.exports: $Exports<'@material-ui/core/ListItem'>; -} -declare module '@material-ui/core/ListItem/index.js' { - declare module.exports: $Exports<'@material-ui/core/ListItem'>; -} -declare module '@material-ui/core/ListItem/ListItem.js' { - declare module.exports: $Exports<'@material-ui/core/ListItem/ListItem'>; -} -declare module '@material-ui/core/ListItemAvatar/index' { - declare module.exports: $Exports<'@material-ui/core/ListItemAvatar'>; -} -declare module '@material-ui/core/ListItemAvatar/index.js' { - declare module.exports: $Exports<'@material-ui/core/ListItemAvatar'>; -} -declare module '@material-ui/core/ListItemAvatar/ListItemAvatar.js' { - declare module.exports: $Exports<'@material-ui/core/ListItemAvatar/ListItemAvatar'>; -} -declare module '@material-ui/core/ListItemIcon/index' { - declare module.exports: $Exports<'@material-ui/core/ListItemIcon'>; -} -declare module '@material-ui/core/ListItemIcon/index.js' { - declare module.exports: $Exports<'@material-ui/core/ListItemIcon'>; -} -declare module '@material-ui/core/ListItemIcon/ListItemIcon.js' { - declare module.exports: $Exports<'@material-ui/core/ListItemIcon/ListItemIcon'>; -} -declare module '@material-ui/core/ListItemSecondaryAction/index' { - declare module.exports: $Exports<'@material-ui/core/ListItemSecondaryAction'>; -} -declare module '@material-ui/core/ListItemSecondaryAction/index.js' { - declare module.exports: $Exports<'@material-ui/core/ListItemSecondaryAction'>; -} -declare module '@material-ui/core/ListItemSecondaryAction/ListItemSecondaryAction.js' { - declare module.exports: $Exports<'@material-ui/core/ListItemSecondaryAction/ListItemSecondaryAction'>; -} -declare module '@material-ui/core/ListItemText/index' { - declare module.exports: $Exports<'@material-ui/core/ListItemText'>; -} -declare module '@material-ui/core/ListItemText/index.js' { - declare module.exports: $Exports<'@material-ui/core/ListItemText'>; -} -declare module '@material-ui/core/ListItemText/ListItemText.js' { - declare module.exports: $Exports<'@material-ui/core/ListItemText/ListItemText'>; -} -declare module '@material-ui/core/ListSubheader/index' { - declare module.exports: $Exports<'@material-ui/core/ListSubheader'>; -} -declare module '@material-ui/core/ListSubheader/index.js' { - declare module.exports: $Exports<'@material-ui/core/ListSubheader'>; -} -declare module '@material-ui/core/ListSubheader/ListSubheader.js' { - declare module.exports: $Exports<'@material-ui/core/ListSubheader/ListSubheader'>; -} -declare module '@material-ui/core/locale/index' { - declare module.exports: $Exports<'@material-ui/core/locale'>; -} -declare module '@material-ui/core/locale/index.js' { - declare module.exports: $Exports<'@material-ui/core/locale'>; -} -declare module '@material-ui/core/Menu/index' { - declare module.exports: $Exports<'@material-ui/core/Menu'>; -} -declare module '@material-ui/core/Menu/index.js' { - declare module.exports: $Exports<'@material-ui/core/Menu'>; -} -declare module '@material-ui/core/Menu/Menu.js' { - declare module.exports: $Exports<'@material-ui/core/Menu/Menu'>; -} -declare module '@material-ui/core/MenuItem/index' { - declare module.exports: $Exports<'@material-ui/core/MenuItem'>; -} -declare module '@material-ui/core/MenuItem/index.js' { - declare module.exports: $Exports<'@material-ui/core/MenuItem'>; -} -declare module '@material-ui/core/MenuItem/MenuItem.js' { - declare module.exports: $Exports<'@material-ui/core/MenuItem/MenuItem'>; -} -declare module '@material-ui/core/MenuList/index' { - declare module.exports: $Exports<'@material-ui/core/MenuList'>; -} -declare module '@material-ui/core/MenuList/index.js' { - declare module.exports: $Exports<'@material-ui/core/MenuList'>; -} -declare module '@material-ui/core/MenuList/MenuList.js' { - declare module.exports: $Exports<'@material-ui/core/MenuList/MenuList'>; -} -declare module '@material-ui/core/MobileStepper/index' { - declare module.exports: $Exports<'@material-ui/core/MobileStepper'>; -} -declare module '@material-ui/core/MobileStepper/index.js' { - declare module.exports: $Exports<'@material-ui/core/MobileStepper'>; -} -declare module '@material-ui/core/MobileStepper/MobileStepper.js' { - declare module.exports: $Exports<'@material-ui/core/MobileStepper/MobileStepper'>; -} -declare module '@material-ui/core/Modal/index' { - declare module.exports: $Exports<'@material-ui/core/Modal'>; -} -declare module '@material-ui/core/Modal/index.js' { - declare module.exports: $Exports<'@material-ui/core/Modal'>; -} -declare module '@material-ui/core/Modal/Modal.js' { - declare module.exports: $Exports<'@material-ui/core/Modal/Modal'>; -} -declare module '@material-ui/core/Modal/ModalManager.js' { - declare module.exports: $Exports<'@material-ui/core/Modal/ModalManager'>; -} -declare module '@material-ui/core/Modal/SimpleBackdrop.js' { - declare module.exports: $Exports<'@material-ui/core/Modal/SimpleBackdrop'>; -} -declare module '@material-ui/core/NativeSelect/index' { - declare module.exports: $Exports<'@material-ui/core/NativeSelect'>; -} -declare module '@material-ui/core/NativeSelect/index.js' { - declare module.exports: $Exports<'@material-ui/core/NativeSelect'>; -} -declare module '@material-ui/core/NativeSelect/NativeSelect.js' { - declare module.exports: $Exports<'@material-ui/core/NativeSelect/NativeSelect'>; -} -declare module '@material-ui/core/NativeSelect/NativeSelectInput.js' { - declare module.exports: $Exports<'@material-ui/core/NativeSelect/NativeSelectInput'>; -} -declare module '@material-ui/core/NoSsr/index' { - declare module.exports: $Exports<'@material-ui/core/NoSsr'>; -} -declare module '@material-ui/core/NoSsr/index.js' { - declare module.exports: $Exports<'@material-ui/core/NoSsr'>; -} -declare module '@material-ui/core/NoSsr/NoSsr.js' { - declare module.exports: $Exports<'@material-ui/core/NoSsr/NoSsr'>; -} -declare module '@material-ui/core/OutlinedInput/index' { - declare module.exports: $Exports<'@material-ui/core/OutlinedInput'>; -} -declare module '@material-ui/core/OutlinedInput/index.js' { - declare module.exports: $Exports<'@material-ui/core/OutlinedInput'>; -} -declare module '@material-ui/core/OutlinedInput/NotchedOutline.js' { - declare module.exports: $Exports<'@material-ui/core/OutlinedInput/NotchedOutline'>; -} -declare module '@material-ui/core/OutlinedInput/OutlinedInput.js' { - declare module.exports: $Exports<'@material-ui/core/OutlinedInput/OutlinedInput'>; -} -declare module '@material-ui/core/Paper/index' { - declare module.exports: $Exports<'@material-ui/core/Paper'>; -} -declare module '@material-ui/core/Paper/index.js' { - declare module.exports: $Exports<'@material-ui/core/Paper'>; -} -declare module '@material-ui/core/Paper/Paper.js' { - declare module.exports: $Exports<'@material-ui/core/Paper/Paper'>; -} -declare module '@material-ui/core/Popover/index' { - declare module.exports: $Exports<'@material-ui/core/Popover'>; -} -declare module '@material-ui/core/Popover/index.js' { - declare module.exports: $Exports<'@material-ui/core/Popover'>; -} -declare module '@material-ui/core/Popover/Popover.js' { - declare module.exports: $Exports<'@material-ui/core/Popover/Popover'>; -} -declare module '@material-ui/core/Popper/index' { - declare module.exports: $Exports<'@material-ui/core/Popper'>; -} -declare module '@material-ui/core/Popper/index.js' { - declare module.exports: $Exports<'@material-ui/core/Popper'>; -} -declare module '@material-ui/core/Popper/Popper.js' { - declare module.exports: $Exports<'@material-ui/core/Popper/Popper'>; -} -declare module '@material-ui/core/Portal/index' { - declare module.exports: $Exports<'@material-ui/core/Portal'>; -} -declare module '@material-ui/core/Portal/index.js' { - declare module.exports: $Exports<'@material-ui/core/Portal'>; -} -declare module '@material-ui/core/Portal/Portal.js' { - declare module.exports: $Exports<'@material-ui/core/Portal/Portal'>; -} -declare module '@material-ui/core/Radio/index' { - declare module.exports: $Exports<'@material-ui/core/Radio'>; -} -declare module '@material-ui/core/Radio/index.js' { - declare module.exports: $Exports<'@material-ui/core/Radio'>; -} -declare module '@material-ui/core/Radio/Radio.js' { - declare module.exports: $Exports<'@material-ui/core/Radio/Radio'>; -} -declare module '@material-ui/core/Radio/RadioButtonIcon.js' { - declare module.exports: $Exports<'@material-ui/core/Radio/RadioButtonIcon'>; -} -declare module '@material-ui/core/RadioGroup/index' { - declare module.exports: $Exports<'@material-ui/core/RadioGroup'>; -} -declare module '@material-ui/core/RadioGroup/index.js' { - declare module.exports: $Exports<'@material-ui/core/RadioGroup'>; -} -declare module '@material-ui/core/RadioGroup/RadioGroup.js' { - declare module.exports: $Exports<'@material-ui/core/RadioGroup/RadioGroup'>; -} -declare module '@material-ui/core/RadioGroup/RadioGroupContext.js' { - declare module.exports: $Exports<'@material-ui/core/RadioGroup/RadioGroupContext'>; -} -declare module '@material-ui/core/RadioGroup/useRadioGroup.js' { - declare module.exports: $Exports<'@material-ui/core/RadioGroup/useRadioGroup'>; -} -declare module '@material-ui/core/RootRef/index' { - declare module.exports: $Exports<'@material-ui/core/RootRef'>; -} -declare module '@material-ui/core/RootRef/index.js' { - declare module.exports: $Exports<'@material-ui/core/RootRef'>; -} -declare module '@material-ui/core/RootRef/RootRef.js' { - declare module.exports: $Exports<'@material-ui/core/RootRef/RootRef'>; -} -declare module '@material-ui/core/ScopedCssBaseline/index' { - declare module.exports: $Exports<'@material-ui/core/ScopedCssBaseline'>; -} -declare module '@material-ui/core/ScopedCssBaseline/index.js' { - declare module.exports: $Exports<'@material-ui/core/ScopedCssBaseline'>; -} -declare module '@material-ui/core/ScopedCssBaseline/ScopedCssBaseline.js' { - declare module.exports: $Exports<'@material-ui/core/ScopedCssBaseline/ScopedCssBaseline'>; -} -declare module '@material-ui/core/Select/index' { - declare module.exports: $Exports<'@material-ui/core/Select'>; -} -declare module '@material-ui/core/Select/index.js' { - declare module.exports: $Exports<'@material-ui/core/Select'>; -} -declare module '@material-ui/core/Select/Select.js' { - declare module.exports: $Exports<'@material-ui/core/Select/Select'>; -} -declare module '@material-ui/core/Select/SelectInput.js' { - declare module.exports: $Exports<'@material-ui/core/Select/SelectInput'>; -} -declare module '@material-ui/core/Slide/index' { - declare module.exports: $Exports<'@material-ui/core/Slide'>; -} -declare module '@material-ui/core/Slide/index.js' { - declare module.exports: $Exports<'@material-ui/core/Slide'>; -} -declare module '@material-ui/core/Slide/Slide.js' { - declare module.exports: $Exports<'@material-ui/core/Slide/Slide'>; -} -declare module '@material-ui/core/Slider/index' { - declare module.exports: $Exports<'@material-ui/core/Slider'>; -} -declare module '@material-ui/core/Slider/index.js' { - declare module.exports: $Exports<'@material-ui/core/Slider'>; -} -declare module '@material-ui/core/Slider/Slider.js' { - declare module.exports: $Exports<'@material-ui/core/Slider/Slider'>; -} -declare module '@material-ui/core/Slider/ValueLabel.js' { - declare module.exports: $Exports<'@material-ui/core/Slider/ValueLabel'>; -} -declare module '@material-ui/core/Snackbar/index' { - declare module.exports: $Exports<'@material-ui/core/Snackbar'>; -} -declare module '@material-ui/core/Snackbar/index.js' { - declare module.exports: $Exports<'@material-ui/core/Snackbar'>; -} -declare module '@material-ui/core/Snackbar/Snackbar.js' { - declare module.exports: $Exports<'@material-ui/core/Snackbar/Snackbar'>; -} -declare module '@material-ui/core/SnackbarContent/index' { - declare module.exports: $Exports<'@material-ui/core/SnackbarContent'>; -} -declare module '@material-ui/core/SnackbarContent/index.js' { - declare module.exports: $Exports<'@material-ui/core/SnackbarContent'>; -} -declare module '@material-ui/core/SnackbarContent/SnackbarContent.js' { - declare module.exports: $Exports<'@material-ui/core/SnackbarContent/SnackbarContent'>; -} -declare module '@material-ui/core/Step/index' { - declare module.exports: $Exports<'@material-ui/core/Step'>; -} -declare module '@material-ui/core/Step/index.js' { - declare module.exports: $Exports<'@material-ui/core/Step'>; -} -declare module '@material-ui/core/Step/Step.js' { - declare module.exports: $Exports<'@material-ui/core/Step/Step'>; -} -declare module '@material-ui/core/StepButton/index' { - declare module.exports: $Exports<'@material-ui/core/StepButton'>; -} -declare module '@material-ui/core/StepButton/index.js' { - declare module.exports: $Exports<'@material-ui/core/StepButton'>; -} -declare module '@material-ui/core/StepButton/StepButton.js' { - declare module.exports: $Exports<'@material-ui/core/StepButton/StepButton'>; -} -declare module '@material-ui/core/StepConnector/index' { - declare module.exports: $Exports<'@material-ui/core/StepConnector'>; -} -declare module '@material-ui/core/StepConnector/index.js' { - declare module.exports: $Exports<'@material-ui/core/StepConnector'>; -} -declare module '@material-ui/core/StepConnector/StepConnector.js' { - declare module.exports: $Exports<'@material-ui/core/StepConnector/StepConnector'>; -} -declare module '@material-ui/core/StepContent/index' { - declare module.exports: $Exports<'@material-ui/core/StepContent'>; -} -declare module '@material-ui/core/StepContent/index.js' { - declare module.exports: $Exports<'@material-ui/core/StepContent'>; -} -declare module '@material-ui/core/StepContent/StepContent.js' { - declare module.exports: $Exports<'@material-ui/core/StepContent/StepContent'>; -} -declare module '@material-ui/core/StepIcon/index' { - declare module.exports: $Exports<'@material-ui/core/StepIcon'>; -} -declare module '@material-ui/core/StepIcon/index.js' { - declare module.exports: $Exports<'@material-ui/core/StepIcon'>; -} -declare module '@material-ui/core/StepIcon/StepIcon.js' { - declare module.exports: $Exports<'@material-ui/core/StepIcon/StepIcon'>; -} -declare module '@material-ui/core/StepLabel/index' { - declare module.exports: $Exports<'@material-ui/core/StepLabel'>; -} -declare module '@material-ui/core/StepLabel/index.js' { - declare module.exports: $Exports<'@material-ui/core/StepLabel'>; -} -declare module '@material-ui/core/StepLabel/StepLabel.js' { - declare module.exports: $Exports<'@material-ui/core/StepLabel/StepLabel'>; -} -declare module '@material-ui/core/Stepper/index' { - declare module.exports: $Exports<'@material-ui/core/Stepper'>; -} -declare module '@material-ui/core/Stepper/index.js' { - declare module.exports: $Exports<'@material-ui/core/Stepper'>; -} -declare module '@material-ui/core/Stepper/Stepper.js' { - declare module.exports: $Exports<'@material-ui/core/Stepper/Stepper'>; -} -declare module '@material-ui/core/styles/colorManipulator.js' { - declare module.exports: $Exports<'@material-ui/core/styles/colorManipulator'>; -} -declare module '@material-ui/core/styles/createBreakpoints.js' { - declare module.exports: $Exports<'@material-ui/core/styles/createBreakpoints'>; -} -declare module '@material-ui/core/styles/createMixins.js' { - declare module.exports: $Exports<'@material-ui/core/styles/createMixins'>; -} -declare module '@material-ui/core/styles/createMuiStrictModeTheme.js' { - declare module.exports: $Exports<'@material-ui/core/styles/createMuiStrictModeTheme'>; -} -declare module '@material-ui/core/styles/createMuiTheme.js' { - declare module.exports: $Exports<'@material-ui/core/styles/createMuiTheme'>; -} -declare module '@material-ui/core/styles/createPalette.js' { - declare module.exports: $Exports<'@material-ui/core/styles/createPalette'>; -} -declare module '@material-ui/core/styles/createSpacing.js' { - declare module.exports: $Exports<'@material-ui/core/styles/createSpacing'>; -} -declare module '@material-ui/core/styles/createStyles.js' { - declare module.exports: $Exports<'@material-ui/core/styles/createStyles'>; -} -declare module '@material-ui/core/styles/createTypography.js' { - declare module.exports: $Exports<'@material-ui/core/styles/createTypography'>; -} -declare module '@material-ui/core/styles/cssUtils.js' { - declare module.exports: $Exports<'@material-ui/core/styles/cssUtils'>; -} -declare module '@material-ui/core/styles/defaultTheme.js' { - declare module.exports: $Exports<'@material-ui/core/styles/defaultTheme'>; -} -declare module '@material-ui/core/styles/index' { - declare module.exports: $Exports<'@material-ui/core/styles'>; -} -declare module '@material-ui/core/styles/index.js' { - declare module.exports: $Exports<'@material-ui/core/styles'>; -} -declare module '@material-ui/core/styles/makeStyles.js' { - declare module.exports: $Exports<'@material-ui/core/styles/makeStyles'>; -} -declare module '@material-ui/core/styles/MuiThemeProvider.js' { - declare module.exports: $Exports<'@material-ui/core/styles/MuiThemeProvider'>; -} -declare module '@material-ui/core/styles/responsiveFontSizes.js' { - declare module.exports: $Exports<'@material-ui/core/styles/responsiveFontSizes'>; -} -declare module '@material-ui/core/styles/shadows.js' { - declare module.exports: $Exports<'@material-ui/core/styles/shadows'>; -} -declare module '@material-ui/core/styles/shape.js' { - declare module.exports: $Exports<'@material-ui/core/styles/shape'>; -} -declare module '@material-ui/core/styles/styled.js' { - declare module.exports: $Exports<'@material-ui/core/styles/styled'>; -} -declare module '@material-ui/core/styles/transitions.js' { - declare module.exports: $Exports<'@material-ui/core/styles/transitions'>; -} -declare module '@material-ui/core/styles/useTheme.js' { - declare module.exports: $Exports<'@material-ui/core/styles/useTheme'>; -} -declare module '@material-ui/core/styles/withStyles.js' { - declare module.exports: $Exports<'@material-ui/core/styles/withStyles'>; -} -declare module '@material-ui/core/styles/withTheme.js' { - declare module.exports: $Exports<'@material-ui/core/styles/withTheme'>; -} -declare module '@material-ui/core/styles/zIndex.js' { - declare module.exports: $Exports<'@material-ui/core/styles/zIndex'>; -} -declare module '@material-ui/core/SvgIcon/index' { - declare module.exports: $Exports<'@material-ui/core/SvgIcon'>; -} -declare module '@material-ui/core/SvgIcon/index.js' { - declare module.exports: $Exports<'@material-ui/core/SvgIcon'>; -} -declare module '@material-ui/core/SvgIcon/SvgIcon.js' { - declare module.exports: $Exports<'@material-ui/core/SvgIcon/SvgIcon'>; -} -declare module '@material-ui/core/SwipeableDrawer/index' { - declare module.exports: $Exports<'@material-ui/core/SwipeableDrawer'>; -} -declare module '@material-ui/core/SwipeableDrawer/index.js' { - declare module.exports: $Exports<'@material-ui/core/SwipeableDrawer'>; -} -declare module '@material-ui/core/SwipeableDrawer/SwipeableDrawer.js' { - declare module.exports: $Exports<'@material-ui/core/SwipeableDrawer/SwipeableDrawer'>; -} -declare module '@material-ui/core/SwipeableDrawer/SwipeArea.js' { - declare module.exports: $Exports<'@material-ui/core/SwipeableDrawer/SwipeArea'>; -} -declare module '@material-ui/core/Switch/index' { - declare module.exports: $Exports<'@material-ui/core/Switch'>; -} -declare module '@material-ui/core/Switch/index.js' { - declare module.exports: $Exports<'@material-ui/core/Switch'>; -} -declare module '@material-ui/core/Switch/Switch.js' { - declare module.exports: $Exports<'@material-ui/core/Switch/Switch'>; -} -declare module '@material-ui/core/Tab/index' { - declare module.exports: $Exports<'@material-ui/core/Tab'>; -} -declare module '@material-ui/core/Tab/index.js' { - declare module.exports: $Exports<'@material-ui/core/Tab'>; -} -declare module '@material-ui/core/Tab/Tab.js' { - declare module.exports: $Exports<'@material-ui/core/Tab/Tab'>; -} -declare module '@material-ui/core/Table/index' { - declare module.exports: $Exports<'@material-ui/core/Table'>; -} -declare module '@material-ui/core/Table/index.js' { - declare module.exports: $Exports<'@material-ui/core/Table'>; -} -declare module '@material-ui/core/Table/Table.js' { - declare module.exports: $Exports<'@material-ui/core/Table/Table'>; -} -declare module '@material-ui/core/Table/TableContext.js' { - declare module.exports: $Exports<'@material-ui/core/Table/TableContext'>; -} -declare module '@material-ui/core/Table/Tablelvl2Context.js' { - declare module.exports: $Exports<'@material-ui/core/Table/Tablelvl2Context'>; -} -declare module '@material-ui/core/TableBody/index' { - declare module.exports: $Exports<'@material-ui/core/TableBody'>; -} -declare module '@material-ui/core/TableBody/index.js' { - declare module.exports: $Exports<'@material-ui/core/TableBody'>; -} -declare module '@material-ui/core/TableBody/TableBody.js' { - declare module.exports: $Exports<'@material-ui/core/TableBody/TableBody'>; -} -declare module '@material-ui/core/TableCell/index' { - declare module.exports: $Exports<'@material-ui/core/TableCell'>; -} -declare module '@material-ui/core/TableCell/index.js' { - declare module.exports: $Exports<'@material-ui/core/TableCell'>; -} -declare module '@material-ui/core/TableCell/TableCell.js' { - declare module.exports: $Exports<'@material-ui/core/TableCell/TableCell'>; -} -declare module '@material-ui/core/TableContainer/index' { - declare module.exports: $Exports<'@material-ui/core/TableContainer'>; -} -declare module '@material-ui/core/TableContainer/index.js' { - declare module.exports: $Exports<'@material-ui/core/TableContainer'>; -} -declare module '@material-ui/core/TableContainer/TableContainer.js' { - declare module.exports: $Exports<'@material-ui/core/TableContainer/TableContainer'>; -} -declare module '@material-ui/core/TableFooter/index' { - declare module.exports: $Exports<'@material-ui/core/TableFooter'>; -} -declare module '@material-ui/core/TableFooter/index.js' { - declare module.exports: $Exports<'@material-ui/core/TableFooter'>; -} -declare module '@material-ui/core/TableFooter/TableFooter.js' { - declare module.exports: $Exports<'@material-ui/core/TableFooter/TableFooter'>; -} -declare module '@material-ui/core/TableHead/index' { - declare module.exports: $Exports<'@material-ui/core/TableHead'>; -} -declare module '@material-ui/core/TableHead/index.js' { - declare module.exports: $Exports<'@material-ui/core/TableHead'>; -} -declare module '@material-ui/core/TableHead/TableHead.js' { - declare module.exports: $Exports<'@material-ui/core/TableHead/TableHead'>; -} -declare module '@material-ui/core/TablePagination/index' { - declare module.exports: $Exports<'@material-ui/core/TablePagination'>; -} -declare module '@material-ui/core/TablePagination/index.js' { - declare module.exports: $Exports<'@material-ui/core/TablePagination'>; -} -declare module '@material-ui/core/TablePagination/TablePagination.js' { - declare module.exports: $Exports<'@material-ui/core/TablePagination/TablePagination'>; -} -declare module '@material-ui/core/TablePagination/TablePaginationActions.js' { - declare module.exports: $Exports<'@material-ui/core/TablePagination/TablePaginationActions'>; -} -declare module '@material-ui/core/TableRow/index' { - declare module.exports: $Exports<'@material-ui/core/TableRow'>; -} -declare module '@material-ui/core/TableRow/index.js' { - declare module.exports: $Exports<'@material-ui/core/TableRow'>; -} -declare module '@material-ui/core/TableRow/TableRow.js' { - declare module.exports: $Exports<'@material-ui/core/TableRow/TableRow'>; -} -declare module '@material-ui/core/TableSortLabel/index' { - declare module.exports: $Exports<'@material-ui/core/TableSortLabel'>; -} -declare module '@material-ui/core/TableSortLabel/index.js' { - declare module.exports: $Exports<'@material-ui/core/TableSortLabel'>; -} -declare module '@material-ui/core/TableSortLabel/TableSortLabel.js' { - declare module.exports: $Exports<'@material-ui/core/TableSortLabel/TableSortLabel'>; -} -declare module '@material-ui/core/Tabs/index' { - declare module.exports: $Exports<'@material-ui/core/Tabs'>; -} -declare module '@material-ui/core/Tabs/index.js' { - declare module.exports: $Exports<'@material-ui/core/Tabs'>; -} -declare module '@material-ui/core/Tabs/ScrollbarSize.js' { - declare module.exports: $Exports<'@material-ui/core/Tabs/ScrollbarSize'>; -} -declare module '@material-ui/core/Tabs/TabIndicator.js' { - declare module.exports: $Exports<'@material-ui/core/Tabs/TabIndicator'>; -} -declare module '@material-ui/core/Tabs/Tabs.js' { - declare module.exports: $Exports<'@material-ui/core/Tabs/Tabs'>; -} -declare module '@material-ui/core/TabScrollButton/index' { - declare module.exports: $Exports<'@material-ui/core/TabScrollButton'>; -} -declare module '@material-ui/core/TabScrollButton/index.js' { - declare module.exports: $Exports<'@material-ui/core/TabScrollButton'>; -} -declare module '@material-ui/core/TabScrollButton/TabScrollButton.js' { - declare module.exports: $Exports<'@material-ui/core/TabScrollButton/TabScrollButton'>; -} -declare module '@material-ui/core/test-utils/createMount.js' { - declare module.exports: $Exports<'@material-ui/core/test-utils/createMount'>; -} -declare module '@material-ui/core/test-utils/createRender.js' { - declare module.exports: $Exports<'@material-ui/core/test-utils/createRender'>; -} -declare module '@material-ui/core/test-utils/createShallow.js' { - declare module.exports: $Exports<'@material-ui/core/test-utils/createShallow'>; -} -declare module '@material-ui/core/test-utils/describeConformance.js' { - declare module.exports: $Exports<'@material-ui/core/test-utils/describeConformance'>; -} -declare module '@material-ui/core/test-utils/findOutermostIntrinsic.js' { - declare module.exports: $Exports<'@material-ui/core/test-utils/findOutermostIntrinsic'>; -} -declare module '@material-ui/core/test-utils/getClasses.js' { - declare module.exports: $Exports<'@material-ui/core/test-utils/getClasses'>; -} -declare module '@material-ui/core/test-utils/index' { - declare module.exports: $Exports<'@material-ui/core/test-utils'>; -} -declare module '@material-ui/core/test-utils/index.js' { - declare module.exports: $Exports<'@material-ui/core/test-utils'>; -} -declare module '@material-ui/core/test-utils/RenderMode.js' { - declare module.exports: $Exports<'@material-ui/core/test-utils/RenderMode'>; -} -declare module '@material-ui/core/test-utils/testRef.js' { - declare module.exports: $Exports<'@material-ui/core/test-utils/testRef'>; -} -declare module '@material-ui/core/test-utils/until.js' { - declare module.exports: $Exports<'@material-ui/core/test-utils/until'>; -} -declare module '@material-ui/core/test-utils/unwrap.js' { - declare module.exports: $Exports<'@material-ui/core/test-utils/unwrap'>; -} -declare module '@material-ui/core/TextareaAutosize/index' { - declare module.exports: $Exports<'@material-ui/core/TextareaAutosize'>; -} -declare module '@material-ui/core/TextareaAutosize/index.js' { - declare module.exports: $Exports<'@material-ui/core/TextareaAutosize'>; -} -declare module '@material-ui/core/TextareaAutosize/TextareaAutosize.js' { - declare module.exports: $Exports<'@material-ui/core/TextareaAutosize/TextareaAutosize'>; -} -declare module '@material-ui/core/TextField/index' { - declare module.exports: $Exports<'@material-ui/core/TextField'>; -} -declare module '@material-ui/core/TextField/index.js' { - declare module.exports: $Exports<'@material-ui/core/TextField'>; -} -declare module '@material-ui/core/TextField/TextField.js' { - declare module.exports: $Exports<'@material-ui/core/TextField/TextField'>; -} -declare module '@material-ui/core/Toolbar/index' { - declare module.exports: $Exports<'@material-ui/core/Toolbar'>; -} -declare module '@material-ui/core/Toolbar/index.js' { - declare module.exports: $Exports<'@material-ui/core/Toolbar'>; -} -declare module '@material-ui/core/Toolbar/Toolbar.js' { - declare module.exports: $Exports<'@material-ui/core/Toolbar/Toolbar'>; -} -declare module '@material-ui/core/Tooltip/index' { - declare module.exports: $Exports<'@material-ui/core/Tooltip'>; -} -declare module '@material-ui/core/Tooltip/index.js' { - declare module.exports: $Exports<'@material-ui/core/Tooltip'>; -} -declare module '@material-ui/core/Tooltip/Tooltip.js' { - declare module.exports: $Exports<'@material-ui/core/Tooltip/Tooltip'>; -} -declare module '@material-ui/core/transitions/utils.js' { - declare module.exports: $Exports<'@material-ui/core/transitions/utils'>; -} -declare module '@material-ui/core/Typography/index' { - declare module.exports: $Exports<'@material-ui/core/Typography'>; -} -declare module '@material-ui/core/Typography/index.js' { - declare module.exports: $Exports<'@material-ui/core/Typography'>; -} -declare module '@material-ui/core/Typography/Typography.js' { - declare module.exports: $Exports<'@material-ui/core/Typography/Typography'>; -} -declare module '@material-ui/core/umd/material-ui.development.js' { - declare module.exports: $Exports<'@material-ui/core/umd/material-ui.development'>; -} -declare module '@material-ui/core/umd/material-ui.production.min.js' { - declare module.exports: $Exports<'@material-ui/core/umd/material-ui.production.min'>; -} -declare module '@material-ui/core/Unstable_TrapFocus/index' { - declare module.exports: $Exports<'@material-ui/core/Unstable_TrapFocus'>; -} -declare module '@material-ui/core/Unstable_TrapFocus/index.js' { - declare module.exports: $Exports<'@material-ui/core/Unstable_TrapFocus'>; -} -declare module '@material-ui/core/Unstable_TrapFocus/Unstable_TrapFocus.js' { - declare module.exports: $Exports<'@material-ui/core/Unstable_TrapFocus/Unstable_TrapFocus'>; -} -declare module '@material-ui/core/useMediaQuery/index' { - declare module.exports: $Exports<'@material-ui/core/useMediaQuery'>; -} -declare module '@material-ui/core/useMediaQuery/index.js' { - declare module.exports: $Exports<'@material-ui/core/useMediaQuery'>; -} -declare module '@material-ui/core/useMediaQuery/useMediaQuery.js' { - declare module.exports: $Exports<'@material-ui/core/useMediaQuery/useMediaQuery'>; -} -declare module '@material-ui/core/useMediaQuery/useMediaQueryTheme.js' { - declare module.exports: $Exports<'@material-ui/core/useMediaQuery/useMediaQueryTheme'>; -} -declare module '@material-ui/core/useScrollTrigger/index' { - declare module.exports: $Exports<'@material-ui/core/useScrollTrigger'>; -} -declare module '@material-ui/core/useScrollTrigger/index.js' { - declare module.exports: $Exports<'@material-ui/core/useScrollTrigger'>; -} -declare module '@material-ui/core/useScrollTrigger/useScrollTrigger.js' { - declare module.exports: $Exports<'@material-ui/core/useScrollTrigger/useScrollTrigger'>; -} -declare module '@material-ui/core/utils/capitalize.js' { - declare module.exports: $Exports<'@material-ui/core/utils/capitalize'>; -} -declare module '@material-ui/core/utils/createChainedFunction.js' { - declare module.exports: $Exports<'@material-ui/core/utils/createChainedFunction'>; -} -declare module '@material-ui/core/utils/createSvgIcon.js' { - declare module.exports: $Exports<'@material-ui/core/utils/createSvgIcon'>; -} -declare module '@material-ui/core/utils/debounce.js' { - declare module.exports: $Exports<'@material-ui/core/utils/debounce'>; -} -declare module '@material-ui/core/utils/deprecatedPropType.js' { - declare module.exports: $Exports<'@material-ui/core/utils/deprecatedPropType'>; -} -declare module '@material-ui/core/utils/getScrollbarSize.js' { - declare module.exports: $Exports<'@material-ui/core/utils/getScrollbarSize'>; -} -declare module '@material-ui/core/utils/index' { - declare module.exports: $Exports<'@material-ui/core/utils'>; -} -declare module '@material-ui/core/utils/index.js' { - declare module.exports: $Exports<'@material-ui/core/utils'>; -} -declare module '@material-ui/core/utils/isMuiElement.js' { - declare module.exports: $Exports<'@material-ui/core/utils/isMuiElement'>; -} -declare module '@material-ui/core/utils/ownerDocument.js' { - declare module.exports: $Exports<'@material-ui/core/utils/ownerDocument'>; -} -declare module '@material-ui/core/utils/ownerWindow.js' { - declare module.exports: $Exports<'@material-ui/core/utils/ownerWindow'>; -} -declare module '@material-ui/core/utils/requirePropFactory.js' { - declare module.exports: $Exports<'@material-ui/core/utils/requirePropFactory'>; -} -declare module '@material-ui/core/utils/scrollLeft.js' { - declare module.exports: $Exports<'@material-ui/core/utils/scrollLeft'>; -} -declare module '@material-ui/core/utils/setRef.js' { - declare module.exports: $Exports<'@material-ui/core/utils/setRef'>; -} -declare module '@material-ui/core/utils/unstable_useId.js' { - declare module.exports: $Exports<'@material-ui/core/utils/unstable_useId'>; -} -declare module '@material-ui/core/utils/unsupportedProp.js' { - declare module.exports: $Exports<'@material-ui/core/utils/unsupportedProp'>; -} -declare module '@material-ui/core/utils/useControlled.js' { - declare module.exports: $Exports<'@material-ui/core/utils/useControlled'>; -} -declare module '@material-ui/core/utils/useEventCallback.js' { - declare module.exports: $Exports<'@material-ui/core/utils/useEventCallback'>; -} -declare module '@material-ui/core/utils/useForkRef.js' { - declare module.exports: $Exports<'@material-ui/core/utils/useForkRef'>; -} -declare module '@material-ui/core/utils/useIsFocusVisible.js' { - declare module.exports: $Exports<'@material-ui/core/utils/useIsFocusVisible'>; -} -declare module '@material-ui/core/withMobileDialog/index' { - declare module.exports: $Exports<'@material-ui/core/withMobileDialog'>; -} -declare module '@material-ui/core/withMobileDialog/index.js' { - declare module.exports: $Exports<'@material-ui/core/withMobileDialog'>; -} -declare module '@material-ui/core/withMobileDialog/withMobileDialog.js' { - declare module.exports: $Exports<'@material-ui/core/withMobileDialog/withMobileDialog'>; -} -declare module '@material-ui/core/withWidth/index' { - declare module.exports: $Exports<'@material-ui/core/withWidth'>; -} -declare module '@material-ui/core/withWidth/index.js' { - declare module.exports: $Exports<'@material-ui/core/withWidth'>; -} -declare module '@material-ui/core/withWidth/withWidth.js' { - declare module.exports: $Exports<'@material-ui/core/withWidth/withWidth'>; -} -declare module '@material-ui/core/Zoom/index' { - declare module.exports: $Exports<'@material-ui/core/Zoom'>; -} -declare module '@material-ui/core/Zoom/index.js' { - declare module.exports: $Exports<'@material-ui/core/Zoom'>; -} -declare module '@material-ui/core/Zoom/Zoom.js' { - declare module.exports: $Exports<'@material-ui/core/Zoom/Zoom'>; -} diff --git a/flow-typed/npm/@material-ui/icons_v4.x.x.js b/flow-typed/npm/@material-ui/icons_v4.x.x.js deleted file mode 100644 index 06c45536..00000000 --- a/flow-typed/npm/@material-ui/icons_v4.x.x.js +++ /dev/null @@ -1,35153 +0,0 @@ -// flow-typed signature: cfa1aefc9e7f27753c67f625b05ab1ec -// flow-typed version: c6154227d1/@material-ui/icons_v4.x.x/flow_>=v0.104.x - -/* - * Created and maintained: https://github.com/retyui - */ - -/* - * A next module declaration is a copy paste of type from `@material-ui/core` - * I use `@@SvgIcon` name to not cause conflicts with the original type. - * More info: https://github.com/flow-typed/flow-typed/pull/3303#issuecomment-493877563 - */ -declare module '@material-ui/core/@@SvgIcon' { - declare type SVGElementProps = {...}; - - // https://github.com/mui-org/material-ui/blob/4d363ad26a3da350344ef5d374841647adf9e5b0/packages/material-ui/src/index.d.ts#L54 - declare type PropTypes$Color = - | 'inherit' - | 'primary' - | 'secondary' - | 'default'; - declare export type SvgIconProps = SVGElementProps & { - classes?: {| - root?: string, - colorSecondary?: string, - colorAction?: string, - colorDisabled?: string, - colorError?: string, - colorPrimary?: string, - fontSizeInherit?: string, - fontSizeSmall?: string, - fontSizeLarge?: string, - |}, - color?: PropTypes$Color | 'action' | 'disabled' | 'error', - fontSize?: 'inherit' | 'default' | 'small' | 'large', - htmlColor?: string, - shapeRendering?: string, - titleAccess?: string, - viewBox?: string, - className?: string, - style?: {...}, - component?: mixed, - ... - }; - - declare export default React$ComponentType; -} - -declare module '@material-ui/icons/AccessAlarm' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccessAlarmOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccessAlarmRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccessAlarmSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccessAlarms' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccessAlarmsOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccessAlarmsRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccessAlarmsSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccessAlarmsTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccessAlarmTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Accessibility' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccessibilityNew' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccessibilityNewOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccessibilityNewRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccessibilityNewSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccessibilityNewTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccessibilityOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccessibilityRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccessibilitySharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccessibilityTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccessibleForward' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccessibleForwardOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccessibleForwardRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccessibleForwardSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccessibleForwardTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Accessible' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccessibleOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccessibleRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccessibleSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccessibleTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccessTime' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccessTimeOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccessTimeRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccessTimeSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccessTimeTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccountBalance' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccountBalanceOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccountBalanceRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccountBalanceSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccountBalanceTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccountBalanceWallet' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccountBalanceWalletOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccountBalanceWalletRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccountBalanceWalletSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccountBalanceWalletTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccountBox' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccountBoxOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccountBoxRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccountBoxSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccountBoxTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccountCircle' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccountCircleOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccountCircleRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccountCircleSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AccountCircleTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AcUnit' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AcUnitOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AcUnitRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AcUnitSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AcUnitTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Adb' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AdbOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AdbRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AdbSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AdbTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddAlarm' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddAlarmOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddAlarmRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddAlarmSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddAlarmTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddAlert' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddAlertOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddAlertRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddAlertSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddAlertTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddAPhoto' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddAPhotoOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddAPhotoRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddAPhotoSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddAPhotoTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddBox' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddBoxOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddBoxRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddBoxSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddBoxTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddCircle' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddCircleOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddCircleOutline' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddCircleOutlineOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddCircleOutlineRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddCircleOutlineSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddCircleOutlineTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddCircleRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddCircleSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddCircleTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddComment' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddCommentOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddCommentRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddCommentSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddCommentTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Add' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddLocation' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddLocationOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddLocationRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddLocationSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddLocationTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddPhotoAlternate' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddPhotoAlternateOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddPhotoAlternateRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddPhotoAlternateSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddPhotoAlternateTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddShoppingCart' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddShoppingCartOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddShoppingCartRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddShoppingCartSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddShoppingCartTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddToHomeScreen' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddToHomeScreenOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddToHomeScreenRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddToHomeScreenSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddToHomeScreenTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddToPhotos' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddToPhotosOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddToPhotosRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddToPhotosSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddToPhotosTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddToQueue' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddToQueueOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddToQueueRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddToQueueSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddToQueueTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AddTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Adjust' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AdjustOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AdjustRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AdjustSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AdjustTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirlineSeatFlatAngled' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirlineSeatFlatAngledOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirlineSeatFlatAngledRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirlineSeatFlatAngledSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirlineSeatFlatAngledTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirlineSeatFlat' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirlineSeatFlatOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirlineSeatFlatRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirlineSeatFlatSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirlineSeatFlatTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirlineSeatIndividualSuite' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirlineSeatIndividualSuiteOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirlineSeatIndividualSuiteRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirlineSeatIndividualSuiteSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirlineSeatIndividualSuiteTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirlineSeatLegroomExtra' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirlineSeatLegroomExtraOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirlineSeatLegroomExtraRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirlineSeatLegroomExtraSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirlineSeatLegroomExtraTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirlineSeatLegroomNormal' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirlineSeatLegroomNormalOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirlineSeatLegroomNormalRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirlineSeatLegroomNormalSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirlineSeatLegroomNormalTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirlineSeatLegroomReduced' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirlineSeatLegroomReducedOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirlineSeatLegroomReducedRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirlineSeatLegroomReducedSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirlineSeatLegroomReducedTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirlineSeatReclineExtra' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirlineSeatReclineExtraOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirlineSeatReclineExtraRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirlineSeatReclineExtraSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirlineSeatReclineExtraTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirlineSeatReclineNormal' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirlineSeatReclineNormalOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirlineSeatReclineNormalRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirlineSeatReclineNormalSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirlineSeatReclineNormalTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirplanemodeActive' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirplanemodeActiveOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirplanemodeActiveRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirplanemodeActiveSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirplanemodeActiveTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirplanemodeInactive' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirplanemodeInactiveOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirplanemodeInactiveRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirplanemodeInactiveSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirplanemodeInactiveTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Airplay' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirplayOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirplayRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirplaySharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirplayTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirportShuttle' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirportShuttleOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirportShuttleRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirportShuttleSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AirportShuttleTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AlarmAdd' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AlarmAddOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AlarmAddRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AlarmAddSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AlarmAddTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Alarm' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AlarmOff' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AlarmOffOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AlarmOffRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AlarmOffSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AlarmOffTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AlarmOn' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AlarmOnOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AlarmOnRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AlarmOnSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AlarmOnTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AlarmOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AlarmRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AlarmSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AlarmTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Album' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AlbumOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AlbumRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AlbumSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AlbumTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AllInbox' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AllInboxOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AllInboxRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AllInboxSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AllInboxTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AllInclusive' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AllInclusiveOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AllInclusiveRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AllInclusiveSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AllInclusiveTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AllOut' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AllOutOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AllOutRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AllOutSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AllOutTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AlternateEmail' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AlternateEmailOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AlternateEmailRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AlternateEmailSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AlternateEmailTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Android' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AndroidOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AndroidRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AndroidSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AndroidTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Announcement' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AnnouncementOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AnnouncementRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AnnouncementSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AnnouncementTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Apps' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AppsOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AppsRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AppsSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AppsTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Archive' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArchiveOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArchiveRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArchiveSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArchiveTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowBackIos' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowBackIosOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowBackIosRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowBackIosSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowBackIosTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowBack' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowBackOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowBackRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowBackSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowBackTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowDownward' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowDownwardOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowDownwardRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowDownwardSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowDownwardTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowDropDownCircle' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowDropDownCircleOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowDropDownCircleRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowDropDownCircleSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowDropDownCircleTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowDropDown' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowDropDownOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowDropDownRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowDropDownSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowDropDownTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowDropUp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowDropUpOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowDropUpRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowDropUpSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowDropUpTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowForwardIos' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowForwardIosOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowForwardIosRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowForwardIosSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowForwardIosTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowForward' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowForwardOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowForwardRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowForwardSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowForwardTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowLeft' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowLeftOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowLeftRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowLeftSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowLeftTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowRightAlt' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowRightAltOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowRightAltRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowRightAltSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowRightAltTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowRight' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowRightOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowRightRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowRightSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowRightTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowUpward' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowUpwardOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowUpwardRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowUpwardSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArrowUpwardTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArtTrack' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArtTrackOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArtTrackRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArtTrackSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ArtTrackTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AspectRatio' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AspectRatioOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AspectRatioRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AspectRatioSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AspectRatioTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Assessment' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AssessmentOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AssessmentRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AssessmentSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AssessmentTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AssignmentInd' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AssignmentIndOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AssignmentIndRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AssignmentIndSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AssignmentIndTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Assignment' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AssignmentLate' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AssignmentLateOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AssignmentLateRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AssignmentLateSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AssignmentLateTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AssignmentOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AssignmentReturned' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AssignmentReturnedOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AssignmentReturnedRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AssignmentReturnedSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AssignmentReturnedTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AssignmentReturn' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AssignmentReturnOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AssignmentReturnRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AssignmentReturnSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AssignmentReturnTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AssignmentRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AssignmentSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AssignmentTurnedIn' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AssignmentTurnedInOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AssignmentTurnedInRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AssignmentTurnedInSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AssignmentTurnedInTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AssignmentTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Assistant' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AssistantOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AssistantPhoto' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AssistantPhotoOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AssistantPhotoRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AssistantPhotoSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AssistantPhotoTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AssistantRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AssistantSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AssistantTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Atm' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AtmOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AtmRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AtmSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AtmTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AttachFile' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AttachFileOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AttachFileRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AttachFileSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AttachFileTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Attachment' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AttachmentOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AttachmentRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AttachmentSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AttachmentTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AttachMoney' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AttachMoneyOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AttachMoneyRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AttachMoneySharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AttachMoneyTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Audiotrack' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AudiotrackOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AudiotrackRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AudiotrackSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AudiotrackTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Autorenew' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AutorenewOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AutorenewRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AutorenewSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AutorenewTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AvTimer' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AvTimerOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AvTimerRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AvTimerSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/AvTimerTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Backspace' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BackspaceOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BackspaceRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BackspaceSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BackspaceTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Backup' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BackupOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BackupRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BackupSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BackupTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Ballot' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BallotOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BallotRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BallotSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BallotTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BarChart' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BarChartOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BarChartRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BarChartSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BarChartTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Battery20' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Battery20Outlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Battery20Rounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Battery20Sharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Battery20TwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Battery30' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Battery30Outlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Battery30Rounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Battery30Sharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Battery30TwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Battery50' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Battery50Outlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Battery50Rounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Battery50Sharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Battery50TwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Battery60' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Battery60Outlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Battery60Rounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Battery60Sharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Battery60TwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Battery80' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Battery80Outlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Battery80Rounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Battery80Sharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Battery80TwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Battery90' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Battery90Outlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Battery90Rounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Battery90Sharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Battery90TwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryAlert' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryAlertOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryAlertRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryAlertSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryAlertTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryCharging20' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryCharging20Outlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryCharging20Rounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryCharging20Sharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryCharging20TwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryCharging30' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryCharging30Outlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryCharging30Rounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryCharging30Sharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryCharging30TwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryCharging50' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryCharging50Outlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryCharging50Rounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryCharging50Sharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryCharging50TwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryCharging60' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryCharging60Outlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryCharging60Rounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryCharging60Sharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryCharging60TwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryCharging80' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryCharging80Outlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryCharging80Rounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryCharging80Sharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryCharging80TwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryCharging90' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryCharging90Outlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryCharging90Rounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryCharging90Sharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryCharging90TwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryChargingFull' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryChargingFullOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryChargingFullRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryChargingFullSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryChargingFullTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryFull' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryFullOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryFullRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryFullSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryFullTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryStd' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryStdOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryStdRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryStdSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryStdTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryUnknown' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryUnknownOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryUnknownRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryUnknownSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BatteryUnknownTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BeachAccess' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BeachAccessOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BeachAccessRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BeachAccessSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BeachAccessTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Beenhere' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BeenhereOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BeenhereRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BeenhereSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BeenhereTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Block' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BlockOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BlockRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BlockSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BlockTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BluetoothAudio' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BluetoothAudioOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BluetoothAudioRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BluetoothAudioSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BluetoothAudioTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BluetoothConnected' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BluetoothConnectedOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BluetoothConnectedRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BluetoothConnectedSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BluetoothConnectedTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BluetoothDisabled' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BluetoothDisabledOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BluetoothDisabledRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BluetoothDisabledSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BluetoothDisabledTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Bluetooth' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BluetoothOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BluetoothRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BluetoothSearching' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BluetoothSearchingOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BluetoothSearchingRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BluetoothSearchingSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BluetoothSearchingTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BluetoothSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BluetoothTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BlurCircular' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BlurCircularOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BlurCircularRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BlurCircularSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BlurCircularTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BlurLinear' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BlurLinearOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BlurLinearRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BlurLinearSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BlurLinearTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BlurOff' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BlurOffOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BlurOffRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BlurOffSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BlurOffTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BlurOn' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BlurOnOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BlurOnRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BlurOnSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BlurOnTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Book' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BookmarkBorder' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BookmarkBorderOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BookmarkBorderRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BookmarkBorderSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BookmarkBorderTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Bookmark' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BookmarkOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BookmarkRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BookmarkSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Bookmarks' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BookmarksOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BookmarksRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BookmarksSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BookmarksTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BookmarkTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BookOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BookRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BookSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BookTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderAll' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderAllOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderAllRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderAllSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderAllTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderBottom' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderBottomOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderBottomRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderBottomSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderBottomTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderClear' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderClearOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderClearRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderClearSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderClearTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderColor' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderColorOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderColorRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderColorSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderColorTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderHorizontal' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderHorizontalOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderHorizontalRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderHorizontalSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderHorizontalTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderInner' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderInnerOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderInnerRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderInnerSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderInnerTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderLeft' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderLeftOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderLeftRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderLeftSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderLeftTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderOuter' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderOuterOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderOuterRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderOuterSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderOuterTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderRight' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderRightOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderRightRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderRightSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderRightTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderStyle' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderStyleOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderStyleRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderStyleSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderStyleTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderTop' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderTopOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderTopRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderTopSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderTopTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderVertical' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderVerticalOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderVerticalRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderVerticalSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BorderVerticalTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BrandingWatermark' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BrandingWatermarkOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BrandingWatermarkRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BrandingWatermarkSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BrandingWatermarkTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Brightness1' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Brightness1Outlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Brightness1Rounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Brightness1Sharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Brightness1TwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Brightness2' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Brightness2Outlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Brightness2Rounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Brightness2Sharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Brightness2TwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Brightness3' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Brightness3Outlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Brightness3Rounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Brightness3Sharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Brightness3TwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Brightness4' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Brightness4Outlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Brightness4Rounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Brightness4Sharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Brightness4TwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Brightness5' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Brightness5Outlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Brightness5Rounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Brightness5Sharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Brightness5TwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Brightness6' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Brightness6Outlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Brightness6Rounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Brightness6Sharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Brightness6TwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Brightness7' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Brightness7Outlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Brightness7Rounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Brightness7Sharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Brightness7TwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BrightnessAuto' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BrightnessAutoOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BrightnessAutoRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BrightnessAutoSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BrightnessAutoTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BrightnessHigh' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BrightnessHighOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BrightnessHighRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BrightnessHighSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BrightnessHighTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BrightnessLow' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BrightnessLowOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BrightnessLowRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BrightnessLowSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BrightnessLowTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BrightnessMedium' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BrightnessMediumOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BrightnessMediumRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BrightnessMediumSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BrightnessMediumTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BrokenImage' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BrokenImageOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BrokenImageRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BrokenImageSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BrokenImageTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Brush' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BrushOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BrushRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BrushSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BrushTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BubbleChart' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BubbleChartOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BubbleChartRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BubbleChartSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BubbleChartTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BugReport' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BugReportOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BugReportRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BugReportSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BugReportTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Build' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BuildOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BuildRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BuildSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BuildTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BurstMode' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BurstModeOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BurstModeRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BurstModeSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BurstModeTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BusinessCenter' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BusinessCenterOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BusinessCenterRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BusinessCenterSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BusinessCenterTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Business' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BusinessOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BusinessRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BusinessSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/BusinessTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Cached' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CachedOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CachedRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CachedSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CachedTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Cake' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CakeOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CakeRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CakeSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CakeTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CalendarToday' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CalendarTodayOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CalendarTodayRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CalendarTodaySharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CalendarTodayTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CalendarViewDay' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CalendarViewDayOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CalendarViewDayRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CalendarViewDaySharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CalendarViewDayTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CallEnd' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CallEndOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CallEndRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CallEndSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CallEndTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Call' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CallMade' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CallMadeOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CallMadeRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CallMadeSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CallMadeTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CallMerge' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CallMergeOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CallMergeRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CallMergeSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CallMergeTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CallMissed' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CallMissedOutgoing' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CallMissedOutgoingOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CallMissedOutgoingRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CallMissedOutgoingSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CallMissedOutgoingTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CallMissedOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CallMissedRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CallMissedSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CallMissedTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CallOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CallReceived' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CallReceivedOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CallReceivedRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CallReceivedSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CallReceivedTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CallRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CallSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CallSplit' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CallSplitOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CallSplitRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CallSplitSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CallSplitTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CallToAction' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CallToActionOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CallToActionRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CallToActionSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CallToActionTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CallTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CameraAlt' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CameraAltOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CameraAltRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CameraAltSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CameraAltTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CameraEnhance' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CameraEnhanceOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CameraEnhanceRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CameraEnhanceSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CameraEnhanceTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CameraFront' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CameraFrontOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CameraFrontRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CameraFrontSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CameraFrontTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Camera' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CameraOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CameraRear' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CameraRearOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CameraRearRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CameraRearSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CameraRearTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CameraRoll' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CameraRollOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CameraRollRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CameraRollSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CameraRollTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CameraRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CameraSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CameraTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Cancel' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CancelOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CancelPresentation' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CancelPresentationOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CancelPresentationRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CancelPresentationSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CancelPresentationTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CancelRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CancelSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CancelTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CardGiftcard' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CardGiftcardOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CardGiftcardRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CardGiftcardSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CardGiftcardTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CardMembership' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CardMembershipOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CardMembershipRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CardMembershipSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CardMembershipTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CardTravel' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CardTravelOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CardTravelRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CardTravelSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CardTravelTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Casino' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CasinoOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CasinoRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CasinoSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CasinoTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CastConnected' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CastConnectedOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CastConnectedRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CastConnectedSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CastConnectedTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CastForEducation' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CastForEducationOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CastForEducationRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CastForEducationSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CastForEducationTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Cast' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CastOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CastRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CastSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CastTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Category' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CategoryOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CategoryRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CategorySharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CategoryTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CellWifi' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CellWifiOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CellWifiRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CellWifiSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CellWifiTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CenterFocusStrong' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CenterFocusStrongOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CenterFocusStrongRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CenterFocusStrongSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CenterFocusStrongTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CenterFocusWeak' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CenterFocusWeakOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CenterFocusWeakRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CenterFocusWeakSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CenterFocusWeakTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ChangeHistory' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ChangeHistoryOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ChangeHistoryRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ChangeHistorySharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ChangeHistoryTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ChatBubble' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ChatBubbleOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ChatBubbleOutline' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ChatBubbleOutlineOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ChatBubbleOutlineRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ChatBubbleOutlineSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ChatBubbleOutlineTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ChatBubbleRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ChatBubbleSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ChatBubbleTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Chat' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ChatOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ChatRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ChatSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ChatTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CheckBox' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CheckBoxOutlineBlank' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CheckBoxOutlineBlankOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CheckBoxOutlineBlankRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CheckBoxOutlineBlankSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CheckBoxOutlineBlankTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CheckBoxOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CheckBoxRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CheckBoxSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CheckBoxTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CheckCircle' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CheckCircleOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CheckCircleOutline' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CheckCircleOutlineOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CheckCircleOutlineRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CheckCircleOutlineSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CheckCircleOutlineTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CheckCircleRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CheckCircleSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CheckCircleTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Check' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CheckOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CheckRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CheckSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CheckTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ChevronLeft' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ChevronLeftOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ChevronLeftRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ChevronLeftSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ChevronLeftTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ChevronRight' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ChevronRightOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ChevronRightRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ChevronRightSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ChevronRightTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ChildCare' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ChildCareOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ChildCareRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ChildCareSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ChildCareTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ChildFriendly' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ChildFriendlyOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ChildFriendlyRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ChildFriendlySharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ChildFriendlyTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ChromeReaderMode' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ChromeReaderModeOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ChromeReaderModeRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ChromeReaderModeSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ChromeReaderModeTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Class' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ClassOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ClassRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ClassSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ClassTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ClearAll' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ClearAllOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ClearAllRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ClearAllSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ClearAllTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Clear' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ClearOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ClearRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ClearSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ClearTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ClosedCaption' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ClosedCaptionOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ClosedCaptionRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ClosedCaptionSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ClosedCaptionTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Close' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CloseOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CloseRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CloseSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CloseTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CloudCircle' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CloudCircleOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CloudCircleRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CloudCircleSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CloudCircleTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CloudDone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CloudDoneOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CloudDoneRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CloudDoneSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CloudDoneTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CloudDownload' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CloudDownloadOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CloudDownloadRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CloudDownloadSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CloudDownloadTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Cloud' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CloudOff' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CloudOffOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CloudOffRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CloudOffSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CloudOffTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CloudOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CloudQueue' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CloudQueueOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CloudQueueRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CloudQueueSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CloudQueueTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CloudRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CloudSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CloudTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CloudUpload' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CloudUploadOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CloudUploadRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CloudUploadSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CloudUploadTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Code' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CodeOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CodeRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CodeSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CodeTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CollectionsBookmark' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CollectionsBookmarkOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CollectionsBookmarkRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CollectionsBookmarkSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CollectionsBookmarkTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Collections' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CollectionsOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CollectionsRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CollectionsSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CollectionsTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Colorize' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ColorizeOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ColorizeRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ColorizeSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ColorizeTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ColorLens' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ColorLensOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ColorLensRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ColorLensSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ColorLensTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Comment' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CommentOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CommentRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CommentSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CommentTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Commute' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CommuteOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CommuteRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CommuteSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CommuteTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CompareArrows' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CompareArrowsOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CompareArrowsRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CompareArrowsSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CompareArrowsTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Compare' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CompareOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CompareRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CompareSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CompareTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CompassCalibration' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CompassCalibrationOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CompassCalibrationRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CompassCalibrationSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CompassCalibrationTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Computer' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ComputerOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ComputerRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ComputerSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ComputerTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ConfirmationNumber' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ConfirmationNumberOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ConfirmationNumberRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ConfirmationNumberSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ConfirmationNumberTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ContactMail' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ContactMailOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ContactMailRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ContactMailSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ContactMailTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ContactPhone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ContactPhoneOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ContactPhoneRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ContactPhoneSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ContactPhoneTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Contacts' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ContactsOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ContactsRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ContactsSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ContactsTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ContactSupport' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ContactSupportOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ContactSupportRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ContactSupportSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ContactSupportTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ControlCamera' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ControlCameraOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ControlCameraRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ControlCameraSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ControlCameraTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ControlPointDuplicate' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ControlPointDuplicateOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ControlPointDuplicateRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ControlPointDuplicateSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ControlPointDuplicateTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ControlPoint' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ControlPointOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ControlPointRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ControlPointSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ControlPointTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Copyright' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CopyrightOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CopyrightRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CopyrightSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CopyrightTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Create' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CreateNewFolder' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CreateNewFolderOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CreateNewFolderRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CreateNewFolderSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CreateNewFolderTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CreateOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CreateRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CreateSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CreateTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CreditCard' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CreditCardOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CreditCardRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CreditCardSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CreditCardTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Crop169' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Crop169Outlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Crop169Rounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Crop169Sharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Crop169TwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Crop32' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Crop32Outlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Crop32Rounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Crop32Sharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Crop32TwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Crop54' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Crop54Outlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Crop54Rounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Crop54Sharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Crop54TwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Crop75' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Crop75Outlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Crop75Rounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Crop75Sharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Crop75TwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CropDin' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CropDinOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CropDinRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CropDinSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CropDinTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CropFree' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CropFreeOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CropFreeRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CropFreeSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CropFreeTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Crop' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CropLandscape' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CropLandscapeOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CropLandscapeRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CropLandscapeSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CropLandscapeTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CropOriginal' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CropOriginalOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CropOriginalRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CropOriginalSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CropOriginalTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CropOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CropPortrait' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CropPortraitOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CropPortraitRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CropPortraitSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CropPortraitTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CropRotate' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CropRotateOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CropRotateRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CropRotateSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CropRotateTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CropRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CropSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CropSquare' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CropSquareOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CropSquareRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CropSquareSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CropSquareTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/CropTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Dashboard' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DashboardOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DashboardRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DashboardSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DashboardTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DataUsage' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DataUsageOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DataUsageRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DataUsageSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DataUsageTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DateRange' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DateRangeOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DateRangeRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DateRangeSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DateRangeTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Dehaze' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DehazeOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DehazeRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DehazeSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DehazeTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DeleteForever' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DeleteForeverOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DeleteForeverRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DeleteForeverSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DeleteForeverTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Delete' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DeleteOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DeleteOutline' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DeleteOutlineOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DeleteOutlineRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DeleteOutlineSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DeleteOutlineTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DeleteRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DeleteSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DeleteSweep' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DeleteSweepOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DeleteSweepRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DeleteSweepSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DeleteSweepTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DeleteTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DepartureBoard' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DepartureBoardOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DepartureBoardRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DepartureBoardSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DepartureBoardTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Description' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DescriptionOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DescriptionRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DescriptionSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DescriptionTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DesktopAccessDisabled' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DesktopAccessDisabledOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DesktopAccessDisabledRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DesktopAccessDisabledSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DesktopAccessDisabledTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DesktopMac' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DesktopMacOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DesktopMacRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DesktopMacSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DesktopMacTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DesktopWindows' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DesktopWindowsOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DesktopWindowsRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DesktopWindowsSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DesktopWindowsTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Details' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DetailsOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DetailsRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DetailsSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DetailsTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DeveloperBoard' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DeveloperBoardOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DeveloperBoardRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DeveloperBoardSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DeveloperBoardTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DeveloperMode' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DeveloperModeOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DeveloperModeRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DeveloperModeSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DeveloperModeTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DeviceHub' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DeviceHubOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DeviceHubRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DeviceHubSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DeviceHubTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Devices' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DevicesOther' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DevicesOtherOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DevicesOtherRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DevicesOtherSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DevicesOtherTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DevicesOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DevicesRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DevicesSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DevicesTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DeviceUnknown' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DeviceUnknownOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DeviceUnknownRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DeviceUnknownSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DeviceUnknownTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DialerSip' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DialerSipOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DialerSipRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DialerSipSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DialerSipTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Dialpad' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DialpadOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DialpadRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DialpadSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DialpadTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DirectionsBike' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DirectionsBikeOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DirectionsBikeRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DirectionsBikeSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DirectionsBikeTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DirectionsBoat' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DirectionsBoatOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DirectionsBoatRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DirectionsBoatSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DirectionsBoatTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DirectionsBus' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DirectionsBusOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DirectionsBusRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DirectionsBusSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DirectionsBusTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DirectionsCar' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DirectionsCarOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DirectionsCarRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DirectionsCarSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DirectionsCarTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Directions' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DirectionsOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DirectionsRailway' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DirectionsRailwayOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DirectionsRailwayRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DirectionsRailwaySharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DirectionsRailwayTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DirectionsRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DirectionsRun' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DirectionsRunOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DirectionsRunRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DirectionsRunSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DirectionsRunTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DirectionsSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DirectionsSubway' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DirectionsSubwayOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DirectionsSubwayRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DirectionsSubwaySharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DirectionsSubwayTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DirectionsTransit' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DirectionsTransitOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DirectionsTransitRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DirectionsTransitSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DirectionsTransitTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DirectionsTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DirectionsWalk' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DirectionsWalkOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DirectionsWalkRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DirectionsWalkSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DirectionsWalkTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DiscFull' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DiscFullOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DiscFullRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DiscFullSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DiscFullTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Dns' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DnsOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DnsRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DnsSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DnsTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Dock' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DockOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DockRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DockSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DockTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DomainDisabled' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DomainDisabledOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DomainDisabledRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DomainDisabledSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DomainDisabledTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Domain' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DomainOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DomainRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DomainSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DomainTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DoneAll' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DoneAllOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DoneAllRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DoneAllSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DoneAllTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Done' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DoneOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DoneOutline' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DoneOutlineOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DoneOutlineRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DoneOutlineSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DoneOutlineTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DoneRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DoneSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DoneTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DonutLarge' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DonutLargeOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DonutLargeRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DonutLargeSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DonutLargeTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DonutSmall' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DonutSmallOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DonutSmallRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DonutSmallSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DonutSmallTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Drafts' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DraftsOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DraftsRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DraftsSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DraftsTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DragHandle' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DragHandleOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DragHandleRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DragHandleSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DragHandleTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DragIndicator' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DragIndicatorOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DragIndicatorRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DragIndicatorSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DragIndicatorTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DriveEta' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DriveEtaOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DriveEtaRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DriveEtaSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DriveEtaTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Duo' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DuoOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DuoRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DuoSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DuoTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Dvr' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DvrOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DvrRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DvrSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/DvrTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EditAttributes' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EditAttributesOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EditAttributesRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EditAttributesSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EditAttributesTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Edit' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EditLocation' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EditLocationOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EditLocationRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EditLocationSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EditLocationTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EditOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EditRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EditSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EditTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Eject' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EjectOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EjectRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EjectSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EjectTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Email' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EmailOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EmailRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EmailSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EmailTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EnhancedEncryption' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EnhancedEncryptionOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EnhancedEncryptionRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EnhancedEncryptionSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EnhancedEncryptionTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Equalizer' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EqualizerOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EqualizerRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EqualizerSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EqualizerTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Error' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ErrorOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ErrorOutline' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ErrorOutlineOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ErrorOutlineRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ErrorOutlineSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ErrorOutlineTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ErrorRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ErrorSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ErrorTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EuroSymbol' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EuroSymbolOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EuroSymbolRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EuroSymbolSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EuroSymbolTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EventAvailable' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EventAvailableOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EventAvailableRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EventAvailableSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EventAvailableTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EventBusy' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EventBusyOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EventBusyRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EventBusySharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EventBusyTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Event' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EventNote' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EventNoteOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EventNoteRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EventNoteSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EventNoteTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EventOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EventRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EventSeat' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EventSeatOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EventSeatRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EventSeatSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EventSeatTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EventSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EventTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EvStation' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EvStationOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EvStationRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EvStationSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/EvStationTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExitToApp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExitToAppOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExitToAppRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExitToAppSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExitToAppTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExpandLess' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExpandLessOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExpandLessRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExpandLessSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExpandLessTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExpandMore' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExpandMoreOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExpandMoreRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExpandMoreSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExpandMoreTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Explicit' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExplicitOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExplicitRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExplicitSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExplicitTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Explore' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExploreOff' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExploreOffOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExploreOffRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExploreOffSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExploreOffTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExploreOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExploreRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExploreSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExploreTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Exposure' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExposureNeg1' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExposureNeg1Outlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExposureNeg1Rounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExposureNeg1Sharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExposureNeg1TwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExposureNeg2' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExposureNeg2Outlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExposureNeg2Rounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExposureNeg2Sharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExposureNeg2TwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExposureOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExposurePlus1' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExposurePlus1Outlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExposurePlus1Rounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExposurePlus1Sharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExposurePlus1TwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExposurePlus2' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExposurePlus2Outlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExposurePlus2Rounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExposurePlus2Sharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExposurePlus2TwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExposureRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExposureSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExposureTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExposureZero' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExposureZeroOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExposureZeroRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExposureZeroSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExposureZeroTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Extension' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExtensionOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExtensionRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExtensionSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ExtensionTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Face' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FaceOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FaceRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FaceSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FaceTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Fastfood' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FastfoodOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FastfoodRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FastfoodSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FastfoodTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FastForward' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FastForwardOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FastForwardRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FastForwardSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FastForwardTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FastRewind' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FastRewindOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FastRewindRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FastRewindSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FastRewindTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FavoriteBorder' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FavoriteBorderOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FavoriteBorderRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FavoriteBorderSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FavoriteBorderTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Favorite' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FavoriteOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FavoriteRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FavoriteSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FavoriteTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FeaturedPlayList' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FeaturedPlayListOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FeaturedPlayListRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FeaturedPlayListSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FeaturedPlayListTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FeaturedVideo' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FeaturedVideoOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FeaturedVideoRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FeaturedVideoSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FeaturedVideoTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Feedback' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FeedbackOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FeedbackRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FeedbackSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FeedbackTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FiberDvr' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FiberDvrOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FiberDvrRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FiberDvrSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FiberDvrTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FiberManualRecord' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FiberManualRecordOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FiberManualRecordRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FiberManualRecordSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FiberManualRecordTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FiberNew' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FiberNewOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FiberNewRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FiberNewSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FiberNewTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FiberPin' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FiberPinOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FiberPinRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FiberPinSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FiberPinTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FiberSmartRecord' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FiberSmartRecordOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FiberSmartRecordRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FiberSmartRecordSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FiberSmartRecordTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FileCopy' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FileCopyOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FileCopyRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FileCopySharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FileCopyTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Filter1' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Filter1Outlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Filter1Rounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Filter1Sharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Filter1TwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Filter2' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Filter2Outlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Filter2Rounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Filter2Sharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Filter2TwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Filter3' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Filter3Outlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Filter3Rounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Filter3Sharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Filter3TwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Filter4' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Filter4Outlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Filter4Rounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Filter4Sharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Filter4TwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Filter5' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Filter5Outlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Filter5Rounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Filter5Sharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Filter5TwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Filter6' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Filter6Outlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Filter6Rounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Filter6Sharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Filter6TwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Filter7' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Filter7Outlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Filter7Rounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Filter7Sharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Filter7TwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Filter8' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Filter8Outlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Filter8Rounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Filter8Sharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Filter8TwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Filter9' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Filter9Outlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Filter9Plus' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Filter9PlusOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Filter9PlusRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Filter9PlusSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Filter9PlusTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Filter9Rounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Filter9Sharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Filter9TwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FilterBAndW' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FilterBAndWOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FilterBAndWRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FilterBAndWSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FilterBAndWTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FilterCenterFocus' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FilterCenterFocusOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FilterCenterFocusRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FilterCenterFocusSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FilterCenterFocusTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FilterDrama' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FilterDramaOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FilterDramaRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FilterDramaSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FilterDramaTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FilterFrames' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FilterFramesOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FilterFramesRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FilterFramesSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FilterFramesTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FilterHdr' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FilterHdrOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FilterHdrRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FilterHdrSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FilterHdrTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Filter' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FilterList' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FilterListOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FilterListRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FilterListSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FilterListTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FilterNone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FilterNoneOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FilterNoneRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FilterNoneSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FilterNoneTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FilterOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FilterRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FilterSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FilterTiltShift' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FilterTiltShiftOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FilterTiltShiftRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FilterTiltShiftSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FilterTiltShiftTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FilterTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FilterVintage' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FilterVintageOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FilterVintageRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FilterVintageSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FilterVintageTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FindInPage' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FindInPageOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FindInPageRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FindInPageSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FindInPageTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FindReplace' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FindReplaceOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FindReplaceRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FindReplaceSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FindReplaceTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Fingerprint' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FingerprintOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FingerprintRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FingerprintSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FingerprintTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FirstPage' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FirstPageOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FirstPageRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FirstPageSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FirstPageTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FitnessCenter' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FitnessCenterOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FitnessCenterRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FitnessCenterSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FitnessCenterTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Flag' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FlagOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FlagRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FlagSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FlagTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Flare' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FlareOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FlareRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FlareSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FlareTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FlashAuto' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FlashAutoOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FlashAutoRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FlashAutoSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FlashAutoTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FlashOff' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FlashOffOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FlashOffRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FlashOffSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FlashOffTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FlashOn' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FlashOnOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FlashOnRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FlashOnSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FlashOnTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Flight' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FlightLand' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FlightLandOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FlightLandRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FlightLandSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FlightLandTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FlightOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FlightRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FlightSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FlightTakeoff' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FlightTakeoffOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FlightTakeoffRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FlightTakeoffSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FlightTakeoffTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FlightTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Flip' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FlipOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FlipRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FlipSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FlipToBack' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FlipToBackOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FlipToBackRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FlipToBackSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FlipToBackTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FlipToFront' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FlipToFrontOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FlipToFrontRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FlipToFrontSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FlipToFrontTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FlipTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Folder' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FolderOpen' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FolderOpenOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FolderOpenRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FolderOpenSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FolderOpenTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FolderOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FolderRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FolderShared' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FolderSharedOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FolderSharedRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FolderSharedSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FolderSharedTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FolderSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FolderSpecial' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FolderSpecialOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FolderSpecialRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FolderSpecialSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FolderSpecialTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FolderTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FontDownload' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FontDownloadOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FontDownloadRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FontDownloadSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FontDownloadTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatAlignCenter' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatAlignCenterOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatAlignCenterRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatAlignCenterSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatAlignCenterTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatAlignJustify' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatAlignJustifyOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatAlignJustifyRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatAlignJustifySharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatAlignJustifyTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatAlignLeft' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatAlignLeftOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatAlignLeftRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatAlignLeftSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatAlignLeftTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatAlignRight' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatAlignRightOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatAlignRightRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatAlignRightSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatAlignRightTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatBold' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatBoldOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatBoldRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatBoldSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatBoldTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatClear' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatClearOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatClearRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatClearSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatClearTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatColorFill' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatColorFillOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatColorFillRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatColorFillSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatColorFillTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatColorReset' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatColorResetOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatColorResetRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatColorResetSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatColorResetTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatColorText' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatColorTextOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatColorTextRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatColorTextSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatColorTextTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatIndentDecrease' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatIndentDecreaseOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatIndentDecreaseRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatIndentDecreaseSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatIndentDecreaseTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatIndentIncrease' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatIndentIncreaseOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatIndentIncreaseRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatIndentIncreaseSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatIndentIncreaseTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatItalic' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatItalicOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatItalicRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatItalicSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatItalicTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatLineSpacing' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatLineSpacingOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatLineSpacingRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatLineSpacingSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatLineSpacingTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatListBulleted' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatListBulletedOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatListBulletedRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatListBulletedSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatListBulletedTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatListNumbered' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatListNumberedOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatListNumberedRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatListNumberedRtl' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatListNumberedRtlOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatListNumberedRtlRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatListNumberedRtlSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatListNumberedRtlTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatListNumberedSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatListNumberedTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatPaint' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatPaintOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatPaintRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatPaintSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatPaintTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatQuote' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatQuoteOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatQuoteRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatQuoteSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatQuoteTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatShapes' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatShapesOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatShapesRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatShapesSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatShapesTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatSize' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatSizeOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatSizeRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatSizeSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatSizeTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatStrikethrough' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatStrikethroughOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatStrikethroughRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatStrikethroughSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatStrikethroughTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatTextdirectionLToR' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatTextdirectionLToROutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatTextdirectionLToRRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatTextdirectionLToRSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatTextdirectionLToRTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatTextdirectionRToL' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatTextdirectionRToLOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatTextdirectionRToLRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatTextdirectionRToLSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatTextdirectionRToLTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatUnderlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatUnderlinedOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatUnderlinedRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatUnderlinedSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FormatUnderlinedTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Forum' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ForumOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ForumRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ForumSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ForumTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Forward10' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Forward10Outlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Forward10Rounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Forward10Sharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Forward10TwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Forward30' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Forward30Outlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Forward30Rounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Forward30Sharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Forward30TwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Forward5' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Forward5Outlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Forward5Rounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Forward5Sharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Forward5TwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Forward' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ForwardOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ForwardRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ForwardSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ForwardTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FourK' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FourKOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FourKRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FourKSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FourKTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FreeBreakfast' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FreeBreakfastOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FreeBreakfastRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FreeBreakfastSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FreeBreakfastTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FullscreenExit' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FullscreenExitOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FullscreenExitRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FullscreenExitSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FullscreenExitTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Fullscreen' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FullscreenOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FullscreenRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FullscreenSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FullscreenTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Functions' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FunctionsOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FunctionsRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FunctionsSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/FunctionsTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Gamepad' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GamepadOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GamepadRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GamepadSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GamepadTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Games' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GamesOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GamesRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GamesSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GamesTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Gavel' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GavelOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GavelRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GavelSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GavelTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Gesture' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GestureOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GestureRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GestureSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GestureTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GetApp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GetAppOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GetAppRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GetAppSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GetAppTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Gif' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GifOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GifRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GifSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GifTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GolfCourse' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GolfCourseOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GolfCourseRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GolfCourseSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GolfCourseTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GpsFixed' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GpsFixedOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GpsFixedRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GpsFixedSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GpsFixedTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GpsNotFixed' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GpsNotFixedOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GpsNotFixedRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GpsNotFixedSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GpsNotFixedTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GpsOff' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GpsOffOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GpsOffRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GpsOffSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GpsOffTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Grade' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GradeOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GradeRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GradeSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GradeTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Gradient' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GradientOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GradientRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GradientSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GradientTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Grain' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GrainOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GrainRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GrainSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GrainTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GraphicEq' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GraphicEqOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GraphicEqRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GraphicEqSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GraphicEqTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GridOff' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GridOffOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GridOffRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GridOffSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GridOffTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GridOn' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GridOnOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GridOnRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GridOnSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GridOnTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GroupAdd' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GroupAddOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GroupAddRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GroupAddSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GroupAddTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Group' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GroupOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GroupRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GroupSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GroupTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GroupWork' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GroupWorkOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GroupWorkRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GroupWorkSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GroupWorkTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GTranslate' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GTranslateOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GTranslateRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GTranslateSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/GTranslateTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Hd' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HdOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HdrOff' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HdrOffOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HdrOffRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HdrOffSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HdrOffTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HdrOn' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HdrOnOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HdrOnRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HdrOnSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HdrOnTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HdRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HdrStrong' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HdrStrongOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HdrStrongRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HdrStrongSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HdrStrongTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HdrWeak' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HdrWeakOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HdrWeakRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HdrWeakSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HdrWeakTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HdSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HdTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Headset' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HeadsetMic' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HeadsetMicOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HeadsetMicRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HeadsetMicSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HeadsetMicTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HeadsetOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HeadsetRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HeadsetSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HeadsetTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Healing' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HealingOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HealingRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HealingSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HealingTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Hearing' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HearingOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HearingRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HearingSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HearingTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Help' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HelpOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HelpOutline' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HelpOutlineOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HelpOutlineRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HelpOutlineSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HelpOutlineTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HelpRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HelpSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HelpTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Highlight' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HighlightOff' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HighlightOffOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HighlightOffRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HighlightOffSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HighlightOffTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HighlightOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HighlightRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HighlightSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HighlightTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HighQuality' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HighQualityOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HighQualityRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HighQualitySharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HighQualityTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/History' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HistoryOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HistoryRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HistorySharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HistoryTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Home' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HomeOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HomeRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HomeSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HomeTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HorizontalSplit' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HorizontalSplitOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HorizontalSplitRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HorizontalSplitSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HorizontalSplitTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Hotel' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HotelOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HotelRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HotelSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HotelTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HotTub' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HotTubOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HotTubRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HotTubSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HotTubTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HourglassEmpty' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HourglassEmptyOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HourglassEmptyRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HourglassEmptySharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HourglassEmptyTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HourglassFull' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HourglassFullOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HourglassFullRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HourglassFullSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HourglassFullTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HowToReg' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HowToRegOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HowToRegRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HowToRegSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HowToRegTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HowToVote' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HowToVoteOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HowToVoteRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HowToVoteSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HowToVoteTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Http' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HttpOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HttpRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HttpSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Https' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HttpsOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HttpsRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HttpsSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HttpsTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/HttpTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ImageAspectRatio' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ImageAspectRatioOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ImageAspectRatioRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ImageAspectRatioSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ImageAspectRatioTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Image' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ImageOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ImageRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ImageSearch' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ImageSearchOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ImageSearchRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ImageSearchSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ImageSearchTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ImageSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ImageTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ImportantDevices' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ImportantDevicesOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ImportantDevicesRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ImportantDevicesSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ImportantDevicesTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ImportContacts' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ImportContactsOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ImportContactsRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ImportContactsSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ImportContactsTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ImportExport' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ImportExportOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ImportExportRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ImportExportSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ImportExportTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Inbox' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InboxOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InboxRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InboxSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InboxTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/IndeterminateCheckBox' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/IndeterminateCheckBoxOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/IndeterminateCheckBoxRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/IndeterminateCheckBoxSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/IndeterminateCheckBoxTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/index' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Info' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InfoOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InfoRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InfoSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InfoTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Input' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InputOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InputRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InputSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InputTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InsertChart' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InsertChartOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InsertChartOutlinedOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InsertChartOutlinedRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InsertChartOutlinedSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InsertChartOutlinedTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InsertChartRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InsertChartSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InsertChartTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InsertComment' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InsertCommentOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InsertCommentRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InsertCommentSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InsertCommentTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InsertDriveFile' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InsertDriveFileOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InsertDriveFileRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InsertDriveFileSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InsertDriveFileTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InsertEmoticon' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InsertEmoticonOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InsertEmoticonRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InsertEmoticonSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InsertEmoticonTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InsertInvitation' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InsertInvitationOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InsertInvitationRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InsertInvitationSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InsertInvitationTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InsertLink' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InsertLinkOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InsertLinkRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InsertLinkSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InsertLinkTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InsertPhoto' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InsertPhotoOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InsertPhotoRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InsertPhotoSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InsertPhotoTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InvertColors' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InvertColorsOff' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InvertColorsOffOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InvertColorsOffRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InvertColorsOffSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InvertColorsOffTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InvertColorsOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InvertColorsRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InvertColorsSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/InvertColorsTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Iso' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/IsoOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/IsoRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/IsoSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/IsoTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardArrowDown' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardArrowDownOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardArrowDownRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardArrowDownSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardArrowDownTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardArrowLeft' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardArrowLeftOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardArrowLeftRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardArrowLeftSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardArrowLeftTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardArrowRight' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardArrowRightOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardArrowRightRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardArrowRightSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardArrowRightTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardArrowUp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardArrowUpOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardArrowUpRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardArrowUpSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardArrowUpTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardBackspace' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardBackspaceOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardBackspaceRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardBackspaceSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardBackspaceTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardCapslock' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardCapslockOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardCapslockRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardCapslockSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardCapslockTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardHide' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardHideOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardHideRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardHideSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardHideTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Keyboard' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardReturn' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardReturnOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardReturnRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardReturnSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardReturnTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardTab' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardTabOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardTabRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardTabSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardTabTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardVoice' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardVoiceOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardVoiceRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardVoiceSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KeyboardVoiceTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Kitchen' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KitchenOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KitchenRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KitchenSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/KitchenTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LabelImportant' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LabelImportantOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LabelImportantRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LabelImportantSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LabelImportantTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Label' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LabelOff' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LabelOffOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LabelOffRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LabelOffSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LabelOffTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LabelOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LabelRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LabelSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LabelTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Landscape' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LandscapeOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LandscapeRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LandscapeSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LandscapeTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Language' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LanguageOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LanguageRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LanguageSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LanguageTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LaptopChromebook' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LaptopChromebookOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LaptopChromebookRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LaptopChromebookSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LaptopChromebookTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Laptop' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LaptopMac' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LaptopMacOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LaptopMacRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LaptopMacSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LaptopMacTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LaptopOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LaptopRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LaptopSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LaptopTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LaptopWindows' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LaptopWindowsOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LaptopWindowsRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LaptopWindowsSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LaptopWindowsTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LastPage' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LastPageOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LastPageRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LastPageSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LastPageTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Launch' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LaunchOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LaunchRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LaunchSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LaunchTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LayersClear' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LayersClearOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LayersClearRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LayersClearSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LayersClearTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Layers' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LayersOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LayersRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LayersSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LayersTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LeakAdd' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LeakAddOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LeakAddRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LeakAddSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LeakAddTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LeakRemove' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LeakRemoveOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LeakRemoveRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LeakRemoveSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LeakRemoveTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Lens' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LensOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LensRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LensSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LensTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LibraryAdd' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LibraryAddOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LibraryAddRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LibraryAddSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LibraryAddTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LibraryBooks' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LibraryBooksOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LibraryBooksRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LibraryBooksSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LibraryBooksTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LibraryMusic' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LibraryMusicOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LibraryMusicRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LibraryMusicSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LibraryMusicTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LinearScale' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LinearScaleOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LinearScaleRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LinearScaleSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LinearScaleTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LineStyle' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LineStyleOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LineStyleRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LineStyleSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LineStyleTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LineWeight' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LineWeightOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LineWeightRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LineWeightSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LineWeightTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LinkedCamera' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LinkedCameraOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LinkedCameraRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LinkedCameraSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LinkedCameraTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Link' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LinkOff' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LinkOffOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LinkOffRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LinkOffSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LinkOffTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LinkOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LinkRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LinkSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LinkTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ListAlt' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ListAltOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ListAltRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ListAltSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ListAltTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/List' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ListOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ListRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ListSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ListTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LiveHelp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LiveHelpOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LiveHelpRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LiveHelpSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LiveHelpTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LiveTv' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LiveTvOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LiveTvRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LiveTvSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LiveTvTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalActivity' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalActivityOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalActivityRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalActivitySharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalActivityTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalAirport' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalAirportOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalAirportRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalAirportSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalAirportTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalAtm' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalAtmOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalAtmRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalAtmSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalAtmTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalBar' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalBarOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalBarRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalBarSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalBarTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalCafe' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalCafeOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalCafeRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalCafeSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalCafeTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalCarWash' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalCarWashOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalCarWashRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalCarWashSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalCarWashTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalConvenienceStore' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalConvenienceStoreOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalConvenienceStoreRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalConvenienceStoreSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalConvenienceStoreTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalDining' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalDiningOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalDiningRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalDiningSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalDiningTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalDrink' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalDrinkOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalDrinkRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalDrinkSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalDrinkTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalFlorist' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalFloristOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalFloristRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalFloristSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalFloristTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalGasStation' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalGasStationOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalGasStationRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalGasStationSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalGasStationTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalGroceryStore' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalGroceryStoreOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalGroceryStoreRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalGroceryStoreSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalGroceryStoreTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalHospital' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalHospitalOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalHospitalRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalHospitalSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalHospitalTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalHotel' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalHotelOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalHotelRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalHotelSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalHotelTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalLaundryService' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalLaundryServiceOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalLaundryServiceRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalLaundryServiceSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalLaundryServiceTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalLibrary' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalLibraryOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalLibraryRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalLibrarySharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalLibraryTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalMall' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalMallOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalMallRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalMallSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalMallTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalMovies' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalMoviesOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalMoviesRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalMoviesSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalMoviesTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalOffer' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalOfferOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalOfferRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalOfferSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalOfferTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalParking' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalParkingOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalParkingRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalParkingSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalParkingTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalPharmacy' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalPharmacyOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalPharmacyRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalPharmacySharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalPharmacyTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalPhone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalPhoneOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalPhoneRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalPhoneSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalPhoneTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalPizza' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalPizzaOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalPizzaRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalPizzaSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalPizzaTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalPlay' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalPlayOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalPlayRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalPlaySharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalPlayTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalPostOffice' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalPostOfficeOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalPostOfficeRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalPostOfficeSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalPostOfficeTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalPrintshop' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalPrintshopOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalPrintshopRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalPrintshopSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalPrintshopTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalSee' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalSeeOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalSeeRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalSeeSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalSeeTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalShipping' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalShippingOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalShippingRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalShippingSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalShippingTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalTaxi' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalTaxiOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalTaxiRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalTaxiSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocalTaxiTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocationCity' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocationCityOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocationCityRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocationCitySharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocationCityTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocationDisabled' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocationDisabledOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocationDisabledRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocationDisabledSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocationDisabledTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocationOff' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocationOffOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocationOffRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocationOffSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocationOffTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocationOn' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocationOnOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocationOnRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocationOnSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocationOnTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocationSearching' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocationSearchingOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocationSearchingRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocationSearchingSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LocationSearchingTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Lock' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LockOpen' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LockOpenOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LockOpenRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LockOpenSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LockOpenTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LockOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LockRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LockSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LockTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Looks3' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Looks3Outlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Looks3Rounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Looks3Sharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Looks3TwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Looks4' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Looks4Outlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Looks4Rounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Looks4Sharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Looks4TwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Looks5' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Looks5Outlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Looks5Rounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Looks5Sharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Looks5TwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Looks6' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Looks6Outlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Looks6Rounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Looks6Sharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Looks6TwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Looks' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LooksOne' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LooksOneOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LooksOneRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LooksOneSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LooksOneTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LooksOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LooksRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LooksSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LooksTwo' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LooksTwoOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LooksTwoRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LooksTwoSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LooksTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LooksTwoTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Loop' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LoopOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LoopRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LoopSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LoopTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Loupe' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LoupeOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LoupeRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LoupeSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LoupeTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LowPriority' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LowPriorityOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LowPriorityRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LowPrioritySharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LowPriorityTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Loyalty' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LoyaltyOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LoyaltyRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LoyaltySharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/LoyaltyTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Mail' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MailOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MailOutline' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MailOutlineOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MailOutlineRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MailOutlineSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MailOutlineTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MailRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MailSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MailTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Map' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MapOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MapRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MapSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MapTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Markunread' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MarkunreadMailbox' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MarkunreadMailboxOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MarkunreadMailboxRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MarkunreadMailboxSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MarkunreadMailboxTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MarkunreadOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MarkunreadRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MarkunreadSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MarkunreadTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Maximize' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MaximizeOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MaximizeRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MaximizeSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MaximizeTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MeetingRoom' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MeetingRoomOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MeetingRoomRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MeetingRoomSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MeetingRoomTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Memory' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MemoryOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MemoryRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MemorySharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MemoryTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Menu' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MenuOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MenuRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MenuSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MenuTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MergeType' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MergeTypeOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MergeTypeRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MergeTypeSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MergeTypeTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Message' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MessageOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MessageRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MessageSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MessageTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Mic' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MicNone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MicNoneOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MicNoneRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MicNoneSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MicNoneTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MicOff' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MicOffOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MicOffRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MicOffSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MicOffTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MicOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MicRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MicSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MicTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Minimize' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MinimizeOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MinimizeRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MinimizeSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MinimizeTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MissedVideoCall' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MissedVideoCallOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MissedVideoCallRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MissedVideoCallSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MissedVideoCallTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Mms' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MmsOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MmsRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MmsSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MmsTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MobileFriendly' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MobileFriendlyOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MobileFriendlyRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MobileFriendlySharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MobileFriendlyTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MobileOff' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MobileOffOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MobileOffRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MobileOffSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MobileOffTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MobileScreenShare' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MobileScreenShareOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MobileScreenShareRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MobileScreenShareSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MobileScreenShareTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ModeComment' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ModeCommentOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ModeCommentRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ModeCommentSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ModeCommentTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MonetizationOn' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MonetizationOnOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MonetizationOnRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MonetizationOnSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MonetizationOnTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Money' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MoneyOff' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MoneyOffOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MoneyOffRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MoneyOffSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MoneyOffTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MoneyOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MoneyRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MoneySharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MoneyTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MonochromePhotos' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MonochromePhotosOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MonochromePhotosRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MonochromePhotosSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MonochromePhotosTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MoodBad' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MoodBadOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MoodBadRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MoodBadSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MoodBadTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Mood' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MoodOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MoodRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MoodSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MoodTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MoreHoriz' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MoreHorizOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MoreHorizRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MoreHorizSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MoreHorizTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/More' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MoreOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MoreRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MoreSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MoreTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MoreVert' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MoreVertOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MoreVertRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MoreVertSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MoreVertTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Motorcycle' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MotorcycleOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MotorcycleRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MotorcycleSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MotorcycleTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Mouse' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MouseOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MouseRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MouseSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MouseTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MoveToInbox' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MoveToInboxOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MoveToInboxRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MoveToInboxSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MoveToInboxTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MovieCreation' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MovieCreationOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MovieCreationRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MovieCreationSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MovieCreationTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MovieFilter' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MovieFilterOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MovieFilterRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MovieFilterSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MovieFilterTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Movie' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MovieOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MovieRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MovieSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MovieTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MultilineChart' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MultilineChartOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MultilineChartRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MultilineChartSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MultilineChartTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MusicNote' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MusicNoteOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MusicNoteRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MusicNoteSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MusicNoteTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MusicOff' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MusicOffOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MusicOffRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MusicOffSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MusicOffTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MusicVideo' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MusicVideoOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MusicVideoRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MusicVideoSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MusicVideoTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MyLocation' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MyLocationOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MyLocationRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MyLocationSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/MyLocationTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Nature' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NatureOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NaturePeople' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NaturePeopleOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NaturePeopleRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NaturePeopleSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NaturePeopleTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NatureRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NatureSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NatureTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NavigateBefore' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NavigateBeforeOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NavigateBeforeRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NavigateBeforeSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NavigateBeforeTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NavigateNext' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NavigateNextOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NavigateNextRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NavigateNextSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NavigateNextTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Navigation' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NavigationOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NavigationRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NavigationSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NavigationTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NearMe' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NearMeOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NearMeRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NearMeSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NearMeTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NetworkCell' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NetworkCellOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NetworkCellRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NetworkCellSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NetworkCellTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NetworkCheck' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NetworkCheckOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NetworkCheckRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NetworkCheckSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NetworkCheckTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NetworkLocked' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NetworkLockedOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NetworkLockedRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NetworkLockedSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NetworkLockedTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NetworkWifi' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NetworkWifiOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NetworkWifiRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NetworkWifiSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NetworkWifiTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NewReleases' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NewReleasesOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NewReleasesRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NewReleasesSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NewReleasesTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NextWeek' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NextWeekOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NextWeekRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NextWeekSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NextWeekTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Nfc' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NfcOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NfcRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NfcSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NfcTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NoEncryption' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NoEncryptionOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NoEncryptionRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NoEncryptionSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NoEncryptionTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NoMeetingRoom' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NoMeetingRoomOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NoMeetingRoomRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NoMeetingRoomSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NoMeetingRoomTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NoSim' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NoSimOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NoSimRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NoSimSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NoSimTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NoteAdd' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NoteAddOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NoteAddRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NoteAddSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NoteAddTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Note' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NoteOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NoteRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NoteSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Notes' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NotesOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NotesRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NotesSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NotesTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NoteTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NotificationImportant' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NotificationImportantOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NotificationImportantRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NotificationImportantSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NotificationImportantTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NotificationsActive' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NotificationsActiveOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NotificationsActiveRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NotificationsActiveSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NotificationsActiveTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Notifications' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NotificationsNone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NotificationsNoneOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NotificationsNoneRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NotificationsNoneSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NotificationsNoneTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NotificationsOff' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NotificationsOffOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NotificationsOffRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NotificationsOffSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NotificationsOffTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NotificationsOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NotificationsPaused' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NotificationsPausedOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NotificationsPausedRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NotificationsPausedSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NotificationsPausedTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NotificationsRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NotificationsSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NotificationsTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NotInterested' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NotInterestedOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NotInterestedRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NotInterestedSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NotInterestedTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NotListedLocation' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NotListedLocationOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NotListedLocationRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NotListedLocationSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/NotListedLocationTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/OfflineBolt' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/OfflineBoltOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/OfflineBoltRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/OfflineBoltSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/OfflineBoltTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/OfflinePin' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/OfflinePinOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/OfflinePinRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/OfflinePinSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/OfflinePinTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/OndemandVideo' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/OndemandVideoOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/OndemandVideoRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/OndemandVideoSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/OndemandVideoTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Opacity' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/OpacityOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/OpacityRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/OpacitySharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/OpacityTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/OpenInBrowser' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/OpenInBrowserOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/OpenInBrowserRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/OpenInBrowserSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/OpenInBrowserTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/OpenInNew' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/OpenInNewOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/OpenInNewRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/OpenInNewSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/OpenInNewTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/OpenWith' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/OpenWithOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/OpenWithRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/OpenWithSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/OpenWithTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/OutlinedFlag' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/OutlinedFlagOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/OutlinedFlagRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/OutlinedFlagSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/OutlinedFlagTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Pages' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PagesOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PagesRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PagesSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PagesTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Pageview' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PageviewOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PageviewRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PageviewSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PageviewTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Palette' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PaletteOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PaletteRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PaletteSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PaletteTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PanoramaFishEye' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PanoramaFishEyeOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PanoramaFishEyeRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PanoramaFishEyeSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PanoramaFishEyeTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PanoramaHorizontal' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PanoramaHorizontalOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PanoramaHorizontalRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PanoramaHorizontalSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PanoramaHorizontalTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Panorama' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PanoramaOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PanoramaRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PanoramaSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PanoramaTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PanoramaVertical' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PanoramaVerticalOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PanoramaVerticalRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PanoramaVerticalSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PanoramaVerticalTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PanoramaWideAngle' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PanoramaWideAngleOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PanoramaWideAngleRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PanoramaWideAngleSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PanoramaWideAngleTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PanTool' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PanToolOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PanToolRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PanToolSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PanToolTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PartyMode' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PartyModeOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PartyModeRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PartyModeSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PartyModeTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PauseCircleFilled' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PauseCircleFilledOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PauseCircleFilledRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PauseCircleFilledSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PauseCircleFilledTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PauseCircleOutline' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PauseCircleOutlineOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PauseCircleOutlineRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PauseCircleOutlineSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PauseCircleOutlineTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Pause' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PauseOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PausePresentation' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PausePresentationOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PausePresentationRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PausePresentationSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PausePresentationTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PauseRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PauseSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PauseTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Payment' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PaymentOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PaymentRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PaymentSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PaymentTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/People' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PeopleOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PeopleOutline' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PeopleOutlineOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PeopleOutlineRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PeopleOutlineSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PeopleOutlineTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PeopleRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PeopleSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PeopleTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PermCameraMic' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PermCameraMicOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PermCameraMicRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PermCameraMicSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PermCameraMicTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PermContactCalendar' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PermContactCalendarOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PermContactCalendarRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PermContactCalendarSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PermContactCalendarTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PermDataSetting' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PermDataSettingOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PermDataSettingRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PermDataSettingSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PermDataSettingTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PermDeviceInformation' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PermDeviceInformationOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PermDeviceInformationRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PermDeviceInformationSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PermDeviceInformationTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PermIdentity' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PermIdentityOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PermIdentityRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PermIdentitySharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PermIdentityTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PermMedia' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PermMediaOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PermMediaRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PermMediaSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PermMediaTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PermPhoneMsg' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PermPhoneMsgOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PermPhoneMsgRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PermPhoneMsgSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PermPhoneMsgTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PermScanWifi' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PermScanWifiOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PermScanWifiRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PermScanWifiSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PermScanWifiTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PersonAddDisabled' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PersonAddDisabledOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PersonAddDisabledRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PersonAddDisabledSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PersonAddDisabledTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PersonAdd' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PersonAddOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PersonAddRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PersonAddSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PersonAddTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PersonalVideo' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PersonalVideoOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PersonalVideoRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PersonalVideoSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PersonalVideoTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Person' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PersonOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PersonOutline' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PersonOutlineOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PersonOutlineRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PersonOutlineSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PersonOutlineTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PersonPinCircle' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PersonPinCircleOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PersonPinCircleRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PersonPinCircleSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PersonPinCircleTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PersonPin' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PersonPinOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PersonPinRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PersonPinSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PersonPinTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PersonRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PersonSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PersonTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Pets' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PetsOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PetsRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PetsSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PetsTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhoneAndroid' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhoneAndroidOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhoneAndroidRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhoneAndroidSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhoneAndroidTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhoneBluetoothSpeaker' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhoneBluetoothSpeakerOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhoneBluetoothSpeakerRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhoneBluetoothSpeakerSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhoneBluetoothSpeakerTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhoneCallback' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhoneCallbackOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhoneCallbackRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhoneCallbackSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhoneCallbackTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhoneForwarded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhoneForwardedOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhoneForwardedRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhoneForwardedSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhoneForwardedTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhoneInTalk' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhoneInTalkOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhoneInTalkRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhoneInTalkSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhoneInTalkTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhoneIphone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhoneIphoneOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhoneIphoneRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhoneIphoneSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhoneIphoneTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Phone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhonelinkErase' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhonelinkEraseOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhonelinkEraseRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhonelinkEraseSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhonelinkEraseTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Phonelink' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhonelinkLock' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhonelinkLockOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhonelinkLockRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhonelinkLockSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhonelinkLockTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhonelinkOff' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhonelinkOffOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhonelinkOffRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhonelinkOffSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhonelinkOffTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhonelinkOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhonelinkRing' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhonelinkRingOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhonelinkRingRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhonelinkRingSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhonelinkRingTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhonelinkRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhonelinkSetup' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhonelinkSetupOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhonelinkSetupRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhonelinkSetupSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhonelinkSetupTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhonelinkSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhonelinkTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhoneLocked' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhoneLockedOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhoneLockedRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhoneLockedSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhoneLockedTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhoneMissed' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhoneMissedOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhoneMissedRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhoneMissedSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhoneMissedTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhoneOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhonePaused' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhonePausedOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhonePausedRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhonePausedSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhonePausedTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhoneRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhoneSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhoneTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhotoAlbum' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhotoAlbumOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhotoAlbumRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhotoAlbumSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhotoAlbumTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhotoCamera' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhotoCameraOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhotoCameraRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhotoCameraSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhotoCameraTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhotoFilter' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhotoFilterOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhotoFilterRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhotoFilterSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhotoFilterTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Photo' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhotoLibrary' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhotoLibraryOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhotoLibraryRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhotoLibrarySharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhotoLibraryTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhotoOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhotoRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhotoSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhotoSizeSelectActual' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhotoSizeSelectActualOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhotoSizeSelectActualRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhotoSizeSelectActualSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhotoSizeSelectActualTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhotoSizeSelectLarge' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhotoSizeSelectLargeOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhotoSizeSelectLargeRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhotoSizeSelectLargeSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhotoSizeSelectLargeTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhotoSizeSelectSmall' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhotoSizeSelectSmallOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhotoSizeSelectSmallRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhotoSizeSelectSmallSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhotoSizeSelectSmallTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PhotoTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PictureAsPdf' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PictureAsPdfOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PictureAsPdfRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PictureAsPdfSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PictureAsPdfTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PictureInPictureAlt' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PictureInPictureAltOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PictureInPictureAltRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PictureInPictureAltSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PictureInPictureAltTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PictureInPicture' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PictureInPictureOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PictureInPictureRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PictureInPictureSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PictureInPictureTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PieChart' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PieChartOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PieChartRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PieChartSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PieChartTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PinDrop' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PinDropOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PinDropRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PinDropSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PinDropTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Place' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PlaceOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PlaceRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PlaceSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PlaceTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PlayArrow' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PlayArrowOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PlayArrowRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PlayArrowSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PlayArrowTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PlayCircleFilled' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PlayCircleFilledOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PlayCircleFilledRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PlayCircleFilledSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PlayCircleFilledTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PlayCircleFilledWhite' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PlayCircleFilledWhiteOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PlayCircleFilledWhiteRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PlayCircleFilledWhiteSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PlayCircleFilledWhiteTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PlayCircleOutline' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PlayCircleOutlineOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PlayCircleOutlineRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PlayCircleOutlineSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PlayCircleOutlineTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PlayForWork' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PlayForWorkOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PlayForWorkRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PlayForWorkSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PlayForWorkTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PlaylistAddCheck' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PlaylistAddCheckOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PlaylistAddCheckRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PlaylistAddCheckSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PlaylistAddCheckTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PlaylistAdd' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PlaylistAddOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PlaylistAddRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PlaylistAddSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PlaylistAddTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PlaylistPlay' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PlaylistPlayOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PlaylistPlayRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PlaylistPlaySharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PlaylistPlayTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PlusOne' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PlusOneOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PlusOneRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PlusOneSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PlusOneTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Poll' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PollOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PollRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PollSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PollTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Polymer' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PolymerOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PolymerRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PolymerSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PolymerTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Pool' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PoolOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PoolRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PoolSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PoolTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PortableWifiOff' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PortableWifiOffOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PortableWifiOffRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PortableWifiOffSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PortableWifiOffTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Portrait' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PortraitOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PortraitRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PortraitSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PortraitTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PowerInput' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PowerInputOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PowerInputRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PowerInputSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PowerInputTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Power' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PowerOff' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PowerOffOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PowerOffRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PowerOffSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PowerOffTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PowerOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PowerRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PowerSettingsNew' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PowerSettingsNewOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PowerSettingsNewRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PowerSettingsNewSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PowerSettingsNewTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PowerSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PowerTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PregnantWoman' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PregnantWomanOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PregnantWomanRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PregnantWomanSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PregnantWomanTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PresentToAll' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PresentToAllOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PresentToAllRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PresentToAllSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PresentToAllTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PrintDisabled' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PrintDisabledOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PrintDisabledRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PrintDisabledSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PrintDisabledTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Print' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PrintOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PrintRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PrintSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PrintTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PriorityHigh' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PriorityHighOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PriorityHighRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PriorityHighSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PriorityHighTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Public' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PublicOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PublicRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PublicSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PublicTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Publish' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PublishOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PublishRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PublishSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/PublishTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/QueryBuilder' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/QueryBuilderOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/QueryBuilderRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/QueryBuilderSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/QueryBuilderTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/QuestionAnswer' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/QuestionAnswerOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/QuestionAnswerRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/QuestionAnswerSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/QuestionAnswerTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Queue' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/QueueMusic' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/QueueMusicOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/QueueMusicRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/QueueMusicSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/QueueMusicTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/QueueOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/QueuePlayNext' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/QueuePlayNextOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/QueuePlayNextRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/QueuePlayNextSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/QueuePlayNextTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/QueueRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/QueueSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/QueueTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RadioButtonChecked' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RadioButtonCheckedOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RadioButtonCheckedRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RadioButtonCheckedSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RadioButtonCheckedTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RadioButtonUnchecked' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RadioButtonUncheckedOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RadioButtonUncheckedRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RadioButtonUncheckedSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RadioButtonUncheckedTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Radio' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RadioOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RadioRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RadioSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RadioTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RateReview' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RateReviewOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RateReviewRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RateReviewSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RateReviewTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Receipt' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ReceiptOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ReceiptRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ReceiptSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ReceiptTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RecentActors' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RecentActorsOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RecentActorsRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RecentActorsSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RecentActorsTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RecordVoiceOver' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RecordVoiceOverOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RecordVoiceOverRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RecordVoiceOverSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RecordVoiceOverTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Redeem' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RedeemOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RedeemRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RedeemSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RedeemTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Redo' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RedoOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RedoRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RedoSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RedoTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Refresh' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RefreshOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RefreshRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RefreshSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RefreshTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RemoveCircle' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RemoveCircleOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RemoveCircleOutline' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RemoveCircleOutlineOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RemoveCircleOutlineRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RemoveCircleOutlineSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RemoveCircleOutlineTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RemoveCircleRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RemoveCircleSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RemoveCircleTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RemoveFromQueue' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RemoveFromQueueOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RemoveFromQueueRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RemoveFromQueueSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RemoveFromQueueTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Remove' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RemoveOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RemoveRedEye' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RemoveRedEyeOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RemoveRedEyeRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RemoveRedEyeSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RemoveRedEyeTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RemoveRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RemoveSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RemoveShoppingCart' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RemoveShoppingCartOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RemoveShoppingCartRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RemoveShoppingCartSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RemoveShoppingCartTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RemoveTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Reorder' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ReorderOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ReorderRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ReorderSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ReorderTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Repeat' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RepeatOne' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RepeatOneOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RepeatOneRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RepeatOneSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RepeatOneTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RepeatOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RepeatRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RepeatSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RepeatTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Replay10' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Replay10Outlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Replay10Rounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Replay10Sharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Replay10TwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Replay30' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Replay30Outlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Replay30Rounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Replay30Sharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Replay30TwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Replay5' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Replay5Outlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Replay5Rounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Replay5Sharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Replay5TwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Replay' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ReplayOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ReplayRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ReplaySharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ReplayTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ReplyAll' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ReplyAllOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ReplyAllRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ReplyAllSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ReplyAllTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Reply' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ReplyOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ReplyRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ReplySharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ReplyTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Report' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ReportOff' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ReportOffOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ReportOffRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ReportOffSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ReportOffTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ReportOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ReportProblem' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ReportProblemOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ReportProblemRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ReportProblemSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ReportProblemTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ReportRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ReportSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ReportTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Restaurant' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RestaurantMenu' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RestaurantMenuOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RestaurantMenuRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RestaurantMenuSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RestaurantMenuTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RestaurantOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RestaurantRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RestaurantSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RestaurantTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RestoreFromTrash' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RestoreFromTrashOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RestoreFromTrashRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RestoreFromTrashSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RestoreFromTrashTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Restore' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RestoreOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RestorePage' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RestorePageOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RestorePageRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RestorePageSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RestorePageTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RestoreRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RestoreSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RestoreTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RingVolume' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RingVolumeOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RingVolumeRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RingVolumeSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RingVolumeTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Room' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RoomOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RoomRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RoomService' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RoomServiceOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RoomServiceRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RoomServiceSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RoomServiceTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RoomSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RoomTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Rotate90DegreesCcw' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Rotate90DegreesCcwOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Rotate90DegreesCcwRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Rotate90DegreesCcwSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Rotate90DegreesCcwTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RotateLeft' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RotateLeftOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RotateLeftRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RotateLeftSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RotateLeftTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RotateRight' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RotateRightOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RotateRightRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RotateRightSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RotateRightTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RoundedCorner' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RoundedCornerOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RoundedCornerRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RoundedCornerSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RoundedCornerTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Router' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RouterOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RouterRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RouterSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RouterTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Rowing' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RowingOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RowingRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RowingSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RowingTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RssFeed' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RssFeedOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RssFeedRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RssFeedSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RssFeedTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RvHookup' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RvHookupOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RvHookupRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RvHookupSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/RvHookupTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Satellite' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SatelliteOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SatelliteRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SatelliteSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SatelliteTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SaveAlt' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SaveAltOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SaveAltRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SaveAltSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SaveAltTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Save' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SaveOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SaveRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SaveSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SaveTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Scanner' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ScannerOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ScannerRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ScannerSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ScannerTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ScatterPlot' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ScatterPlotOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ScatterPlotRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ScatterPlotSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ScatterPlotTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Schedule' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ScheduleOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ScheduleRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ScheduleSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ScheduleTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/School' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SchoolOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SchoolRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SchoolSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SchoolTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Score' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ScoreOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ScoreRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ScoreSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ScoreTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ScreenLockLandscape' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ScreenLockLandscapeOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ScreenLockLandscapeRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ScreenLockLandscapeSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ScreenLockLandscapeTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ScreenLockPortrait' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ScreenLockPortraitOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ScreenLockPortraitRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ScreenLockPortraitSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ScreenLockPortraitTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ScreenLockRotation' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ScreenLockRotationOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ScreenLockRotationRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ScreenLockRotationSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ScreenLockRotationTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ScreenRotation' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ScreenRotationOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ScreenRotationRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ScreenRotationSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ScreenRotationTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ScreenShare' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ScreenShareOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ScreenShareRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ScreenShareSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ScreenShareTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SdCard' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SdCardOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SdCardRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SdCardSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SdCardTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SdStorage' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SdStorageOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SdStorageRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SdStorageSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SdStorageTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Search' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SearchOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SearchRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SearchSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SearchTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Security' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SecurityOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SecurityRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SecuritySharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SecurityTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SelectAll' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SelectAllOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SelectAllRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SelectAllSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SelectAllTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Send' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SendOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SendRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SendSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SendTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SentimentDissatisfied' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SentimentDissatisfiedOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SentimentDissatisfiedRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SentimentDissatisfiedSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SentimentDissatisfiedTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SentimentSatisfiedAlt' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SentimentSatisfiedAltOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SentimentSatisfiedAltRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SentimentSatisfiedAltSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SentimentSatisfiedAltTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SentimentSatisfied' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SentimentSatisfiedOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SentimentSatisfiedRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SentimentSatisfiedSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SentimentSatisfiedTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SentimentVeryDissatisfied' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SentimentVeryDissatisfiedOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SentimentVeryDissatisfiedRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SentimentVeryDissatisfiedSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SentimentVeryDissatisfiedTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SentimentVerySatisfied' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SentimentVerySatisfiedOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SentimentVerySatisfiedRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SentimentVerySatisfiedSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SentimentVerySatisfiedTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsApplications' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsApplicationsOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsApplicationsRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsApplicationsSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsApplicationsTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsBackupRestore' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsBackupRestoreOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsBackupRestoreRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsBackupRestoreSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsBackupRestoreTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsBluetooth' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsBluetoothOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsBluetoothRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsBluetoothSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsBluetoothTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsBrightness' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsBrightnessOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsBrightnessRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsBrightnessSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsBrightnessTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsCell' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsCellOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsCellRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsCellSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsCellTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsEthernet' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsEthernetOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsEthernetRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsEthernetSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsEthernetTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsInputAntenna' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsInputAntennaOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsInputAntennaRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsInputAntennaSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsInputAntennaTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsInputComponent' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsInputComponentOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsInputComponentRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsInputComponentSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsInputComponentTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsInputComposite' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsInputCompositeOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsInputCompositeRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsInputCompositeSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsInputCompositeTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsInputHdmi' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsInputHdmiOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsInputHdmiRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsInputHdmiSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsInputHdmiTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsInputSvideo' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsInputSvideoOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsInputSvideoRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsInputSvideoSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsInputSvideoTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Settings' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsOverscan' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsOverscanOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsOverscanRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsOverscanSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsOverscanTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsPhone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsPhoneOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsPhoneRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsPhoneSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsPhoneTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsPower' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsPowerOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsPowerRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsPowerSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsPowerTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsRemote' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsRemoteOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsRemoteRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsRemoteSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsRemoteTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsSystemDaydream' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsSystemDaydreamOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsSystemDaydreamRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsSystemDaydreamSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsSystemDaydreamTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsVoice' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsVoiceOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsVoiceRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsVoiceSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SettingsVoiceTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Share' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ShareOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ShareRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ShareSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ShareTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Shop' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ShopOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ShoppingBasket' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ShoppingBasketOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ShoppingBasketRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ShoppingBasketSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ShoppingBasketTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ShoppingCart' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ShoppingCartOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ShoppingCartRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ShoppingCartSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ShoppingCartTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ShopRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ShopSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ShopTwo' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ShopTwoOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ShopTwoRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ShopTwoSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ShopTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ShopTwoTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ShortText' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ShortTextOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ShortTextRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ShortTextSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ShortTextTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ShowChart' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ShowChartOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ShowChartRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ShowChartSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ShowChartTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Shuffle' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ShuffleOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ShuffleRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ShuffleSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ShuffleTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ShutterSpeed' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ShutterSpeedOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ShutterSpeedRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ShutterSpeedSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ShutterSpeedTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellular0Bar' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellular0BarOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellular0BarRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellular0BarSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellular0BarTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellular1Bar' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellular1BarOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellular1BarRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellular1BarSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellular1BarTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellular2Bar' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellular2BarOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellular2BarRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellular2BarSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellular2BarTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellular3Bar' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellular3BarOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellular3BarRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellular3BarSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellular3BarTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellular4Bar' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellular4BarOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellular4BarRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellular4BarSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellular4BarTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellularAlt' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellularAltOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellularAltRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellularAltSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellularAltTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellularConnectedNoInternet0Bar' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellularConnectedNoInternet0BarOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellularConnectedNoInternet0BarRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellularConnectedNoInternet0BarSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellularConnectedNoInternet0BarTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellularConnectedNoInternet1Bar' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellularConnectedNoInternet1BarOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellularConnectedNoInternet1BarRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellularConnectedNoInternet1BarSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellularConnectedNoInternet1BarTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellularConnectedNoInternet2Bar' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellularConnectedNoInternet2BarOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellularConnectedNoInternet2BarRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellularConnectedNoInternet2BarSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellularConnectedNoInternet2BarTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellularConnectedNoInternet3Bar' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellularConnectedNoInternet3BarOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellularConnectedNoInternet3BarRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellularConnectedNoInternet3BarSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellularConnectedNoInternet3BarTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellularConnectedNoInternet4Bar' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellularConnectedNoInternet4BarOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellularConnectedNoInternet4BarRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellularConnectedNoInternet4BarSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellularConnectedNoInternet4BarTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellularNoSim' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellularNoSimOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellularNoSimRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellularNoSimSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellularNoSimTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellularNull' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellularNullOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellularNullRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellularNullSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellularNullTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellularOff' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellularOffOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellularOffRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellularOffSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalCellularOffTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalWifi0Bar' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalWifi0BarOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalWifi0BarRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalWifi0BarSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalWifi0BarTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalWifi1Bar' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalWifi1BarLock' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalWifi1BarLockOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalWifi1BarLockRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalWifi1BarLockSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalWifi1BarLockTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalWifi1BarOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalWifi1BarRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalWifi1BarSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalWifi1BarTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalWifi2Bar' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalWifi2BarLock' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalWifi2BarLockOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalWifi2BarLockRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalWifi2BarLockSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalWifi2BarLockTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalWifi2BarOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalWifi2BarRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalWifi2BarSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalWifi2BarTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalWifi3Bar' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalWifi3BarLock' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalWifi3BarLockOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalWifi3BarLockRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalWifi3BarLockSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalWifi3BarLockTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalWifi3BarOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalWifi3BarRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalWifi3BarSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalWifi3BarTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalWifi4Bar' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalWifi4BarLock' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalWifi4BarLockOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalWifi4BarLockRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalWifi4BarLockSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalWifi4BarLockTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalWifi4BarOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalWifi4BarRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalWifi4BarSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalWifi4BarTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalWifiOff' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalWifiOffOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalWifiOffRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalWifiOffSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SignalWifiOffTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SimCard' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SimCardOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SimCardRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SimCardSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SimCardTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SkipNext' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SkipNextOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SkipNextRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SkipNextSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SkipNextTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SkipPrevious' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SkipPreviousOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SkipPreviousRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SkipPreviousSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SkipPreviousTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Slideshow' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SlideshowOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SlideshowRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SlideshowSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SlideshowTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SlowMotionVideo' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SlowMotionVideoOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SlowMotionVideoRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SlowMotionVideoSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SlowMotionVideoTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Smartphone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SmartphoneOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SmartphoneRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SmartphoneSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SmartphoneTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SmokeFree' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SmokeFreeOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SmokeFreeRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SmokeFreeSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SmokeFreeTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SmokingRooms' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SmokingRoomsOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SmokingRoomsRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SmokingRoomsSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SmokingRoomsTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SmsFailed' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SmsFailedOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SmsFailedRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SmsFailedSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SmsFailedTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Sms' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SmsOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SmsRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SmsSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SmsTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Snooze' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SnoozeOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SnoozeRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SnoozeSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SnoozeTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SortByAlpha' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SortByAlphaOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SortByAlphaRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SortByAlphaSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SortByAlphaTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Sort' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SortOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SortRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SortSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SortTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SpaceBar' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SpaceBarOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SpaceBarRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SpaceBarSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SpaceBarTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Spa' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SpaOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SpaRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SpaSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SpaTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SpeakerGroup' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SpeakerGroupOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SpeakerGroupRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SpeakerGroupSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SpeakerGroupTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Speaker' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SpeakerNotes' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SpeakerNotesOff' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SpeakerNotesOffOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SpeakerNotesOffRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SpeakerNotesOffSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SpeakerNotesOffTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SpeakerNotesOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SpeakerNotesRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SpeakerNotesSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SpeakerNotesTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SpeakerOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SpeakerPhone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SpeakerPhoneOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SpeakerPhoneRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SpeakerPhoneSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SpeakerPhoneTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SpeakerRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SpeakerSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SpeakerTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Spellcheck' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SpellcheckOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SpellcheckRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SpellcheckSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SpellcheckTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StarBorder' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StarBorderOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StarBorderRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StarBorderSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StarBorderTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StarHalf' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StarHalfOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StarHalfRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StarHalfSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StarHalfTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Star' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StarOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StarRate' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StarRateOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StarRateRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StarRateSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StarRateTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StarRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StarSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Stars' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StarsOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StarsRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StarsSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StarsTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StarTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StayCurrentLandscape' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StayCurrentLandscapeOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StayCurrentLandscapeRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StayCurrentLandscapeSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StayCurrentLandscapeTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StayCurrentPortrait' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StayCurrentPortraitOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StayCurrentPortraitRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StayCurrentPortraitSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StayCurrentPortraitTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StayPrimaryLandscape' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StayPrimaryLandscapeOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StayPrimaryLandscapeRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StayPrimaryLandscapeSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StayPrimaryLandscapeTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StayPrimaryPortrait' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StayPrimaryPortraitOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StayPrimaryPortraitRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StayPrimaryPortraitSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StayPrimaryPortraitTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Stop' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StopOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StopRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StopScreenShare' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StopScreenShareOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StopScreenShareRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StopScreenShareSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StopScreenShareTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StopSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StopTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Storage' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StorageOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StorageRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StorageSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StorageTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Store' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StoreMallDirectory' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StoreMallDirectoryOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StoreMallDirectoryRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StoreMallDirectorySharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StoreMallDirectoryTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StoreOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StoreRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StoreSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StoreTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Straighten' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StraightenOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StraightenRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StraightenSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StraightenTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Streetview' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StreetviewOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StreetviewRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StreetviewSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StreetviewTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StrikethroughS' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StrikethroughSOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StrikethroughSRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StrikethroughSSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StrikethroughSTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Style' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StyleOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StyleRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StyleSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/StyleTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SubdirectoryArrowLeft' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SubdirectoryArrowLeftOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SubdirectoryArrowLeftRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SubdirectoryArrowLeftSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SubdirectoryArrowLeftTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SubdirectoryArrowRight' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SubdirectoryArrowRightOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SubdirectoryArrowRightRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SubdirectoryArrowRightSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SubdirectoryArrowRightTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Subject' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SubjectOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SubjectRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SubjectSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SubjectTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Subscriptions' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SubscriptionsOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SubscriptionsRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SubscriptionsSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SubscriptionsTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Subtitles' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SubtitlesOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SubtitlesRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SubtitlesSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SubtitlesTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Subway' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SubwayOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SubwayRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SubwaySharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SubwayTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SupervisedUserCircle' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SupervisedUserCircleOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SupervisedUserCircleRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SupervisedUserCircleSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SupervisedUserCircleTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SupervisorAccount' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SupervisorAccountOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SupervisorAccountRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SupervisorAccountSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SupervisorAccountTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SurroundSound' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SurroundSoundOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SurroundSoundRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SurroundSoundSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SurroundSoundTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SwapCalls' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SwapCallsOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SwapCallsRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SwapCallsSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SwapCallsTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SwapHoriz' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SwapHorizontalCircle' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SwapHorizontalCircleOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SwapHorizontalCircleRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SwapHorizontalCircleSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SwapHorizontalCircleTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SwapHorizOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SwapHorizRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SwapHorizSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SwapHorizTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SwapVerticalCircle' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SwapVerticalCircleOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SwapVerticalCircleRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SwapVerticalCircleSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SwapVerticalCircleTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SwapVert' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SwapVertOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SwapVertRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SwapVertSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SwapVertTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SwitchCamera' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SwitchCameraOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SwitchCameraRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SwitchCameraSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SwitchCameraTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SwitchVideo' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SwitchVideoOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SwitchVideoRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SwitchVideoSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SwitchVideoTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SyncDisabled' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SyncDisabledOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SyncDisabledRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SyncDisabledSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SyncDisabledTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Sync' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SyncOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SyncProblem' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SyncProblemOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SyncProblemRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SyncProblemSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SyncProblemTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SyncRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SyncSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SyncTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SystemUpdate' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SystemUpdateOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SystemUpdateRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SystemUpdateSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/SystemUpdateTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Tab' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TableChart' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TableChartOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TableChartRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TableChartSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TableChartTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TabletAndroid' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TabletAndroidOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TabletAndroidRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TabletAndroidSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TabletAndroidTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Tablet' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TabletMac' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TabletMacOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TabletMacRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TabletMacSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TabletMacTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TabletOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TabletRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TabletSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TabletTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TabOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TabRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TabSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TabTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TabUnselected' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TabUnselectedOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TabUnselectedRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TabUnselectedSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TabUnselectedTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TagFaces' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TagFacesOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TagFacesRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TagFacesSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TagFacesTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TapAndPlay' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TapAndPlayOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TapAndPlayRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TapAndPlaySharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TapAndPlayTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Terrain' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TerrainOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TerrainRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TerrainSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TerrainTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TextFields' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TextFieldsOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TextFieldsRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TextFieldsSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TextFieldsTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TextFormat' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TextFormatOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TextFormatRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TextFormatSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TextFormatTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TextRotateUp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TextRotateUpOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TextRotateUpRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TextRotateUpSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TextRotateUpTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TextRotateVertical' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TextRotateVerticalOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TextRotateVerticalRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TextRotateVerticalSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TextRotateVerticalTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TextRotationDown' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TextRotationDownOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TextRotationDownRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TextRotationDownSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TextRotationDownTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TextRotationNone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TextRotationNoneOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TextRotationNoneRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TextRotationNoneSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TextRotationNoneTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Textsms' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TextsmsOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TextsmsRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TextsmsSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TextsmsTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Texture' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TextureOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TextureRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TextureSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TextureTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Theaters' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TheatersOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TheatersRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TheatersSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TheatersTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ThreeDRotation' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ThreeDRotationOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ThreeDRotationRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ThreeDRotationSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ThreeDRotationTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ThreeSixty' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ThreeSixtyOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ThreeSixtyRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ThreeSixtySharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ThreeSixtyTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ThumbDownAlt' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ThumbDownAltOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ThumbDownAltRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ThumbDownAltSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ThumbDownAltTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ThumbDown' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ThumbDownOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ThumbDownRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ThumbDownSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ThumbDownTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ThumbsUpDown' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ThumbsUpDownOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ThumbsUpDownRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ThumbsUpDownSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ThumbsUpDownTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ThumbUpAlt' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ThumbUpAltOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ThumbUpAltRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ThumbUpAltSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ThumbUpAltTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ThumbUp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ThumbUpOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ThumbUpRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ThumbUpSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ThumbUpTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Timelapse' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TimelapseOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TimelapseRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TimelapseSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TimelapseTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Timeline' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TimelineOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TimelineRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TimelineSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TimelineTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Timer10' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Timer10Outlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Timer10Rounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Timer10Sharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Timer10TwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Timer3' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Timer3Outlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Timer3Rounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Timer3Sharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Timer3TwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Timer' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TimerOff' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TimerOffOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TimerOffRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TimerOffSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TimerOffTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TimerOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TimerRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TimerSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TimerTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TimeToLeave' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TimeToLeaveOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TimeToLeaveRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TimeToLeaveSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TimeToLeaveTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Title' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TitleOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TitleRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TitleSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TitleTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Toc' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TocOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TocRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TocSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TocTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Today' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TodayOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TodayRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TodaySharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TodayTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ToggleOff' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ToggleOffOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ToggleOffRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ToggleOffSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ToggleOffTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ToggleOn' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ToggleOnOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ToggleOnRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ToggleOnSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ToggleOnTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Toll' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TollOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TollRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TollSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TollTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Tonality' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TonalityOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TonalityRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TonalitySharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TonalityTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TouchApp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TouchAppOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TouchAppRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TouchAppSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TouchAppTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Toys' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ToysOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ToysRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ToysSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ToysTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TrackChanges' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TrackChangesOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TrackChangesRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TrackChangesSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TrackChangesTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Traffic' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TrafficOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TrafficRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TrafficSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TrafficTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Train' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TrainOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TrainRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TrainSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TrainTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Tram' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TramOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TramRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TramSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TramTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TransferWithinAStation' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TransferWithinAStationOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TransferWithinAStationRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TransferWithinAStationSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TransferWithinAStationTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Transform' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TransformOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TransformRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TransformSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TransformTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TransitEnterexit' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TransitEnterexitOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TransitEnterexitRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TransitEnterexitSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TransitEnterexitTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Translate' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TranslateOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TranslateRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TranslateSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TranslateTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TrendingDown' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TrendingDownOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TrendingDownRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TrendingDownSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TrendingDownTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TrendingFlat' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TrendingFlatOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TrendingFlatRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TrendingFlatSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TrendingFlatTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TrendingUp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TrendingUpOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TrendingUpRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TrendingUpSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TrendingUpTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TripOrigin' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TripOriginOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TripOriginRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TripOriginSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TripOriginTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Tune' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TuneOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TuneRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TuneSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TuneTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TurnedIn' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TurnedInNot' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TurnedInNotOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TurnedInNotRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TurnedInNotSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TurnedInNotTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TurnedInOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TurnedInRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TurnedInSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TurnedInTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Tv' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TvOff' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TvOffOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TvOffRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TvOffSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TvOffTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TvOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TvRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TvSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/TvTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Unarchive' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/UnarchiveOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/UnarchiveRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/UnarchiveSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/UnarchiveTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Undo' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/UndoOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/UndoRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/UndoSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/UndoTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/UnfoldLess' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/UnfoldLessOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/UnfoldLessRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/UnfoldLessSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/UnfoldLessTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/UnfoldMore' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/UnfoldMoreOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/UnfoldMoreRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/UnfoldMoreSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/UnfoldMoreTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Unsubscribe' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/UnsubscribeOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/UnsubscribeRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/UnsubscribeSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/UnsubscribeTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Update' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/UpdateOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/UpdateRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/UpdateSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/UpdateTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Usb' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/UsbOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/UsbRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/UsbSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/UsbTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VerifiedUser' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VerifiedUserOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VerifiedUserRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VerifiedUserSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VerifiedUserTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VerticalAlignBottom' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VerticalAlignBottomOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VerticalAlignBottomRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VerticalAlignBottomSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VerticalAlignBottomTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VerticalAlignCenter' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VerticalAlignCenterOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VerticalAlignCenterRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VerticalAlignCenterSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VerticalAlignCenterTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VerticalAlignTop' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VerticalAlignTopOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VerticalAlignTopRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VerticalAlignTopSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VerticalAlignTopTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VerticalSplit' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VerticalSplitOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VerticalSplitRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VerticalSplitSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VerticalSplitTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Vibration' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VibrationOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VibrationRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VibrationSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VibrationTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VideoCall' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VideoCallOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VideoCallRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VideoCallSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VideoCallTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Videocam' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VideocamOff' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VideocamOffOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VideocamOffRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VideocamOffSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VideocamOffTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VideocamOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VideocamRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VideocamSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VideocamTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VideogameAsset' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VideogameAssetOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VideogameAssetRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VideogameAssetSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VideogameAssetTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VideoLabel' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VideoLabelOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VideoLabelRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VideoLabelSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VideoLabelTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VideoLibrary' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VideoLibraryOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VideoLibraryRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VideoLibrarySharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VideoLibraryTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewAgenda' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewAgendaOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewAgendaRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewAgendaSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewAgendaTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewArray' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewArrayOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewArrayRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewArraySharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewArrayTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewCarousel' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewCarouselOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewCarouselRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewCarouselSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewCarouselTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewColumn' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewColumnOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewColumnRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewColumnSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewColumnTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewComfy' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewComfyOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewComfyRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewComfySharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewComfyTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewCompact' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewCompactOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewCompactRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewCompactSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewCompactTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewDay' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewDayOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewDayRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewDaySharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewDayTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewHeadline' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewHeadlineOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewHeadlineRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewHeadlineSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewHeadlineTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewList' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewListOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewListRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewListSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewListTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewModule' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewModuleOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewModuleRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewModuleSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewModuleTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewQuilt' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewQuiltOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewQuiltRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewQuiltSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewQuiltTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewStream' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewStreamOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewStreamRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewStreamSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewStreamTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewWeek' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewWeekOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewWeekRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewWeekSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ViewWeekTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Vignette' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VignetteOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VignetteRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VignetteSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VignetteTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Visibility' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VisibilityOff' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VisibilityOffOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VisibilityOffRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VisibilityOffSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VisibilityOffTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VisibilityOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VisibilityRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VisibilitySharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VisibilityTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VoiceChat' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VoiceChatOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VoiceChatRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VoiceChatSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VoiceChatTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Voicemail' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VoicemailOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VoicemailRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VoicemailSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VoicemailTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VoiceOverOff' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VoiceOverOffOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VoiceOverOffRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VoiceOverOffSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VoiceOverOffTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VolumeDown' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VolumeDownOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VolumeDownRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VolumeDownSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VolumeDownTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VolumeMute' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VolumeMuteOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VolumeMuteRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VolumeMuteSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VolumeMuteTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VolumeOff' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VolumeOffOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VolumeOffRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VolumeOffSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VolumeOffTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VolumeUp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VolumeUpOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VolumeUpRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VolumeUpSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VolumeUpTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VpnKey' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VpnKeyOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VpnKeyRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VpnKeySharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VpnKeyTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VpnLock' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VpnLockOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VpnLockRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VpnLockSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/VpnLockTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Wallpaper' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WallpaperOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WallpaperRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WallpaperSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WallpaperTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Warning' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WarningOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WarningRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WarningSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WarningTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Watch' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WatchLater' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WatchLaterOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WatchLaterRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WatchLaterSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WatchLaterTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WatchOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WatchRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WatchSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WatchTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Waves' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WavesOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WavesRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WavesSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WavesTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WbAuto' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WbAutoOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WbAutoRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WbAutoSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WbAutoTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WbCloudy' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WbCloudyOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WbCloudyRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WbCloudySharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WbCloudyTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WbIncandescent' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WbIncandescentOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WbIncandescentRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WbIncandescentSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WbIncandescentTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WbIridescent' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WbIridescentOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WbIridescentRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WbIridescentSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WbIridescentTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WbSunny' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WbSunnyOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WbSunnyRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WbSunnySharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WbSunnyTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Wc' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WcOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WcRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WcSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WcTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WebAsset' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WebAssetOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WebAssetRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WebAssetSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WebAssetTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Web' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WebOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WebRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WebSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WebTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Weekend' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WeekendOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WeekendRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WeekendSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WeekendTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Whatshot' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WhatshotOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WhatshotRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WhatshotSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WhatshotTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WhereToVote' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WhereToVoteOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WhereToVoteRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WhereToVoteSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WhereToVoteTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Widgets' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WidgetsOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WidgetsRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WidgetsSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WidgetsTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Wifi' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WifiLock' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WifiLockOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WifiLockRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WifiLockSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WifiLockTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WifiOff' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WifiOffOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WifiOffRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WifiOffSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WifiOffTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WifiOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WifiRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WifiSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WifiTethering' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WifiTetheringOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WifiTetheringRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WifiTetheringSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WifiTetheringTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WifiTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/Work' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WorkOff' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WorkOffOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WorkOffRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WorkOffSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WorkOffTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WorkOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WorkOutline' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WorkOutlineOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WorkOutlineRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WorkOutlineSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WorkOutlineTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WorkRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WorkSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WorkTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WrapText' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WrapTextOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WrapTextRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WrapTextSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/WrapTextTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/YoutubeSearchedFor' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/YoutubeSearchedForOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/YoutubeSearchedForRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/YoutubeSearchedForSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/YoutubeSearchedForTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ZoomIn' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ZoomInOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ZoomInRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ZoomInSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ZoomInTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ZoomOut' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ZoomOutMap' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ZoomOutMapOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ZoomOutMapRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ZoomOutMapSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ZoomOutMapTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ZoomOutOutlined' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ZoomOutRounded' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ZoomOutSharp' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} -declare module '@material-ui/icons/ZoomOutTwoTone' { - import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; - declare export default SvgIcon; -} - -declare module '@material-ui/icons' { - declare export { - default as AccessAlarm, - } from '@material-ui/icons/AccessAlarm'; - declare export { - default as AccessAlarmOutlined, - } from '@material-ui/icons/AccessAlarmOutlined'; - declare export { - default as AccessAlarmRounded, - } from '@material-ui/icons/AccessAlarmRounded'; - declare export { - default as AccessAlarmSharp, - } from '@material-ui/icons/AccessAlarmSharp'; - declare export { - default as AccessAlarms, - } from '@material-ui/icons/AccessAlarms'; - declare export { - default as AccessAlarmsOutlined, - } from '@material-ui/icons/AccessAlarmsOutlined'; - declare export { - default as AccessAlarmsRounded, - } from '@material-ui/icons/AccessAlarmsRounded'; - declare export { - default as AccessAlarmsSharp, - } from '@material-ui/icons/AccessAlarmsSharp'; - declare export { - default as AccessAlarmsTwoTone, - } from '@material-ui/icons/AccessAlarmsTwoTone'; - declare export { - default as AccessAlarmTwoTone, - } from '@material-ui/icons/AccessAlarmTwoTone'; - declare export { - default as Accessibility, - } from '@material-ui/icons/Accessibility'; - declare export { - default as AccessibilityNew, - } from '@material-ui/icons/AccessibilityNew'; - declare export { - default as AccessibilityNewOutlined, - } from '@material-ui/icons/AccessibilityNewOutlined'; - declare export { - default as AccessibilityNewRounded, - } from '@material-ui/icons/AccessibilityNewRounded'; - declare export { - default as AccessibilityNewSharp, - } from '@material-ui/icons/AccessibilityNewSharp'; - declare export { - default as AccessibilityNewTwoTone, - } from '@material-ui/icons/AccessibilityNewTwoTone'; - declare export { - default as AccessibilityOutlined, - } from '@material-ui/icons/AccessibilityOutlined'; - declare export { - default as AccessibilityRounded, - } from '@material-ui/icons/AccessibilityRounded'; - declare export { - default as AccessibilitySharp, - } from '@material-ui/icons/AccessibilitySharp'; - declare export { - default as AccessibilityTwoTone, - } from '@material-ui/icons/AccessibilityTwoTone'; - declare export { - default as AccessibleForward, - } from '@material-ui/icons/AccessibleForward'; - declare export { - default as AccessibleForwardOutlined, - } from '@material-ui/icons/AccessibleForwardOutlined'; - declare export { - default as AccessibleForwardRounded, - } from '@material-ui/icons/AccessibleForwardRounded'; - declare export { - default as AccessibleForwardSharp, - } from '@material-ui/icons/AccessibleForwardSharp'; - declare export { - default as AccessibleForwardTwoTone, - } from '@material-ui/icons/AccessibleForwardTwoTone'; - declare export { default as Accessible } from '@material-ui/icons/Accessible'; - declare export { - default as AccessibleOutlined, - } from '@material-ui/icons/AccessibleOutlined'; - declare export { - default as AccessibleRounded, - } from '@material-ui/icons/AccessibleRounded'; - declare export { - default as AccessibleSharp, - } from '@material-ui/icons/AccessibleSharp'; - declare export { - default as AccessibleTwoTone, - } from '@material-ui/icons/AccessibleTwoTone'; - declare export { default as AccessTime } from '@material-ui/icons/AccessTime'; - declare export { - default as AccessTimeOutlined, - } from '@material-ui/icons/AccessTimeOutlined'; - declare export { - default as AccessTimeRounded, - } from '@material-ui/icons/AccessTimeRounded'; - declare export { - default as AccessTimeSharp, - } from '@material-ui/icons/AccessTimeSharp'; - declare export { - default as AccessTimeTwoTone, - } from '@material-ui/icons/AccessTimeTwoTone'; - declare export { - default as AccountBalance, - } from '@material-ui/icons/AccountBalance'; - declare export { - default as AccountBalanceOutlined, - } from '@material-ui/icons/AccountBalanceOutlined'; - declare export { - default as AccountBalanceRounded, - } from '@material-ui/icons/AccountBalanceRounded'; - declare export { - default as AccountBalanceSharp, - } from '@material-ui/icons/AccountBalanceSharp'; - declare export { - default as AccountBalanceTwoTone, - } from '@material-ui/icons/AccountBalanceTwoTone'; - declare export { - default as AccountBalanceWallet, - } from '@material-ui/icons/AccountBalanceWallet'; - declare export { - default as AccountBalanceWalletOutlined, - } from '@material-ui/icons/AccountBalanceWalletOutlined'; - declare export { - default as AccountBalanceWalletRounded, - } from '@material-ui/icons/AccountBalanceWalletRounded'; - declare export { - default as AccountBalanceWalletSharp, - } from '@material-ui/icons/AccountBalanceWalletSharp'; - declare export { - default as AccountBalanceWalletTwoTone, - } from '@material-ui/icons/AccountBalanceWalletTwoTone'; - declare export { default as AccountBox } from '@material-ui/icons/AccountBox'; - declare export { - default as AccountBoxOutlined, - } from '@material-ui/icons/AccountBoxOutlined'; - declare export { - default as AccountBoxRounded, - } from '@material-ui/icons/AccountBoxRounded'; - declare export { - default as AccountBoxSharp, - } from '@material-ui/icons/AccountBoxSharp'; - declare export { - default as AccountBoxTwoTone, - } from '@material-ui/icons/AccountBoxTwoTone'; - declare export { - default as AccountCircle, - } from '@material-ui/icons/AccountCircle'; - declare export { - default as AccountCircleOutlined, - } from '@material-ui/icons/AccountCircleOutlined'; - declare export { - default as AccountCircleRounded, - } from '@material-ui/icons/AccountCircleRounded'; - declare export { - default as AccountCircleSharp, - } from '@material-ui/icons/AccountCircleSharp'; - declare export { - default as AccountCircleTwoTone, - } from '@material-ui/icons/AccountCircleTwoTone'; - declare export { default as AcUnit } from '@material-ui/icons/AcUnit'; - declare export { - default as AcUnitOutlined, - } from '@material-ui/icons/AcUnitOutlined'; - declare export { - default as AcUnitRounded, - } from '@material-ui/icons/AcUnitRounded'; - declare export { - default as AcUnitSharp, - } from '@material-ui/icons/AcUnitSharp'; - declare export { - default as AcUnitTwoTone, - } from '@material-ui/icons/AcUnitTwoTone'; - declare export { default as Adb } from '@material-ui/icons/Adb'; - declare export { - default as AdbOutlined, - } from '@material-ui/icons/AdbOutlined'; - declare export { default as AdbRounded } from '@material-ui/icons/AdbRounded'; - declare export { default as AdbSharp } from '@material-ui/icons/AdbSharp'; - declare export { default as AdbTwoTone } from '@material-ui/icons/AdbTwoTone'; - declare export { default as AddAlarm } from '@material-ui/icons/AddAlarm'; - declare export { - default as AddAlarmOutlined, - } from '@material-ui/icons/AddAlarmOutlined'; - declare export { - default as AddAlarmRounded, - } from '@material-ui/icons/AddAlarmRounded'; - declare export { - default as AddAlarmSharp, - } from '@material-ui/icons/AddAlarmSharp'; - declare export { - default as AddAlarmTwoTone, - } from '@material-ui/icons/AddAlarmTwoTone'; - declare export { default as AddAlert } from '@material-ui/icons/AddAlert'; - declare export { - default as AddAlertOutlined, - } from '@material-ui/icons/AddAlertOutlined'; - declare export { - default as AddAlertRounded, - } from '@material-ui/icons/AddAlertRounded'; - declare export { - default as AddAlertSharp, - } from '@material-ui/icons/AddAlertSharp'; - declare export { - default as AddAlertTwoTone, - } from '@material-ui/icons/AddAlertTwoTone'; - declare export { default as AddAPhoto } from '@material-ui/icons/AddAPhoto'; - declare export { - default as AddAPhotoOutlined, - } from '@material-ui/icons/AddAPhotoOutlined'; - declare export { - default as AddAPhotoRounded, - } from '@material-ui/icons/AddAPhotoRounded'; - declare export { - default as AddAPhotoSharp, - } from '@material-ui/icons/AddAPhotoSharp'; - declare export { - default as AddAPhotoTwoTone, - } from '@material-ui/icons/AddAPhotoTwoTone'; - declare export { default as AddBox } from '@material-ui/icons/AddBox'; - declare export { - default as AddBoxOutlined, - } from '@material-ui/icons/AddBoxOutlined'; - declare export { - default as AddBoxRounded, - } from '@material-ui/icons/AddBoxRounded'; - declare export { - default as AddBoxSharp, - } from '@material-ui/icons/AddBoxSharp'; - declare export { - default as AddBoxTwoTone, - } from '@material-ui/icons/AddBoxTwoTone'; - declare export { default as AddCircle } from '@material-ui/icons/AddCircle'; - declare export { - default as AddCircleOutlined, - } from '@material-ui/icons/AddCircleOutlined'; - declare export { - default as AddCircleOutline, - } from '@material-ui/icons/AddCircleOutline'; - declare export { - default as AddCircleOutlineOutlined, - } from '@material-ui/icons/AddCircleOutlineOutlined'; - declare export { - default as AddCircleOutlineRounded, - } from '@material-ui/icons/AddCircleOutlineRounded'; - declare export { - default as AddCircleOutlineSharp, - } from '@material-ui/icons/AddCircleOutlineSharp'; - declare export { - default as AddCircleOutlineTwoTone, - } from '@material-ui/icons/AddCircleOutlineTwoTone'; - declare export { - default as AddCircleRounded, - } from '@material-ui/icons/AddCircleRounded'; - declare export { - default as AddCircleSharp, - } from '@material-ui/icons/AddCircleSharp'; - declare export { - default as AddCircleTwoTone, - } from '@material-ui/icons/AddCircleTwoTone'; - declare export { default as AddComment } from '@material-ui/icons/AddComment'; - declare export { - default as AddCommentOutlined, - } from '@material-ui/icons/AddCommentOutlined'; - declare export { - default as AddCommentRounded, - } from '@material-ui/icons/AddCommentRounded'; - declare export { - default as AddCommentSharp, - } from '@material-ui/icons/AddCommentSharp'; - declare export { - default as AddCommentTwoTone, - } from '@material-ui/icons/AddCommentTwoTone'; - declare export { default as Add } from '@material-ui/icons/Add'; - declare export { - default as AddLocation, - } from '@material-ui/icons/AddLocation'; - declare export { - default as AddLocationOutlined, - } from '@material-ui/icons/AddLocationOutlined'; - declare export { - default as AddLocationRounded, - } from '@material-ui/icons/AddLocationRounded'; - declare export { - default as AddLocationSharp, - } from '@material-ui/icons/AddLocationSharp'; - declare export { - default as AddLocationTwoTone, - } from '@material-ui/icons/AddLocationTwoTone'; - declare export { - default as AddOutlined, - } from '@material-ui/icons/AddOutlined'; - declare export { - default as AddPhotoAlternate, - } from '@material-ui/icons/AddPhotoAlternate'; - declare export { - default as AddPhotoAlternateOutlined, - } from '@material-ui/icons/AddPhotoAlternateOutlined'; - declare export { - default as AddPhotoAlternateRounded, - } from '@material-ui/icons/AddPhotoAlternateRounded'; - declare export { - default as AddPhotoAlternateSharp, - } from '@material-ui/icons/AddPhotoAlternateSharp'; - declare export { - default as AddPhotoAlternateTwoTone, - } from '@material-ui/icons/AddPhotoAlternateTwoTone'; - declare export { default as AddRounded } from '@material-ui/icons/AddRounded'; - declare export { default as AddSharp } from '@material-ui/icons/AddSharp'; - declare export { - default as AddShoppingCart, - } from '@material-ui/icons/AddShoppingCart'; - declare export { - default as AddShoppingCartOutlined, - } from '@material-ui/icons/AddShoppingCartOutlined'; - declare export { - default as AddShoppingCartRounded, - } from '@material-ui/icons/AddShoppingCartRounded'; - declare export { - default as AddShoppingCartSharp, - } from '@material-ui/icons/AddShoppingCartSharp'; - declare export { - default as AddShoppingCartTwoTone, - } from '@material-ui/icons/AddShoppingCartTwoTone'; - declare export { - default as AddToHomeScreen, - } from '@material-ui/icons/AddToHomeScreen'; - declare export { - default as AddToHomeScreenOutlined, - } from '@material-ui/icons/AddToHomeScreenOutlined'; - declare export { - default as AddToHomeScreenRounded, - } from '@material-ui/icons/AddToHomeScreenRounded'; - declare export { - default as AddToHomeScreenSharp, - } from '@material-ui/icons/AddToHomeScreenSharp'; - declare export { - default as AddToHomeScreenTwoTone, - } from '@material-ui/icons/AddToHomeScreenTwoTone'; - declare export { - default as AddToPhotos, - } from '@material-ui/icons/AddToPhotos'; - declare export { - default as AddToPhotosOutlined, - } from '@material-ui/icons/AddToPhotosOutlined'; - declare export { - default as AddToPhotosRounded, - } from '@material-ui/icons/AddToPhotosRounded'; - declare export { - default as AddToPhotosSharp, - } from '@material-ui/icons/AddToPhotosSharp'; - declare export { - default as AddToPhotosTwoTone, - } from '@material-ui/icons/AddToPhotosTwoTone'; - declare export { default as AddToQueue } from '@material-ui/icons/AddToQueue'; - declare export { - default as AddToQueueOutlined, - } from '@material-ui/icons/AddToQueueOutlined'; - declare export { - default as AddToQueueRounded, - } from '@material-ui/icons/AddToQueueRounded'; - declare export { - default as AddToQueueSharp, - } from '@material-ui/icons/AddToQueueSharp'; - declare export { - default as AddToQueueTwoTone, - } from '@material-ui/icons/AddToQueueTwoTone'; - declare export { default as AddTwoTone } from '@material-ui/icons/AddTwoTone'; - declare export { default as Adjust } from '@material-ui/icons/Adjust'; - declare export { - default as AdjustOutlined, - } from '@material-ui/icons/AdjustOutlined'; - declare export { - default as AdjustRounded, - } from '@material-ui/icons/AdjustRounded'; - declare export { - default as AdjustSharp, - } from '@material-ui/icons/AdjustSharp'; - declare export { - default as AdjustTwoTone, - } from '@material-ui/icons/AdjustTwoTone'; - declare export { - default as AirlineSeatFlatAngled, - } from '@material-ui/icons/AirlineSeatFlatAngled'; - declare export { - default as AirlineSeatFlatAngledOutlined, - } from '@material-ui/icons/AirlineSeatFlatAngledOutlined'; - declare export { - default as AirlineSeatFlatAngledRounded, - } from '@material-ui/icons/AirlineSeatFlatAngledRounded'; - declare export { - default as AirlineSeatFlatAngledSharp, - } from '@material-ui/icons/AirlineSeatFlatAngledSharp'; - declare export { - default as AirlineSeatFlatAngledTwoTone, - } from '@material-ui/icons/AirlineSeatFlatAngledTwoTone'; - declare export { - default as AirlineSeatFlat, - } from '@material-ui/icons/AirlineSeatFlat'; - declare export { - default as AirlineSeatFlatOutlined, - } from '@material-ui/icons/AirlineSeatFlatOutlined'; - declare export { - default as AirlineSeatFlatRounded, - } from '@material-ui/icons/AirlineSeatFlatRounded'; - declare export { - default as AirlineSeatFlatSharp, - } from '@material-ui/icons/AirlineSeatFlatSharp'; - declare export { - default as AirlineSeatFlatTwoTone, - } from '@material-ui/icons/AirlineSeatFlatTwoTone'; - declare export { - default as AirlineSeatIndividualSuite, - } from '@material-ui/icons/AirlineSeatIndividualSuite'; - declare export { - default as AirlineSeatIndividualSuiteOutlined, - } from '@material-ui/icons/AirlineSeatIndividualSuiteOutlined'; - declare export { - default as AirlineSeatIndividualSuiteRounded, - } from '@material-ui/icons/AirlineSeatIndividualSuiteRounded'; - declare export { - default as AirlineSeatIndividualSuiteSharp, - } from '@material-ui/icons/AirlineSeatIndividualSuiteSharp'; - declare export { - default as AirlineSeatIndividualSuiteTwoTone, - } from '@material-ui/icons/AirlineSeatIndividualSuiteTwoTone'; - declare export { - default as AirlineSeatLegroomExtra, - } from '@material-ui/icons/AirlineSeatLegroomExtra'; - declare export { - default as AirlineSeatLegroomExtraOutlined, - } from '@material-ui/icons/AirlineSeatLegroomExtraOutlined'; - declare export { - default as AirlineSeatLegroomExtraRounded, - } from '@material-ui/icons/AirlineSeatLegroomExtraRounded'; - declare export { - default as AirlineSeatLegroomExtraSharp, - } from '@material-ui/icons/AirlineSeatLegroomExtraSharp'; - declare export { - default as AirlineSeatLegroomExtraTwoTone, - } from '@material-ui/icons/AirlineSeatLegroomExtraTwoTone'; - declare export { - default as AirlineSeatLegroomNormal, - } from '@material-ui/icons/AirlineSeatLegroomNormal'; - declare export { - default as AirlineSeatLegroomNormalOutlined, - } from '@material-ui/icons/AirlineSeatLegroomNormalOutlined'; - declare export { - default as AirlineSeatLegroomNormalRounded, - } from '@material-ui/icons/AirlineSeatLegroomNormalRounded'; - declare export { - default as AirlineSeatLegroomNormalSharp, - } from '@material-ui/icons/AirlineSeatLegroomNormalSharp'; - declare export { - default as AirlineSeatLegroomNormalTwoTone, - } from '@material-ui/icons/AirlineSeatLegroomNormalTwoTone'; - declare export { - default as AirlineSeatLegroomReduced, - } from '@material-ui/icons/AirlineSeatLegroomReduced'; - declare export { - default as AirlineSeatLegroomReducedOutlined, - } from '@material-ui/icons/AirlineSeatLegroomReducedOutlined'; - declare export { - default as AirlineSeatLegroomReducedRounded, - } from '@material-ui/icons/AirlineSeatLegroomReducedRounded'; - declare export { - default as AirlineSeatLegroomReducedSharp, - } from '@material-ui/icons/AirlineSeatLegroomReducedSharp'; - declare export { - default as AirlineSeatLegroomReducedTwoTone, - } from '@material-ui/icons/AirlineSeatLegroomReducedTwoTone'; - declare export { - default as AirlineSeatReclineExtra, - } from '@material-ui/icons/AirlineSeatReclineExtra'; - declare export { - default as AirlineSeatReclineExtraOutlined, - } from '@material-ui/icons/AirlineSeatReclineExtraOutlined'; - declare export { - default as AirlineSeatReclineExtraRounded, - } from '@material-ui/icons/AirlineSeatReclineExtraRounded'; - declare export { - default as AirlineSeatReclineExtraSharp, - } from '@material-ui/icons/AirlineSeatReclineExtraSharp'; - declare export { - default as AirlineSeatReclineExtraTwoTone, - } from '@material-ui/icons/AirlineSeatReclineExtraTwoTone'; - declare export { - default as AirlineSeatReclineNormal, - } from '@material-ui/icons/AirlineSeatReclineNormal'; - declare export { - default as AirlineSeatReclineNormalOutlined, - } from '@material-ui/icons/AirlineSeatReclineNormalOutlined'; - declare export { - default as AirlineSeatReclineNormalRounded, - } from '@material-ui/icons/AirlineSeatReclineNormalRounded'; - declare export { - default as AirlineSeatReclineNormalSharp, - } from '@material-ui/icons/AirlineSeatReclineNormalSharp'; - declare export { - default as AirlineSeatReclineNormalTwoTone, - } from '@material-ui/icons/AirlineSeatReclineNormalTwoTone'; - declare export { - default as AirplanemodeActive, - } from '@material-ui/icons/AirplanemodeActive'; - declare export { - default as AirplanemodeActiveOutlined, - } from '@material-ui/icons/AirplanemodeActiveOutlined'; - declare export { - default as AirplanemodeActiveRounded, - } from '@material-ui/icons/AirplanemodeActiveRounded'; - declare export { - default as AirplanemodeActiveSharp, - } from '@material-ui/icons/AirplanemodeActiveSharp'; - declare export { - default as AirplanemodeActiveTwoTone, - } from '@material-ui/icons/AirplanemodeActiveTwoTone'; - declare export { - default as AirplanemodeInactive, - } from '@material-ui/icons/AirplanemodeInactive'; - declare export { - default as AirplanemodeInactiveOutlined, - } from '@material-ui/icons/AirplanemodeInactiveOutlined'; - declare export { - default as AirplanemodeInactiveRounded, - } from '@material-ui/icons/AirplanemodeInactiveRounded'; - declare export { - default as AirplanemodeInactiveSharp, - } from '@material-ui/icons/AirplanemodeInactiveSharp'; - declare export { - default as AirplanemodeInactiveTwoTone, - } from '@material-ui/icons/AirplanemodeInactiveTwoTone'; - declare export { default as Airplay } from '@material-ui/icons/Airplay'; - declare export { - default as AirplayOutlined, - } from '@material-ui/icons/AirplayOutlined'; - declare export { - default as AirplayRounded, - } from '@material-ui/icons/AirplayRounded'; - declare export { - default as AirplaySharp, - } from '@material-ui/icons/AirplaySharp'; - declare export { - default as AirplayTwoTone, - } from '@material-ui/icons/AirplayTwoTone'; - declare export { - default as AirportShuttle, - } from '@material-ui/icons/AirportShuttle'; - declare export { - default as AirportShuttleOutlined, - } from '@material-ui/icons/AirportShuttleOutlined'; - declare export { - default as AirportShuttleRounded, - } from '@material-ui/icons/AirportShuttleRounded'; - declare export { - default as AirportShuttleSharp, - } from '@material-ui/icons/AirportShuttleSharp'; - declare export { - default as AirportShuttleTwoTone, - } from '@material-ui/icons/AirportShuttleTwoTone'; - declare export { default as AlarmAdd } from '@material-ui/icons/AlarmAdd'; - declare export { - default as AlarmAddOutlined, - } from '@material-ui/icons/AlarmAddOutlined'; - declare export { - default as AlarmAddRounded, - } from '@material-ui/icons/AlarmAddRounded'; - declare export { - default as AlarmAddSharp, - } from '@material-ui/icons/AlarmAddSharp'; - declare export { - default as AlarmAddTwoTone, - } from '@material-ui/icons/AlarmAddTwoTone'; - declare export { default as Alarm } from '@material-ui/icons/Alarm'; - declare export { default as AlarmOff } from '@material-ui/icons/AlarmOff'; - declare export { - default as AlarmOffOutlined, - } from '@material-ui/icons/AlarmOffOutlined'; - declare export { - default as AlarmOffRounded, - } from '@material-ui/icons/AlarmOffRounded'; - declare export { - default as AlarmOffSharp, - } from '@material-ui/icons/AlarmOffSharp'; - declare export { - default as AlarmOffTwoTone, - } from '@material-ui/icons/AlarmOffTwoTone'; - declare export { default as AlarmOn } from '@material-ui/icons/AlarmOn'; - declare export { - default as AlarmOnOutlined, - } from '@material-ui/icons/AlarmOnOutlined'; - declare export { - default as AlarmOnRounded, - } from '@material-ui/icons/AlarmOnRounded'; - declare export { - default as AlarmOnSharp, - } from '@material-ui/icons/AlarmOnSharp'; - declare export { - default as AlarmOnTwoTone, - } from '@material-ui/icons/AlarmOnTwoTone'; - declare export { - default as AlarmOutlined, - } from '@material-ui/icons/AlarmOutlined'; - declare export { - default as AlarmRounded, - } from '@material-ui/icons/AlarmRounded'; - declare export { default as AlarmSharp } from '@material-ui/icons/AlarmSharp'; - declare export { - default as AlarmTwoTone, - } from '@material-ui/icons/AlarmTwoTone'; - declare export { default as Album } from '@material-ui/icons/Album'; - declare export { - default as AlbumOutlined, - } from '@material-ui/icons/AlbumOutlined'; - declare export { - default as AlbumRounded, - } from '@material-ui/icons/AlbumRounded'; - declare export { default as AlbumSharp } from '@material-ui/icons/AlbumSharp'; - declare export { - default as AlbumTwoTone, - } from '@material-ui/icons/AlbumTwoTone'; - declare export { default as AllInbox } from '@material-ui/icons/AllInbox'; - declare export { - default as AllInboxOutlined, - } from '@material-ui/icons/AllInboxOutlined'; - declare export { - default as AllInboxRounded, - } from '@material-ui/icons/AllInboxRounded'; - declare export { - default as AllInboxSharp, - } from '@material-ui/icons/AllInboxSharp'; - declare export { - default as AllInboxTwoTone, - } from '@material-ui/icons/AllInboxTwoTone'; - declare export { - default as AllInclusive, - } from '@material-ui/icons/AllInclusive'; - declare export { - default as AllInclusiveOutlined, - } from '@material-ui/icons/AllInclusiveOutlined'; - declare export { - default as AllInclusiveRounded, - } from '@material-ui/icons/AllInclusiveRounded'; - declare export { - default as AllInclusiveSharp, - } from '@material-ui/icons/AllInclusiveSharp'; - declare export { - default as AllInclusiveTwoTone, - } from '@material-ui/icons/AllInclusiveTwoTone'; - declare export { default as AllOut } from '@material-ui/icons/AllOut'; - declare export { - default as AllOutOutlined, - } from '@material-ui/icons/AllOutOutlined'; - declare export { - default as AllOutRounded, - } from '@material-ui/icons/AllOutRounded'; - declare export { - default as AllOutSharp, - } from '@material-ui/icons/AllOutSharp'; - declare export { - default as AllOutTwoTone, - } from '@material-ui/icons/AllOutTwoTone'; - declare export { - default as AlternateEmail, - } from '@material-ui/icons/AlternateEmail'; - declare export { - default as AlternateEmailOutlined, - } from '@material-ui/icons/AlternateEmailOutlined'; - declare export { - default as AlternateEmailRounded, - } from '@material-ui/icons/AlternateEmailRounded'; - declare export { - default as AlternateEmailSharp, - } from '@material-ui/icons/AlternateEmailSharp'; - declare export { - default as AlternateEmailTwoTone, - } from '@material-ui/icons/AlternateEmailTwoTone'; - declare export { default as Android } from '@material-ui/icons/Android'; - declare export { - default as AndroidOutlined, - } from '@material-ui/icons/AndroidOutlined'; - declare export { - default as AndroidRounded, - } from '@material-ui/icons/AndroidRounded'; - declare export { - default as AndroidSharp, - } from '@material-ui/icons/AndroidSharp'; - declare export { - default as AndroidTwoTone, - } from '@material-ui/icons/AndroidTwoTone'; - declare export { - default as Announcement, - } from '@material-ui/icons/Announcement'; - declare export { - default as AnnouncementOutlined, - } from '@material-ui/icons/AnnouncementOutlined'; - declare export { - default as AnnouncementRounded, - } from '@material-ui/icons/AnnouncementRounded'; - declare export { - default as AnnouncementSharp, - } from '@material-ui/icons/AnnouncementSharp'; - declare export { - default as AnnouncementTwoTone, - } from '@material-ui/icons/AnnouncementTwoTone'; - declare export { default as Apps } from '@material-ui/icons/Apps'; - declare export { - default as AppsOutlined, - } from '@material-ui/icons/AppsOutlined'; - declare export { - default as AppsRounded, - } from '@material-ui/icons/AppsRounded'; - declare export { default as AppsSharp } from '@material-ui/icons/AppsSharp'; - declare export { - default as AppsTwoTone, - } from '@material-ui/icons/AppsTwoTone'; - declare export { default as Archive } from '@material-ui/icons/Archive'; - declare export { - default as ArchiveOutlined, - } from '@material-ui/icons/ArchiveOutlined'; - declare export { - default as ArchiveRounded, - } from '@material-ui/icons/ArchiveRounded'; - declare export { - default as ArchiveSharp, - } from '@material-ui/icons/ArchiveSharp'; - declare export { - default as ArchiveTwoTone, - } from '@material-ui/icons/ArchiveTwoTone'; - declare export { - default as ArrowBackIos, - } from '@material-ui/icons/ArrowBackIos'; - declare export { - default as ArrowBackIosOutlined, - } from '@material-ui/icons/ArrowBackIosOutlined'; - declare export { - default as ArrowBackIosRounded, - } from '@material-ui/icons/ArrowBackIosRounded'; - declare export { - default as ArrowBackIosSharp, - } from '@material-ui/icons/ArrowBackIosSharp'; - declare export { - default as ArrowBackIosTwoTone, - } from '@material-ui/icons/ArrowBackIosTwoTone'; - declare export { default as ArrowBack } from '@material-ui/icons/ArrowBack'; - declare export { - default as ArrowBackOutlined, - } from '@material-ui/icons/ArrowBackOutlined'; - declare export { - default as ArrowBackRounded, - } from '@material-ui/icons/ArrowBackRounded'; - declare export { - default as ArrowBackSharp, - } from '@material-ui/icons/ArrowBackSharp'; - declare export { - default as ArrowBackTwoTone, - } from '@material-ui/icons/ArrowBackTwoTone'; - declare export { - default as ArrowDownward, - } from '@material-ui/icons/ArrowDownward'; - declare export { - default as ArrowDownwardOutlined, - } from '@material-ui/icons/ArrowDownwardOutlined'; - declare export { - default as ArrowDownwardRounded, - } from '@material-ui/icons/ArrowDownwardRounded'; - declare export { - default as ArrowDownwardSharp, - } from '@material-ui/icons/ArrowDownwardSharp'; - declare export { - default as ArrowDownwardTwoTone, - } from '@material-ui/icons/ArrowDownwardTwoTone'; - declare export { - default as ArrowDropDownCircle, - } from '@material-ui/icons/ArrowDropDownCircle'; - declare export { - default as ArrowDropDownCircleOutlined, - } from '@material-ui/icons/ArrowDropDownCircleOutlined'; - declare export { - default as ArrowDropDownCircleRounded, - } from '@material-ui/icons/ArrowDropDownCircleRounded'; - declare export { - default as ArrowDropDownCircleSharp, - } from '@material-ui/icons/ArrowDropDownCircleSharp'; - declare export { - default as ArrowDropDownCircleTwoTone, - } from '@material-ui/icons/ArrowDropDownCircleTwoTone'; - declare export { - default as ArrowDropDown, - } from '@material-ui/icons/ArrowDropDown'; - declare export { - default as ArrowDropDownOutlined, - } from '@material-ui/icons/ArrowDropDownOutlined'; - declare export { - default as ArrowDropDownRounded, - } from '@material-ui/icons/ArrowDropDownRounded'; - declare export { - default as ArrowDropDownSharp, - } from '@material-ui/icons/ArrowDropDownSharp'; - declare export { - default as ArrowDropDownTwoTone, - } from '@material-ui/icons/ArrowDropDownTwoTone'; - declare export { - default as ArrowDropUp, - } from '@material-ui/icons/ArrowDropUp'; - declare export { - default as ArrowDropUpOutlined, - } from '@material-ui/icons/ArrowDropUpOutlined'; - declare export { - default as ArrowDropUpRounded, - } from '@material-ui/icons/ArrowDropUpRounded'; - declare export { - default as ArrowDropUpSharp, - } from '@material-ui/icons/ArrowDropUpSharp'; - declare export { - default as ArrowDropUpTwoTone, - } from '@material-ui/icons/ArrowDropUpTwoTone'; - declare export { - default as ArrowForwardIos, - } from '@material-ui/icons/ArrowForwardIos'; - declare export { - default as ArrowForwardIosOutlined, - } from '@material-ui/icons/ArrowForwardIosOutlined'; - declare export { - default as ArrowForwardIosRounded, - } from '@material-ui/icons/ArrowForwardIosRounded'; - declare export { - default as ArrowForwardIosSharp, - } from '@material-ui/icons/ArrowForwardIosSharp'; - declare export { - default as ArrowForwardIosTwoTone, - } from '@material-ui/icons/ArrowForwardIosTwoTone'; - declare export { - default as ArrowForward, - } from '@material-ui/icons/ArrowForward'; - declare export { - default as ArrowForwardOutlined, - } from '@material-ui/icons/ArrowForwardOutlined'; - declare export { - default as ArrowForwardRounded, - } from '@material-ui/icons/ArrowForwardRounded'; - declare export { - default as ArrowForwardSharp, - } from '@material-ui/icons/ArrowForwardSharp'; - declare export { - default as ArrowForwardTwoTone, - } from '@material-ui/icons/ArrowForwardTwoTone'; - declare export { default as ArrowLeft } from '@material-ui/icons/ArrowLeft'; - declare export { - default as ArrowLeftOutlined, - } from '@material-ui/icons/ArrowLeftOutlined'; - declare export { - default as ArrowLeftRounded, - } from '@material-ui/icons/ArrowLeftRounded'; - declare export { - default as ArrowLeftSharp, - } from '@material-ui/icons/ArrowLeftSharp'; - declare export { - default as ArrowLeftTwoTone, - } from '@material-ui/icons/ArrowLeftTwoTone'; - declare export { - default as ArrowRightAlt, - } from '@material-ui/icons/ArrowRightAlt'; - declare export { - default as ArrowRightAltOutlined, - } from '@material-ui/icons/ArrowRightAltOutlined'; - declare export { - default as ArrowRightAltRounded, - } from '@material-ui/icons/ArrowRightAltRounded'; - declare export { - default as ArrowRightAltSharp, - } from '@material-ui/icons/ArrowRightAltSharp'; - declare export { - default as ArrowRightAltTwoTone, - } from '@material-ui/icons/ArrowRightAltTwoTone'; - declare export { default as ArrowRight } from '@material-ui/icons/ArrowRight'; - declare export { - default as ArrowRightOutlined, - } from '@material-ui/icons/ArrowRightOutlined'; - declare export { - default as ArrowRightRounded, - } from '@material-ui/icons/ArrowRightRounded'; - declare export { - default as ArrowRightSharp, - } from '@material-ui/icons/ArrowRightSharp'; - declare export { - default as ArrowRightTwoTone, - } from '@material-ui/icons/ArrowRightTwoTone'; - declare export { - default as ArrowUpward, - } from '@material-ui/icons/ArrowUpward'; - declare export { - default as ArrowUpwardOutlined, - } from '@material-ui/icons/ArrowUpwardOutlined'; - declare export { - default as ArrowUpwardRounded, - } from '@material-ui/icons/ArrowUpwardRounded'; - declare export { - default as ArrowUpwardSharp, - } from '@material-ui/icons/ArrowUpwardSharp'; - declare export { - default as ArrowUpwardTwoTone, - } from '@material-ui/icons/ArrowUpwardTwoTone'; - declare export { default as ArtTrack } from '@material-ui/icons/ArtTrack'; - declare export { - default as ArtTrackOutlined, - } from '@material-ui/icons/ArtTrackOutlined'; - declare export { - default as ArtTrackRounded, - } from '@material-ui/icons/ArtTrackRounded'; - declare export { - default as ArtTrackSharp, - } from '@material-ui/icons/ArtTrackSharp'; - declare export { - default as ArtTrackTwoTone, - } from '@material-ui/icons/ArtTrackTwoTone'; - declare export { - default as AspectRatio, - } from '@material-ui/icons/AspectRatio'; - declare export { - default as AspectRatioOutlined, - } from '@material-ui/icons/AspectRatioOutlined'; - declare export { - default as AspectRatioRounded, - } from '@material-ui/icons/AspectRatioRounded'; - declare export { - default as AspectRatioSharp, - } from '@material-ui/icons/AspectRatioSharp'; - declare export { - default as AspectRatioTwoTone, - } from '@material-ui/icons/AspectRatioTwoTone'; - declare export { default as Assessment } from '@material-ui/icons/Assessment'; - declare export { - default as AssessmentOutlined, - } from '@material-ui/icons/AssessmentOutlined'; - declare export { - default as AssessmentRounded, - } from '@material-ui/icons/AssessmentRounded'; - declare export { - default as AssessmentSharp, - } from '@material-ui/icons/AssessmentSharp'; - declare export { - default as AssessmentTwoTone, - } from '@material-ui/icons/AssessmentTwoTone'; - declare export { - default as AssignmentInd, - } from '@material-ui/icons/AssignmentInd'; - declare export { - default as AssignmentIndOutlined, - } from '@material-ui/icons/AssignmentIndOutlined'; - declare export { - default as AssignmentIndRounded, - } from '@material-ui/icons/AssignmentIndRounded'; - declare export { - default as AssignmentIndSharp, - } from '@material-ui/icons/AssignmentIndSharp'; - declare export { - default as AssignmentIndTwoTone, - } from '@material-ui/icons/AssignmentIndTwoTone'; - declare export { default as Assignment } from '@material-ui/icons/Assignment'; - declare export { - default as AssignmentLate, - } from '@material-ui/icons/AssignmentLate'; - declare export { - default as AssignmentLateOutlined, - } from '@material-ui/icons/AssignmentLateOutlined'; - declare export { - default as AssignmentLateRounded, - } from '@material-ui/icons/AssignmentLateRounded'; - declare export { - default as AssignmentLateSharp, - } from '@material-ui/icons/AssignmentLateSharp'; - declare export { - default as AssignmentLateTwoTone, - } from '@material-ui/icons/AssignmentLateTwoTone'; - declare export { - default as AssignmentOutlined, - } from '@material-ui/icons/AssignmentOutlined'; - declare export { - default as AssignmentReturned, - } from '@material-ui/icons/AssignmentReturned'; - declare export { - default as AssignmentReturnedOutlined, - } from '@material-ui/icons/AssignmentReturnedOutlined'; - declare export { - default as AssignmentReturnedRounded, - } from '@material-ui/icons/AssignmentReturnedRounded'; - declare export { - default as AssignmentReturnedSharp, - } from '@material-ui/icons/AssignmentReturnedSharp'; - declare export { - default as AssignmentReturnedTwoTone, - } from '@material-ui/icons/AssignmentReturnedTwoTone'; - declare export { - default as AssignmentReturn, - } from '@material-ui/icons/AssignmentReturn'; - declare export { - default as AssignmentReturnOutlined, - } from '@material-ui/icons/AssignmentReturnOutlined'; - declare export { - default as AssignmentReturnRounded, - } from '@material-ui/icons/AssignmentReturnRounded'; - declare export { - default as AssignmentReturnSharp, - } from '@material-ui/icons/AssignmentReturnSharp'; - declare export { - default as AssignmentReturnTwoTone, - } from '@material-ui/icons/AssignmentReturnTwoTone'; - declare export { - default as AssignmentRounded, - } from '@material-ui/icons/AssignmentRounded'; - declare export { - default as AssignmentSharp, - } from '@material-ui/icons/AssignmentSharp'; - declare export { - default as AssignmentTurnedIn, - } from '@material-ui/icons/AssignmentTurnedIn'; - declare export { - default as AssignmentTurnedInOutlined, - } from '@material-ui/icons/AssignmentTurnedInOutlined'; - declare export { - default as AssignmentTurnedInRounded, - } from '@material-ui/icons/AssignmentTurnedInRounded'; - declare export { - default as AssignmentTurnedInSharp, - } from '@material-ui/icons/AssignmentTurnedInSharp'; - declare export { - default as AssignmentTurnedInTwoTone, - } from '@material-ui/icons/AssignmentTurnedInTwoTone'; - declare export { - default as AssignmentTwoTone, - } from '@material-ui/icons/AssignmentTwoTone'; - declare export { default as Assistant } from '@material-ui/icons/Assistant'; - declare export { - default as AssistantOutlined, - } from '@material-ui/icons/AssistantOutlined'; - declare export { - default as AssistantPhoto, - } from '@material-ui/icons/AssistantPhoto'; - declare export { - default as AssistantPhotoOutlined, - } from '@material-ui/icons/AssistantPhotoOutlined'; - declare export { - default as AssistantPhotoRounded, - } from '@material-ui/icons/AssistantPhotoRounded'; - declare export { - default as AssistantPhotoSharp, - } from '@material-ui/icons/AssistantPhotoSharp'; - declare export { - default as AssistantPhotoTwoTone, - } from '@material-ui/icons/AssistantPhotoTwoTone'; - declare export { - default as AssistantRounded, - } from '@material-ui/icons/AssistantRounded'; - declare export { - default as AssistantSharp, - } from '@material-ui/icons/AssistantSharp'; - declare export { - default as AssistantTwoTone, - } from '@material-ui/icons/AssistantTwoTone'; - declare export { default as Atm } from '@material-ui/icons/Atm'; - declare export { - default as AtmOutlined, - } from '@material-ui/icons/AtmOutlined'; - declare export { default as AtmRounded } from '@material-ui/icons/AtmRounded'; - declare export { default as AtmSharp } from '@material-ui/icons/AtmSharp'; - declare export { default as AtmTwoTone } from '@material-ui/icons/AtmTwoTone'; - declare export { default as AttachFile } from '@material-ui/icons/AttachFile'; - declare export { - default as AttachFileOutlined, - } from '@material-ui/icons/AttachFileOutlined'; - declare export { - default as AttachFileRounded, - } from '@material-ui/icons/AttachFileRounded'; - declare export { - default as AttachFileSharp, - } from '@material-ui/icons/AttachFileSharp'; - declare export { - default as AttachFileTwoTone, - } from '@material-ui/icons/AttachFileTwoTone'; - declare export { default as Attachment } from '@material-ui/icons/Attachment'; - declare export { - default as AttachmentOutlined, - } from '@material-ui/icons/AttachmentOutlined'; - declare export { - default as AttachmentRounded, - } from '@material-ui/icons/AttachmentRounded'; - declare export { - default as AttachmentSharp, - } from '@material-ui/icons/AttachmentSharp'; - declare export { - default as AttachmentTwoTone, - } from '@material-ui/icons/AttachmentTwoTone'; - declare export { - default as AttachMoney, - } from '@material-ui/icons/AttachMoney'; - declare export { - default as AttachMoneyOutlined, - } from '@material-ui/icons/AttachMoneyOutlined'; - declare export { - default as AttachMoneyRounded, - } from '@material-ui/icons/AttachMoneyRounded'; - declare export { - default as AttachMoneySharp, - } from '@material-ui/icons/AttachMoneySharp'; - declare export { - default as AttachMoneyTwoTone, - } from '@material-ui/icons/AttachMoneyTwoTone'; - declare export { default as Audiotrack } from '@material-ui/icons/Audiotrack'; - declare export { - default as AudiotrackOutlined, - } from '@material-ui/icons/AudiotrackOutlined'; - declare export { - default as AudiotrackRounded, - } from '@material-ui/icons/AudiotrackRounded'; - declare export { - default as AudiotrackSharp, - } from '@material-ui/icons/AudiotrackSharp'; - declare export { - default as AudiotrackTwoTone, - } from '@material-ui/icons/AudiotrackTwoTone'; - declare export { default as Autorenew } from '@material-ui/icons/Autorenew'; - declare export { - default as AutorenewOutlined, - } from '@material-ui/icons/AutorenewOutlined'; - declare export { - default as AutorenewRounded, - } from '@material-ui/icons/AutorenewRounded'; - declare export { - default as AutorenewSharp, - } from '@material-ui/icons/AutorenewSharp'; - declare export { - default as AutorenewTwoTone, - } from '@material-ui/icons/AutorenewTwoTone'; - declare export { default as AvTimer } from '@material-ui/icons/AvTimer'; - declare export { - default as AvTimerOutlined, - } from '@material-ui/icons/AvTimerOutlined'; - declare export { - default as AvTimerRounded, - } from '@material-ui/icons/AvTimerRounded'; - declare export { - default as AvTimerSharp, - } from '@material-ui/icons/AvTimerSharp'; - declare export { - default as AvTimerTwoTone, - } from '@material-ui/icons/AvTimerTwoTone'; - declare export { default as Backspace } from '@material-ui/icons/Backspace'; - declare export { - default as BackspaceOutlined, - } from '@material-ui/icons/BackspaceOutlined'; - declare export { - default as BackspaceRounded, - } from '@material-ui/icons/BackspaceRounded'; - declare export { - default as BackspaceSharp, - } from '@material-ui/icons/BackspaceSharp'; - declare export { - default as BackspaceTwoTone, - } from '@material-ui/icons/BackspaceTwoTone'; - declare export { default as Backup } from '@material-ui/icons/Backup'; - declare export { - default as BackupOutlined, - } from '@material-ui/icons/BackupOutlined'; - declare export { - default as BackupRounded, - } from '@material-ui/icons/BackupRounded'; - declare export { - default as BackupSharp, - } from '@material-ui/icons/BackupSharp'; - declare export { - default as BackupTwoTone, - } from '@material-ui/icons/BackupTwoTone'; - declare export { default as Ballot } from '@material-ui/icons/Ballot'; - declare export { - default as BallotOutlined, - } from '@material-ui/icons/BallotOutlined'; - declare export { - default as BallotRounded, - } from '@material-ui/icons/BallotRounded'; - declare export { - default as BallotSharp, - } from '@material-ui/icons/BallotSharp'; - declare export { - default as BallotTwoTone, - } from '@material-ui/icons/BallotTwoTone'; - declare export { default as BarChart } from '@material-ui/icons/BarChart'; - declare export { - default as BarChartOutlined, - } from '@material-ui/icons/BarChartOutlined'; - declare export { - default as BarChartRounded, - } from '@material-ui/icons/BarChartRounded'; - declare export { - default as BarChartSharp, - } from '@material-ui/icons/BarChartSharp'; - declare export { - default as BarChartTwoTone, - } from '@material-ui/icons/BarChartTwoTone'; - declare export { default as Battery20 } from '@material-ui/icons/Battery20'; - declare export { - default as Battery20Outlined, - } from '@material-ui/icons/Battery20Outlined'; - declare export { - default as Battery20Rounded, - } from '@material-ui/icons/Battery20Rounded'; - declare export { - default as Battery20Sharp, - } from '@material-ui/icons/Battery20Sharp'; - declare export { - default as Battery20TwoTone, - } from '@material-ui/icons/Battery20TwoTone'; - declare export { default as Battery30 } from '@material-ui/icons/Battery30'; - declare export { - default as Battery30Outlined, - } from '@material-ui/icons/Battery30Outlined'; - declare export { - default as Battery30Rounded, - } from '@material-ui/icons/Battery30Rounded'; - declare export { - default as Battery30Sharp, - } from '@material-ui/icons/Battery30Sharp'; - declare export { - default as Battery30TwoTone, - } from '@material-ui/icons/Battery30TwoTone'; - declare export { default as Battery50 } from '@material-ui/icons/Battery50'; - declare export { - default as Battery50Outlined, - } from '@material-ui/icons/Battery50Outlined'; - declare export { - default as Battery50Rounded, - } from '@material-ui/icons/Battery50Rounded'; - declare export { - default as Battery50Sharp, - } from '@material-ui/icons/Battery50Sharp'; - declare export { - default as Battery50TwoTone, - } from '@material-ui/icons/Battery50TwoTone'; - declare export { default as Battery60 } from '@material-ui/icons/Battery60'; - declare export { - default as Battery60Outlined, - } from '@material-ui/icons/Battery60Outlined'; - declare export { - default as Battery60Rounded, - } from '@material-ui/icons/Battery60Rounded'; - declare export { - default as Battery60Sharp, - } from '@material-ui/icons/Battery60Sharp'; - declare export { - default as Battery60TwoTone, - } from '@material-ui/icons/Battery60TwoTone'; - declare export { default as Battery80 } from '@material-ui/icons/Battery80'; - declare export { - default as Battery80Outlined, - } from '@material-ui/icons/Battery80Outlined'; - declare export { - default as Battery80Rounded, - } from '@material-ui/icons/Battery80Rounded'; - declare export { - default as Battery80Sharp, - } from '@material-ui/icons/Battery80Sharp'; - declare export { - default as Battery80TwoTone, - } from '@material-ui/icons/Battery80TwoTone'; - declare export { default as Battery90 } from '@material-ui/icons/Battery90'; - declare export { - default as Battery90Outlined, - } from '@material-ui/icons/Battery90Outlined'; - declare export { - default as Battery90Rounded, - } from '@material-ui/icons/Battery90Rounded'; - declare export { - default as Battery90Sharp, - } from '@material-ui/icons/Battery90Sharp'; - declare export { - default as Battery90TwoTone, - } from '@material-ui/icons/Battery90TwoTone'; - declare export { - default as BatteryAlert, - } from '@material-ui/icons/BatteryAlert'; - declare export { - default as BatteryAlertOutlined, - } from '@material-ui/icons/BatteryAlertOutlined'; - declare export { - default as BatteryAlertRounded, - } from '@material-ui/icons/BatteryAlertRounded'; - declare export { - default as BatteryAlertSharp, - } from '@material-ui/icons/BatteryAlertSharp'; - declare export { - default as BatteryAlertTwoTone, - } from '@material-ui/icons/BatteryAlertTwoTone'; - declare export { - default as BatteryCharging20, - } from '@material-ui/icons/BatteryCharging20'; - declare export { - default as BatteryCharging20Outlined, - } from '@material-ui/icons/BatteryCharging20Outlined'; - declare export { - default as BatteryCharging20Rounded, - } from '@material-ui/icons/BatteryCharging20Rounded'; - declare export { - default as BatteryCharging20Sharp, - } from '@material-ui/icons/BatteryCharging20Sharp'; - declare export { - default as BatteryCharging20TwoTone, - } from '@material-ui/icons/BatteryCharging20TwoTone'; - declare export { - default as BatteryCharging30, - } from '@material-ui/icons/BatteryCharging30'; - declare export { - default as BatteryCharging30Outlined, - } from '@material-ui/icons/BatteryCharging30Outlined'; - declare export { - default as BatteryCharging30Rounded, - } from '@material-ui/icons/BatteryCharging30Rounded'; - declare export { - default as BatteryCharging30Sharp, - } from '@material-ui/icons/BatteryCharging30Sharp'; - declare export { - default as BatteryCharging30TwoTone, - } from '@material-ui/icons/BatteryCharging30TwoTone'; - declare export { - default as BatteryCharging50, - } from '@material-ui/icons/BatteryCharging50'; - declare export { - default as BatteryCharging50Outlined, - } from '@material-ui/icons/BatteryCharging50Outlined'; - declare export { - default as BatteryCharging50Rounded, - } from '@material-ui/icons/BatteryCharging50Rounded'; - declare export { - default as BatteryCharging50Sharp, - } from '@material-ui/icons/BatteryCharging50Sharp'; - declare export { - default as BatteryCharging50TwoTone, - } from '@material-ui/icons/BatteryCharging50TwoTone'; - declare export { - default as BatteryCharging60, - } from '@material-ui/icons/BatteryCharging60'; - declare export { - default as BatteryCharging60Outlined, - } from '@material-ui/icons/BatteryCharging60Outlined'; - declare export { - default as BatteryCharging60Rounded, - } from '@material-ui/icons/BatteryCharging60Rounded'; - declare export { - default as BatteryCharging60Sharp, - } from '@material-ui/icons/BatteryCharging60Sharp'; - declare export { - default as BatteryCharging60TwoTone, - } from '@material-ui/icons/BatteryCharging60TwoTone'; - declare export { - default as BatteryCharging80, - } from '@material-ui/icons/BatteryCharging80'; - declare export { - default as BatteryCharging80Outlined, - } from '@material-ui/icons/BatteryCharging80Outlined'; - declare export { - default as BatteryCharging80Rounded, - } from '@material-ui/icons/BatteryCharging80Rounded'; - declare export { - default as BatteryCharging80Sharp, - } from '@material-ui/icons/BatteryCharging80Sharp'; - declare export { - default as BatteryCharging80TwoTone, - } from '@material-ui/icons/BatteryCharging80TwoTone'; - declare export { - default as BatteryCharging90, - } from '@material-ui/icons/BatteryCharging90'; - declare export { - default as BatteryCharging90Outlined, - } from '@material-ui/icons/BatteryCharging90Outlined'; - declare export { - default as BatteryCharging90Rounded, - } from '@material-ui/icons/BatteryCharging90Rounded'; - declare export { - default as BatteryCharging90Sharp, - } from '@material-ui/icons/BatteryCharging90Sharp'; - declare export { - default as BatteryCharging90TwoTone, - } from '@material-ui/icons/BatteryCharging90TwoTone'; - declare export { - default as BatteryChargingFull, - } from '@material-ui/icons/BatteryChargingFull'; - declare export { - default as BatteryChargingFullOutlined, - } from '@material-ui/icons/BatteryChargingFullOutlined'; - declare export { - default as BatteryChargingFullRounded, - } from '@material-ui/icons/BatteryChargingFullRounded'; - declare export { - default as BatteryChargingFullSharp, - } from '@material-ui/icons/BatteryChargingFullSharp'; - declare export { - default as BatteryChargingFullTwoTone, - } from '@material-ui/icons/BatteryChargingFullTwoTone'; - declare export { - default as BatteryFull, - } from '@material-ui/icons/BatteryFull'; - declare export { - default as BatteryFullOutlined, - } from '@material-ui/icons/BatteryFullOutlined'; - declare export { - default as BatteryFullRounded, - } from '@material-ui/icons/BatteryFullRounded'; - declare export { - default as BatteryFullSharp, - } from '@material-ui/icons/BatteryFullSharp'; - declare export { - default as BatteryFullTwoTone, - } from '@material-ui/icons/BatteryFullTwoTone'; - declare export { default as BatteryStd } from '@material-ui/icons/BatteryStd'; - declare export { - default as BatteryStdOutlined, - } from '@material-ui/icons/BatteryStdOutlined'; - declare export { - default as BatteryStdRounded, - } from '@material-ui/icons/BatteryStdRounded'; - declare export { - default as BatteryStdSharp, - } from '@material-ui/icons/BatteryStdSharp'; - declare export { - default as BatteryStdTwoTone, - } from '@material-ui/icons/BatteryStdTwoTone'; - declare export { - default as BatteryUnknown, - } from '@material-ui/icons/BatteryUnknown'; - declare export { - default as BatteryUnknownOutlined, - } from '@material-ui/icons/BatteryUnknownOutlined'; - declare export { - default as BatteryUnknownRounded, - } from '@material-ui/icons/BatteryUnknownRounded'; - declare export { - default as BatteryUnknownSharp, - } from '@material-ui/icons/BatteryUnknownSharp'; - declare export { - default as BatteryUnknownTwoTone, - } from '@material-ui/icons/BatteryUnknownTwoTone'; - declare export { - default as BeachAccess, - } from '@material-ui/icons/BeachAccess'; - declare export { - default as BeachAccessOutlined, - } from '@material-ui/icons/BeachAccessOutlined'; - declare export { - default as BeachAccessRounded, - } from '@material-ui/icons/BeachAccessRounded'; - declare export { - default as BeachAccessSharp, - } from '@material-ui/icons/BeachAccessSharp'; - declare export { - default as BeachAccessTwoTone, - } from '@material-ui/icons/BeachAccessTwoTone'; - declare export { default as Beenhere } from '@material-ui/icons/Beenhere'; - declare export { - default as BeenhereOutlined, - } from '@material-ui/icons/BeenhereOutlined'; - declare export { - default as BeenhereRounded, - } from '@material-ui/icons/BeenhereRounded'; - declare export { - default as BeenhereSharp, - } from '@material-ui/icons/BeenhereSharp'; - declare export { - default as BeenhereTwoTone, - } from '@material-ui/icons/BeenhereTwoTone'; - declare export { default as Block } from '@material-ui/icons/Block'; - declare export { - default as BlockOutlined, - } from '@material-ui/icons/BlockOutlined'; - declare export { - default as BlockRounded, - } from '@material-ui/icons/BlockRounded'; - declare export { default as BlockSharp } from '@material-ui/icons/BlockSharp'; - declare export { - default as BlockTwoTone, - } from '@material-ui/icons/BlockTwoTone'; - declare export { - default as BluetoothAudio, - } from '@material-ui/icons/BluetoothAudio'; - declare export { - default as BluetoothAudioOutlined, - } from '@material-ui/icons/BluetoothAudioOutlined'; - declare export { - default as BluetoothAudioRounded, - } from '@material-ui/icons/BluetoothAudioRounded'; - declare export { - default as BluetoothAudioSharp, - } from '@material-ui/icons/BluetoothAudioSharp'; - declare export { - default as BluetoothAudioTwoTone, - } from '@material-ui/icons/BluetoothAudioTwoTone'; - declare export { - default as BluetoothConnected, - } from '@material-ui/icons/BluetoothConnected'; - declare export { - default as BluetoothConnectedOutlined, - } from '@material-ui/icons/BluetoothConnectedOutlined'; - declare export { - default as BluetoothConnectedRounded, - } from '@material-ui/icons/BluetoothConnectedRounded'; - declare export { - default as BluetoothConnectedSharp, - } from '@material-ui/icons/BluetoothConnectedSharp'; - declare export { - default as BluetoothConnectedTwoTone, - } from '@material-ui/icons/BluetoothConnectedTwoTone'; - declare export { - default as BluetoothDisabled, - } from '@material-ui/icons/BluetoothDisabled'; - declare export { - default as BluetoothDisabledOutlined, - } from '@material-ui/icons/BluetoothDisabledOutlined'; - declare export { - default as BluetoothDisabledRounded, - } from '@material-ui/icons/BluetoothDisabledRounded'; - declare export { - default as BluetoothDisabledSharp, - } from '@material-ui/icons/BluetoothDisabledSharp'; - declare export { - default as BluetoothDisabledTwoTone, - } from '@material-ui/icons/BluetoothDisabledTwoTone'; - declare export { default as Bluetooth } from '@material-ui/icons/Bluetooth'; - declare export { - default as BluetoothOutlined, - } from '@material-ui/icons/BluetoothOutlined'; - declare export { - default as BluetoothRounded, - } from '@material-ui/icons/BluetoothRounded'; - declare export { - default as BluetoothSearching, - } from '@material-ui/icons/BluetoothSearching'; - declare export { - default as BluetoothSearchingOutlined, - } from '@material-ui/icons/BluetoothSearchingOutlined'; - declare export { - default as BluetoothSearchingRounded, - } from '@material-ui/icons/BluetoothSearchingRounded'; - declare export { - default as BluetoothSearchingSharp, - } from '@material-ui/icons/BluetoothSearchingSharp'; - declare export { - default as BluetoothSearchingTwoTone, - } from '@material-ui/icons/BluetoothSearchingTwoTone'; - declare export { - default as BluetoothSharp, - } from '@material-ui/icons/BluetoothSharp'; - declare export { - default as BluetoothTwoTone, - } from '@material-ui/icons/BluetoothTwoTone'; - declare export { - default as BlurCircular, - } from '@material-ui/icons/BlurCircular'; - declare export { - default as BlurCircularOutlined, - } from '@material-ui/icons/BlurCircularOutlined'; - declare export { - default as BlurCircularRounded, - } from '@material-ui/icons/BlurCircularRounded'; - declare export { - default as BlurCircularSharp, - } from '@material-ui/icons/BlurCircularSharp'; - declare export { - default as BlurCircularTwoTone, - } from '@material-ui/icons/BlurCircularTwoTone'; - declare export { default as BlurLinear } from '@material-ui/icons/BlurLinear'; - declare export { - default as BlurLinearOutlined, - } from '@material-ui/icons/BlurLinearOutlined'; - declare export { - default as BlurLinearRounded, - } from '@material-ui/icons/BlurLinearRounded'; - declare export { - default as BlurLinearSharp, - } from '@material-ui/icons/BlurLinearSharp'; - declare export { - default as BlurLinearTwoTone, - } from '@material-ui/icons/BlurLinearTwoTone'; - declare export { default as BlurOff } from '@material-ui/icons/BlurOff'; - declare export { - default as BlurOffOutlined, - } from '@material-ui/icons/BlurOffOutlined'; - declare export { - default as BlurOffRounded, - } from '@material-ui/icons/BlurOffRounded'; - declare export { - default as BlurOffSharp, - } from '@material-ui/icons/BlurOffSharp'; - declare export { - default as BlurOffTwoTone, - } from '@material-ui/icons/BlurOffTwoTone'; - declare export { default as BlurOn } from '@material-ui/icons/BlurOn'; - declare export { - default as BlurOnOutlined, - } from '@material-ui/icons/BlurOnOutlined'; - declare export { - default as BlurOnRounded, - } from '@material-ui/icons/BlurOnRounded'; - declare export { - default as BlurOnSharp, - } from '@material-ui/icons/BlurOnSharp'; - declare export { - default as BlurOnTwoTone, - } from '@material-ui/icons/BlurOnTwoTone'; - declare export { default as Book } from '@material-ui/icons/Book'; - declare export { - default as BookmarkBorder, - } from '@material-ui/icons/BookmarkBorder'; - declare export { - default as BookmarkBorderOutlined, - } from '@material-ui/icons/BookmarkBorderOutlined'; - declare export { - default as BookmarkBorderRounded, - } from '@material-ui/icons/BookmarkBorderRounded'; - declare export { - default as BookmarkBorderSharp, - } from '@material-ui/icons/BookmarkBorderSharp'; - declare export { - default as BookmarkBorderTwoTone, - } from '@material-ui/icons/BookmarkBorderTwoTone'; - declare export { default as Bookmark } from '@material-ui/icons/Bookmark'; - declare export { - default as BookmarkOutlined, - } from '@material-ui/icons/BookmarkOutlined'; - declare export { - default as BookmarkRounded, - } from '@material-ui/icons/BookmarkRounded'; - declare export { - default as BookmarkSharp, - } from '@material-ui/icons/BookmarkSharp'; - declare export { default as Bookmarks } from '@material-ui/icons/Bookmarks'; - declare export { - default as BookmarksOutlined, - } from '@material-ui/icons/BookmarksOutlined'; - declare export { - default as BookmarksRounded, - } from '@material-ui/icons/BookmarksRounded'; - declare export { - default as BookmarksSharp, - } from '@material-ui/icons/BookmarksSharp'; - declare export { - default as BookmarksTwoTone, - } from '@material-ui/icons/BookmarksTwoTone'; - declare export { - default as BookmarkTwoTone, - } from '@material-ui/icons/BookmarkTwoTone'; - declare export { - default as BookOutlined, - } from '@material-ui/icons/BookOutlined'; - declare export { - default as BookRounded, - } from '@material-ui/icons/BookRounded'; - declare export { default as BookSharp } from '@material-ui/icons/BookSharp'; - declare export { - default as BookTwoTone, - } from '@material-ui/icons/BookTwoTone'; - declare export { default as BorderAll } from '@material-ui/icons/BorderAll'; - declare export { - default as BorderAllOutlined, - } from '@material-ui/icons/BorderAllOutlined'; - declare export { - default as BorderAllRounded, - } from '@material-ui/icons/BorderAllRounded'; - declare export { - default as BorderAllSharp, - } from '@material-ui/icons/BorderAllSharp'; - declare export { - default as BorderAllTwoTone, - } from '@material-ui/icons/BorderAllTwoTone'; - declare export { - default as BorderBottom, - } from '@material-ui/icons/BorderBottom'; - declare export { - default as BorderBottomOutlined, - } from '@material-ui/icons/BorderBottomOutlined'; - declare export { - default as BorderBottomRounded, - } from '@material-ui/icons/BorderBottomRounded'; - declare export { - default as BorderBottomSharp, - } from '@material-ui/icons/BorderBottomSharp'; - declare export { - default as BorderBottomTwoTone, - } from '@material-ui/icons/BorderBottomTwoTone'; - declare export { - default as BorderClear, - } from '@material-ui/icons/BorderClear'; - declare export { - default as BorderClearOutlined, - } from '@material-ui/icons/BorderClearOutlined'; - declare export { - default as BorderClearRounded, - } from '@material-ui/icons/BorderClearRounded'; - declare export { - default as BorderClearSharp, - } from '@material-ui/icons/BorderClearSharp'; - declare export { - default as BorderClearTwoTone, - } from '@material-ui/icons/BorderClearTwoTone'; - declare export { - default as BorderColor, - } from '@material-ui/icons/BorderColor'; - declare export { - default as BorderColorOutlined, - } from '@material-ui/icons/BorderColorOutlined'; - declare export { - default as BorderColorRounded, - } from '@material-ui/icons/BorderColorRounded'; - declare export { - default as BorderColorSharp, - } from '@material-ui/icons/BorderColorSharp'; - declare export { - default as BorderColorTwoTone, - } from '@material-ui/icons/BorderColorTwoTone'; - declare export { - default as BorderHorizontal, - } from '@material-ui/icons/BorderHorizontal'; - declare export { - default as BorderHorizontalOutlined, - } from '@material-ui/icons/BorderHorizontalOutlined'; - declare export { - default as BorderHorizontalRounded, - } from '@material-ui/icons/BorderHorizontalRounded'; - declare export { - default as BorderHorizontalSharp, - } from '@material-ui/icons/BorderHorizontalSharp'; - declare export { - default as BorderHorizontalTwoTone, - } from '@material-ui/icons/BorderHorizontalTwoTone'; - declare export { - default as BorderInner, - } from '@material-ui/icons/BorderInner'; - declare export { - default as BorderInnerOutlined, - } from '@material-ui/icons/BorderInnerOutlined'; - declare export { - default as BorderInnerRounded, - } from '@material-ui/icons/BorderInnerRounded'; - declare export { - default as BorderInnerSharp, - } from '@material-ui/icons/BorderInnerSharp'; - declare export { - default as BorderInnerTwoTone, - } from '@material-ui/icons/BorderInnerTwoTone'; - declare export { default as BorderLeft } from '@material-ui/icons/BorderLeft'; - declare export { - default as BorderLeftOutlined, - } from '@material-ui/icons/BorderLeftOutlined'; - declare export { - default as BorderLeftRounded, - } from '@material-ui/icons/BorderLeftRounded'; - declare export { - default as BorderLeftSharp, - } from '@material-ui/icons/BorderLeftSharp'; - declare export { - default as BorderLeftTwoTone, - } from '@material-ui/icons/BorderLeftTwoTone'; - declare export { - default as BorderOuter, - } from '@material-ui/icons/BorderOuter'; - declare export { - default as BorderOuterOutlined, - } from '@material-ui/icons/BorderOuterOutlined'; - declare export { - default as BorderOuterRounded, - } from '@material-ui/icons/BorderOuterRounded'; - declare export { - default as BorderOuterSharp, - } from '@material-ui/icons/BorderOuterSharp'; - declare export { - default as BorderOuterTwoTone, - } from '@material-ui/icons/BorderOuterTwoTone'; - declare export { - default as BorderRight, - } from '@material-ui/icons/BorderRight'; - declare export { - default as BorderRightOutlined, - } from '@material-ui/icons/BorderRightOutlined'; - declare export { - default as BorderRightRounded, - } from '@material-ui/icons/BorderRightRounded'; - declare export { - default as BorderRightSharp, - } from '@material-ui/icons/BorderRightSharp'; - declare export { - default as BorderRightTwoTone, - } from '@material-ui/icons/BorderRightTwoTone'; - declare export { - default as BorderStyle, - } from '@material-ui/icons/BorderStyle'; - declare export { - default as BorderStyleOutlined, - } from '@material-ui/icons/BorderStyleOutlined'; - declare export { - default as BorderStyleRounded, - } from '@material-ui/icons/BorderStyleRounded'; - declare export { - default as BorderStyleSharp, - } from '@material-ui/icons/BorderStyleSharp'; - declare export { - default as BorderStyleTwoTone, - } from '@material-ui/icons/BorderStyleTwoTone'; - declare export { default as BorderTop } from '@material-ui/icons/BorderTop'; - declare export { - default as BorderTopOutlined, - } from '@material-ui/icons/BorderTopOutlined'; - declare export { - default as BorderTopRounded, - } from '@material-ui/icons/BorderTopRounded'; - declare export { - default as BorderTopSharp, - } from '@material-ui/icons/BorderTopSharp'; - declare export { - default as BorderTopTwoTone, - } from '@material-ui/icons/BorderTopTwoTone'; - declare export { - default as BorderVertical, - } from '@material-ui/icons/BorderVertical'; - declare export { - default as BorderVerticalOutlined, - } from '@material-ui/icons/BorderVerticalOutlined'; - declare export { - default as BorderVerticalRounded, - } from '@material-ui/icons/BorderVerticalRounded'; - declare export { - default as BorderVerticalSharp, - } from '@material-ui/icons/BorderVerticalSharp'; - declare export { - default as BorderVerticalTwoTone, - } from '@material-ui/icons/BorderVerticalTwoTone'; - declare export { - default as BrandingWatermark, - } from '@material-ui/icons/BrandingWatermark'; - declare export { - default as BrandingWatermarkOutlined, - } from '@material-ui/icons/BrandingWatermarkOutlined'; - declare export { - default as BrandingWatermarkRounded, - } from '@material-ui/icons/BrandingWatermarkRounded'; - declare export { - default as BrandingWatermarkSharp, - } from '@material-ui/icons/BrandingWatermarkSharp'; - declare export { - default as BrandingWatermarkTwoTone, - } from '@material-ui/icons/BrandingWatermarkTwoTone'; - declare export { - default as Brightness1, - } from '@material-ui/icons/Brightness1'; - declare export { - default as Brightness1Outlined, - } from '@material-ui/icons/Brightness1Outlined'; - declare export { - default as Brightness1Rounded, - } from '@material-ui/icons/Brightness1Rounded'; - declare export { - default as Brightness1Sharp, - } from '@material-ui/icons/Brightness1Sharp'; - declare export { - default as Brightness1TwoTone, - } from '@material-ui/icons/Brightness1TwoTone'; - declare export { - default as Brightness2, - } from '@material-ui/icons/Brightness2'; - declare export { - default as Brightness2Outlined, - } from '@material-ui/icons/Brightness2Outlined'; - declare export { - default as Brightness2Rounded, - } from '@material-ui/icons/Brightness2Rounded'; - declare export { - default as Brightness2Sharp, - } from '@material-ui/icons/Brightness2Sharp'; - declare export { - default as Brightness2TwoTone, - } from '@material-ui/icons/Brightness2TwoTone'; - declare export { - default as Brightness3, - } from '@material-ui/icons/Brightness3'; - declare export { - default as Brightness3Outlined, - } from '@material-ui/icons/Brightness3Outlined'; - declare export { - default as Brightness3Rounded, - } from '@material-ui/icons/Brightness3Rounded'; - declare export { - default as Brightness3Sharp, - } from '@material-ui/icons/Brightness3Sharp'; - declare export { - default as Brightness3TwoTone, - } from '@material-ui/icons/Brightness3TwoTone'; - declare export { - default as Brightness4, - } from '@material-ui/icons/Brightness4'; - declare export { - default as Brightness4Outlined, - } from '@material-ui/icons/Brightness4Outlined'; - declare export { - default as Brightness4Rounded, - } from '@material-ui/icons/Brightness4Rounded'; - declare export { - default as Brightness4Sharp, - } from '@material-ui/icons/Brightness4Sharp'; - declare export { - default as Brightness4TwoTone, - } from '@material-ui/icons/Brightness4TwoTone'; - declare export { - default as Brightness5, - } from '@material-ui/icons/Brightness5'; - declare export { - default as Brightness5Outlined, - } from '@material-ui/icons/Brightness5Outlined'; - declare export { - default as Brightness5Rounded, - } from '@material-ui/icons/Brightness5Rounded'; - declare export { - default as Brightness5Sharp, - } from '@material-ui/icons/Brightness5Sharp'; - declare export { - default as Brightness5TwoTone, - } from '@material-ui/icons/Brightness5TwoTone'; - declare export { - default as Brightness6, - } from '@material-ui/icons/Brightness6'; - declare export { - default as Brightness6Outlined, - } from '@material-ui/icons/Brightness6Outlined'; - declare export { - default as Brightness6Rounded, - } from '@material-ui/icons/Brightness6Rounded'; - declare export { - default as Brightness6Sharp, - } from '@material-ui/icons/Brightness6Sharp'; - declare export { - default as Brightness6TwoTone, - } from '@material-ui/icons/Brightness6TwoTone'; - declare export { - default as Brightness7, - } from '@material-ui/icons/Brightness7'; - declare export { - default as Brightness7Outlined, - } from '@material-ui/icons/Brightness7Outlined'; - declare export { - default as Brightness7Rounded, - } from '@material-ui/icons/Brightness7Rounded'; - declare export { - default as Brightness7Sharp, - } from '@material-ui/icons/Brightness7Sharp'; - declare export { - default as Brightness7TwoTone, - } from '@material-ui/icons/Brightness7TwoTone'; - declare export { - default as BrightnessAuto, - } from '@material-ui/icons/BrightnessAuto'; - declare export { - default as BrightnessAutoOutlined, - } from '@material-ui/icons/BrightnessAutoOutlined'; - declare export { - default as BrightnessAutoRounded, - } from '@material-ui/icons/BrightnessAutoRounded'; - declare export { - default as BrightnessAutoSharp, - } from '@material-ui/icons/BrightnessAutoSharp'; - declare export { - default as BrightnessAutoTwoTone, - } from '@material-ui/icons/BrightnessAutoTwoTone'; - declare export { - default as BrightnessHigh, - } from '@material-ui/icons/BrightnessHigh'; - declare export { - default as BrightnessHighOutlined, - } from '@material-ui/icons/BrightnessHighOutlined'; - declare export { - default as BrightnessHighRounded, - } from '@material-ui/icons/BrightnessHighRounded'; - declare export { - default as BrightnessHighSharp, - } from '@material-ui/icons/BrightnessHighSharp'; - declare export { - default as BrightnessHighTwoTone, - } from '@material-ui/icons/BrightnessHighTwoTone'; - declare export { - default as BrightnessLow, - } from '@material-ui/icons/BrightnessLow'; - declare export { - default as BrightnessLowOutlined, - } from '@material-ui/icons/BrightnessLowOutlined'; - declare export { - default as BrightnessLowRounded, - } from '@material-ui/icons/BrightnessLowRounded'; - declare export { - default as BrightnessLowSharp, - } from '@material-ui/icons/BrightnessLowSharp'; - declare export { - default as BrightnessLowTwoTone, - } from '@material-ui/icons/BrightnessLowTwoTone'; - declare export { - default as BrightnessMedium, - } from '@material-ui/icons/BrightnessMedium'; - declare export { - default as BrightnessMediumOutlined, - } from '@material-ui/icons/BrightnessMediumOutlined'; - declare export { - default as BrightnessMediumRounded, - } from '@material-ui/icons/BrightnessMediumRounded'; - declare export { - default as BrightnessMediumSharp, - } from '@material-ui/icons/BrightnessMediumSharp'; - declare export { - default as BrightnessMediumTwoTone, - } from '@material-ui/icons/BrightnessMediumTwoTone'; - declare export { - default as BrokenImage, - } from '@material-ui/icons/BrokenImage'; - declare export { - default as BrokenImageOutlined, - } from '@material-ui/icons/BrokenImageOutlined'; - declare export { - default as BrokenImageRounded, - } from '@material-ui/icons/BrokenImageRounded'; - declare export { - default as BrokenImageSharp, - } from '@material-ui/icons/BrokenImageSharp'; - declare export { - default as BrokenImageTwoTone, - } from '@material-ui/icons/BrokenImageTwoTone'; - declare export { default as Brush } from '@material-ui/icons/Brush'; - declare export { - default as BrushOutlined, - } from '@material-ui/icons/BrushOutlined'; - declare export { - default as BrushRounded, - } from '@material-ui/icons/BrushRounded'; - declare export { default as BrushSharp } from '@material-ui/icons/BrushSharp'; - declare export { - default as BrushTwoTone, - } from '@material-ui/icons/BrushTwoTone'; - declare export { - default as BubbleChart, - } from '@material-ui/icons/BubbleChart'; - declare export { - default as BubbleChartOutlined, - } from '@material-ui/icons/BubbleChartOutlined'; - declare export { - default as BubbleChartRounded, - } from '@material-ui/icons/BubbleChartRounded'; - declare export { - default as BubbleChartSharp, - } from '@material-ui/icons/BubbleChartSharp'; - declare export { - default as BubbleChartTwoTone, - } from '@material-ui/icons/BubbleChartTwoTone'; - declare export { default as BugReport } from '@material-ui/icons/BugReport'; - declare export { - default as BugReportOutlined, - } from '@material-ui/icons/BugReportOutlined'; - declare export { - default as BugReportRounded, - } from '@material-ui/icons/BugReportRounded'; - declare export { - default as BugReportSharp, - } from '@material-ui/icons/BugReportSharp'; - declare export { - default as BugReportTwoTone, - } from '@material-ui/icons/BugReportTwoTone'; - declare export { default as Build } from '@material-ui/icons/Build'; - declare export { - default as BuildOutlined, - } from '@material-ui/icons/BuildOutlined'; - declare export { - default as BuildRounded, - } from '@material-ui/icons/BuildRounded'; - declare export { default as BuildSharp } from '@material-ui/icons/BuildSharp'; - declare export { - default as BuildTwoTone, - } from '@material-ui/icons/BuildTwoTone'; - declare export { default as BurstMode } from '@material-ui/icons/BurstMode'; - declare export { - default as BurstModeOutlined, - } from '@material-ui/icons/BurstModeOutlined'; - declare export { - default as BurstModeRounded, - } from '@material-ui/icons/BurstModeRounded'; - declare export { - default as BurstModeSharp, - } from '@material-ui/icons/BurstModeSharp'; - declare export { - default as BurstModeTwoTone, - } from '@material-ui/icons/BurstModeTwoTone'; - declare export { - default as BusinessCenter, - } from '@material-ui/icons/BusinessCenter'; - declare export { - default as BusinessCenterOutlined, - } from '@material-ui/icons/BusinessCenterOutlined'; - declare export { - default as BusinessCenterRounded, - } from '@material-ui/icons/BusinessCenterRounded'; - declare export { - default as BusinessCenterSharp, - } from '@material-ui/icons/BusinessCenterSharp'; - declare export { - default as BusinessCenterTwoTone, - } from '@material-ui/icons/BusinessCenterTwoTone'; - declare export { default as Business } from '@material-ui/icons/Business'; - declare export { - default as BusinessOutlined, - } from '@material-ui/icons/BusinessOutlined'; - declare export { - default as BusinessRounded, - } from '@material-ui/icons/BusinessRounded'; - declare export { - default as BusinessSharp, - } from '@material-ui/icons/BusinessSharp'; - declare export { - default as BusinessTwoTone, - } from '@material-ui/icons/BusinessTwoTone'; - declare export { default as Cached } from '@material-ui/icons/Cached'; - declare export { - default as CachedOutlined, - } from '@material-ui/icons/CachedOutlined'; - declare export { - default as CachedRounded, - } from '@material-ui/icons/CachedRounded'; - declare export { - default as CachedSharp, - } from '@material-ui/icons/CachedSharp'; - declare export { - default as CachedTwoTone, - } from '@material-ui/icons/CachedTwoTone'; - declare export { default as Cake } from '@material-ui/icons/Cake'; - declare export { - default as CakeOutlined, - } from '@material-ui/icons/CakeOutlined'; - declare export { - default as CakeRounded, - } from '@material-ui/icons/CakeRounded'; - declare export { default as CakeSharp } from '@material-ui/icons/CakeSharp'; - declare export { - default as CakeTwoTone, - } from '@material-ui/icons/CakeTwoTone'; - declare export { - default as CalendarToday, - } from '@material-ui/icons/CalendarToday'; - declare export { - default as CalendarTodayOutlined, - } from '@material-ui/icons/CalendarTodayOutlined'; - declare export { - default as CalendarTodayRounded, - } from '@material-ui/icons/CalendarTodayRounded'; - declare export { - default as CalendarTodaySharp, - } from '@material-ui/icons/CalendarTodaySharp'; - declare export { - default as CalendarTodayTwoTone, - } from '@material-ui/icons/CalendarTodayTwoTone'; - declare export { - default as CalendarViewDay, - } from '@material-ui/icons/CalendarViewDay'; - declare export { - default as CalendarViewDayOutlined, - } from '@material-ui/icons/CalendarViewDayOutlined'; - declare export { - default as CalendarViewDayRounded, - } from '@material-ui/icons/CalendarViewDayRounded'; - declare export { - default as CalendarViewDaySharp, - } from '@material-ui/icons/CalendarViewDaySharp'; - declare export { - default as CalendarViewDayTwoTone, - } from '@material-ui/icons/CalendarViewDayTwoTone'; - declare export { default as CallEnd } from '@material-ui/icons/CallEnd'; - declare export { - default as CallEndOutlined, - } from '@material-ui/icons/CallEndOutlined'; - declare export { - default as CallEndRounded, - } from '@material-ui/icons/CallEndRounded'; - declare export { - default as CallEndSharp, - } from '@material-ui/icons/CallEndSharp'; - declare export { - default as CallEndTwoTone, - } from '@material-ui/icons/CallEndTwoTone'; - declare export { default as Call } from '@material-ui/icons/Call'; - declare export { default as CallMade } from '@material-ui/icons/CallMade'; - declare export { - default as CallMadeOutlined, - } from '@material-ui/icons/CallMadeOutlined'; - declare export { - default as CallMadeRounded, - } from '@material-ui/icons/CallMadeRounded'; - declare export { - default as CallMadeSharp, - } from '@material-ui/icons/CallMadeSharp'; - declare export { - default as CallMadeTwoTone, - } from '@material-ui/icons/CallMadeTwoTone'; - declare export { default as CallMerge } from '@material-ui/icons/CallMerge'; - declare export { - default as CallMergeOutlined, - } from '@material-ui/icons/CallMergeOutlined'; - declare export { - default as CallMergeRounded, - } from '@material-ui/icons/CallMergeRounded'; - declare export { - default as CallMergeSharp, - } from '@material-ui/icons/CallMergeSharp'; - declare export { - default as CallMergeTwoTone, - } from '@material-ui/icons/CallMergeTwoTone'; - declare export { default as CallMissed } from '@material-ui/icons/CallMissed'; - declare export { - default as CallMissedOutgoing, - } from '@material-ui/icons/CallMissedOutgoing'; - declare export { - default as CallMissedOutgoingOutlined, - } from '@material-ui/icons/CallMissedOutgoingOutlined'; - declare export { - default as CallMissedOutgoingRounded, - } from '@material-ui/icons/CallMissedOutgoingRounded'; - declare export { - default as CallMissedOutgoingSharp, - } from '@material-ui/icons/CallMissedOutgoingSharp'; - declare export { - default as CallMissedOutgoingTwoTone, - } from '@material-ui/icons/CallMissedOutgoingTwoTone'; - declare export { - default as CallMissedOutlined, - } from '@material-ui/icons/CallMissedOutlined'; - declare export { - default as CallMissedRounded, - } from '@material-ui/icons/CallMissedRounded'; - declare export { - default as CallMissedSharp, - } from '@material-ui/icons/CallMissedSharp'; - declare export { - default as CallMissedTwoTone, - } from '@material-ui/icons/CallMissedTwoTone'; - declare export { - default as CallOutlined, - } from '@material-ui/icons/CallOutlined'; - declare export { - default as CallReceived, - } from '@material-ui/icons/CallReceived'; - declare export { - default as CallReceivedOutlined, - } from '@material-ui/icons/CallReceivedOutlined'; - declare export { - default as CallReceivedRounded, - } from '@material-ui/icons/CallReceivedRounded'; - declare export { - default as CallReceivedSharp, - } from '@material-ui/icons/CallReceivedSharp'; - declare export { - default as CallReceivedTwoTone, - } from '@material-ui/icons/CallReceivedTwoTone'; - declare export { - default as CallRounded, - } from '@material-ui/icons/CallRounded'; - declare export { default as CallSharp } from '@material-ui/icons/CallSharp'; - declare export { default as CallSplit } from '@material-ui/icons/CallSplit'; - declare export { - default as CallSplitOutlined, - } from '@material-ui/icons/CallSplitOutlined'; - declare export { - default as CallSplitRounded, - } from '@material-ui/icons/CallSplitRounded'; - declare export { - default as CallSplitSharp, - } from '@material-ui/icons/CallSplitSharp'; - declare export { - default as CallSplitTwoTone, - } from '@material-ui/icons/CallSplitTwoTone'; - declare export { - default as CallToAction, - } from '@material-ui/icons/CallToAction'; - declare export { - default as CallToActionOutlined, - } from '@material-ui/icons/CallToActionOutlined'; - declare export { - default as CallToActionRounded, - } from '@material-ui/icons/CallToActionRounded'; - declare export { - default as CallToActionSharp, - } from '@material-ui/icons/CallToActionSharp'; - declare export { - default as CallToActionTwoTone, - } from '@material-ui/icons/CallToActionTwoTone'; - declare export { - default as CallTwoTone, - } from '@material-ui/icons/CallTwoTone'; - declare export { default as CameraAlt } from '@material-ui/icons/CameraAlt'; - declare export { - default as CameraAltOutlined, - } from '@material-ui/icons/CameraAltOutlined'; - declare export { - default as CameraAltRounded, - } from '@material-ui/icons/CameraAltRounded'; - declare export { - default as CameraAltSharp, - } from '@material-ui/icons/CameraAltSharp'; - declare export { - default as CameraAltTwoTone, - } from '@material-ui/icons/CameraAltTwoTone'; - declare export { - default as CameraEnhance, - } from '@material-ui/icons/CameraEnhance'; - declare export { - default as CameraEnhanceOutlined, - } from '@material-ui/icons/CameraEnhanceOutlined'; - declare export { - default as CameraEnhanceRounded, - } from '@material-ui/icons/CameraEnhanceRounded'; - declare export { - default as CameraEnhanceSharp, - } from '@material-ui/icons/CameraEnhanceSharp'; - declare export { - default as CameraEnhanceTwoTone, - } from '@material-ui/icons/CameraEnhanceTwoTone'; - declare export { - default as CameraFront, - } from '@material-ui/icons/CameraFront'; - declare export { - default as CameraFrontOutlined, - } from '@material-ui/icons/CameraFrontOutlined'; - declare export { - default as CameraFrontRounded, - } from '@material-ui/icons/CameraFrontRounded'; - declare export { - default as CameraFrontSharp, - } from '@material-ui/icons/CameraFrontSharp'; - declare export { - default as CameraFrontTwoTone, - } from '@material-ui/icons/CameraFrontTwoTone'; - declare export { default as Camera } from '@material-ui/icons/Camera'; - declare export { - default as CameraOutlined, - } from '@material-ui/icons/CameraOutlined'; - declare export { default as CameraRear } from '@material-ui/icons/CameraRear'; - declare export { - default as CameraRearOutlined, - } from '@material-ui/icons/CameraRearOutlined'; - declare export { - default as CameraRearRounded, - } from '@material-ui/icons/CameraRearRounded'; - declare export { - default as CameraRearSharp, - } from '@material-ui/icons/CameraRearSharp'; - declare export { - default as CameraRearTwoTone, - } from '@material-ui/icons/CameraRearTwoTone'; - declare export { default as CameraRoll } from '@material-ui/icons/CameraRoll'; - declare export { - default as CameraRollOutlined, - } from '@material-ui/icons/CameraRollOutlined'; - declare export { - default as CameraRollRounded, - } from '@material-ui/icons/CameraRollRounded'; - declare export { - default as CameraRollSharp, - } from '@material-ui/icons/CameraRollSharp'; - declare export { - default as CameraRollTwoTone, - } from '@material-ui/icons/CameraRollTwoTone'; - declare export { - default as CameraRounded, - } from '@material-ui/icons/CameraRounded'; - declare export { - default as CameraSharp, - } from '@material-ui/icons/CameraSharp'; - declare export { - default as CameraTwoTone, - } from '@material-ui/icons/CameraTwoTone'; - declare export { default as Cancel } from '@material-ui/icons/Cancel'; - declare export { - default as CancelOutlined, - } from '@material-ui/icons/CancelOutlined'; - declare export { - default as CancelPresentation, - } from '@material-ui/icons/CancelPresentation'; - declare export { - default as CancelPresentationOutlined, - } from '@material-ui/icons/CancelPresentationOutlined'; - declare export { - default as CancelPresentationRounded, - } from '@material-ui/icons/CancelPresentationRounded'; - declare export { - default as CancelPresentationSharp, - } from '@material-ui/icons/CancelPresentationSharp'; - declare export { - default as CancelPresentationTwoTone, - } from '@material-ui/icons/CancelPresentationTwoTone'; - declare export { - default as CancelRounded, - } from '@material-ui/icons/CancelRounded'; - declare export { - default as CancelSharp, - } from '@material-ui/icons/CancelSharp'; - declare export { - default as CancelTwoTone, - } from '@material-ui/icons/CancelTwoTone'; - declare export { - default as CardGiftcard, - } from '@material-ui/icons/CardGiftcard'; - declare export { - default as CardGiftcardOutlined, - } from '@material-ui/icons/CardGiftcardOutlined'; - declare export { - default as CardGiftcardRounded, - } from '@material-ui/icons/CardGiftcardRounded'; - declare export { - default as CardGiftcardSharp, - } from '@material-ui/icons/CardGiftcardSharp'; - declare export { - default as CardGiftcardTwoTone, - } from '@material-ui/icons/CardGiftcardTwoTone'; - declare export { - default as CardMembership, - } from '@material-ui/icons/CardMembership'; - declare export { - default as CardMembershipOutlined, - } from '@material-ui/icons/CardMembershipOutlined'; - declare export { - default as CardMembershipRounded, - } from '@material-ui/icons/CardMembershipRounded'; - declare export { - default as CardMembershipSharp, - } from '@material-ui/icons/CardMembershipSharp'; - declare export { - default as CardMembershipTwoTone, - } from '@material-ui/icons/CardMembershipTwoTone'; - declare export { default as CardTravel } from '@material-ui/icons/CardTravel'; - declare export { - default as CardTravelOutlined, - } from '@material-ui/icons/CardTravelOutlined'; - declare export { - default as CardTravelRounded, - } from '@material-ui/icons/CardTravelRounded'; - declare export { - default as CardTravelSharp, - } from '@material-ui/icons/CardTravelSharp'; - declare export { - default as CardTravelTwoTone, - } from '@material-ui/icons/CardTravelTwoTone'; - declare export { default as Casino } from '@material-ui/icons/Casino'; - declare export { - default as CasinoOutlined, - } from '@material-ui/icons/CasinoOutlined'; - declare export { - default as CasinoRounded, - } from '@material-ui/icons/CasinoRounded'; - declare export { - default as CasinoSharp, - } from '@material-ui/icons/CasinoSharp'; - declare export { - default as CasinoTwoTone, - } from '@material-ui/icons/CasinoTwoTone'; - declare export { - default as CastConnected, - } from '@material-ui/icons/CastConnected'; - declare export { - default as CastConnectedOutlined, - } from '@material-ui/icons/CastConnectedOutlined'; - declare export { - default as CastConnectedRounded, - } from '@material-ui/icons/CastConnectedRounded'; - declare export { - default as CastConnectedSharp, - } from '@material-ui/icons/CastConnectedSharp'; - declare export { - default as CastConnectedTwoTone, - } from '@material-ui/icons/CastConnectedTwoTone'; - declare export { - default as CastForEducation, - } from '@material-ui/icons/CastForEducation'; - declare export { - default as CastForEducationOutlined, - } from '@material-ui/icons/CastForEducationOutlined'; - declare export { - default as CastForEducationRounded, - } from '@material-ui/icons/CastForEducationRounded'; - declare export { - default as CastForEducationSharp, - } from '@material-ui/icons/CastForEducationSharp'; - declare export { - default as CastForEducationTwoTone, - } from '@material-ui/icons/CastForEducationTwoTone'; - declare export { default as Cast } from '@material-ui/icons/Cast'; - declare export { - default as CastOutlined, - } from '@material-ui/icons/CastOutlined'; - declare export { - default as CastRounded, - } from '@material-ui/icons/CastRounded'; - declare export { default as CastSharp } from '@material-ui/icons/CastSharp'; - declare export { - default as CastTwoTone, - } from '@material-ui/icons/CastTwoTone'; - declare export { default as Category } from '@material-ui/icons/Category'; - declare export { - default as CategoryOutlined, - } from '@material-ui/icons/CategoryOutlined'; - declare export { - default as CategoryRounded, - } from '@material-ui/icons/CategoryRounded'; - declare export { - default as CategorySharp, - } from '@material-ui/icons/CategorySharp'; - declare export { - default as CategoryTwoTone, - } from '@material-ui/icons/CategoryTwoTone'; - declare export { default as CellWifi } from '@material-ui/icons/CellWifi'; - declare export { - default as CellWifiOutlined, - } from '@material-ui/icons/CellWifiOutlined'; - declare export { - default as CellWifiRounded, - } from '@material-ui/icons/CellWifiRounded'; - declare export { - default as CellWifiSharp, - } from '@material-ui/icons/CellWifiSharp'; - declare export { - default as CellWifiTwoTone, - } from '@material-ui/icons/CellWifiTwoTone'; - declare export { - default as CenterFocusStrong, - } from '@material-ui/icons/CenterFocusStrong'; - declare export { - default as CenterFocusStrongOutlined, - } from '@material-ui/icons/CenterFocusStrongOutlined'; - declare export { - default as CenterFocusStrongRounded, - } from '@material-ui/icons/CenterFocusStrongRounded'; - declare export { - default as CenterFocusStrongSharp, - } from '@material-ui/icons/CenterFocusStrongSharp'; - declare export { - default as CenterFocusStrongTwoTone, - } from '@material-ui/icons/CenterFocusStrongTwoTone'; - declare export { - default as CenterFocusWeak, - } from '@material-ui/icons/CenterFocusWeak'; - declare export { - default as CenterFocusWeakOutlined, - } from '@material-ui/icons/CenterFocusWeakOutlined'; - declare export { - default as CenterFocusWeakRounded, - } from '@material-ui/icons/CenterFocusWeakRounded'; - declare export { - default as CenterFocusWeakSharp, - } from '@material-ui/icons/CenterFocusWeakSharp'; - declare export { - default as CenterFocusWeakTwoTone, - } from '@material-ui/icons/CenterFocusWeakTwoTone'; - declare export { - default as ChangeHistory, - } from '@material-ui/icons/ChangeHistory'; - declare export { - default as ChangeHistoryOutlined, - } from '@material-ui/icons/ChangeHistoryOutlined'; - declare export { - default as ChangeHistoryRounded, - } from '@material-ui/icons/ChangeHistoryRounded'; - declare export { - default as ChangeHistorySharp, - } from '@material-ui/icons/ChangeHistorySharp'; - declare export { - default as ChangeHistoryTwoTone, - } from '@material-ui/icons/ChangeHistoryTwoTone'; - declare export { default as ChatBubble } from '@material-ui/icons/ChatBubble'; - declare export { - default as ChatBubbleOutlined, - } from '@material-ui/icons/ChatBubbleOutlined'; - declare export { - default as ChatBubbleOutline, - } from '@material-ui/icons/ChatBubbleOutline'; - declare export { - default as ChatBubbleOutlineOutlined, - } from '@material-ui/icons/ChatBubbleOutlineOutlined'; - declare export { - default as ChatBubbleOutlineRounded, - } from '@material-ui/icons/ChatBubbleOutlineRounded'; - declare export { - default as ChatBubbleOutlineSharp, - } from '@material-ui/icons/ChatBubbleOutlineSharp'; - declare export { - default as ChatBubbleOutlineTwoTone, - } from '@material-ui/icons/ChatBubbleOutlineTwoTone'; - declare export { - default as ChatBubbleRounded, - } from '@material-ui/icons/ChatBubbleRounded'; - declare export { - default as ChatBubbleSharp, - } from '@material-ui/icons/ChatBubbleSharp'; - declare export { - default as ChatBubbleTwoTone, - } from '@material-ui/icons/ChatBubbleTwoTone'; - declare export { default as Chat } from '@material-ui/icons/Chat'; - declare export { - default as ChatOutlined, - } from '@material-ui/icons/ChatOutlined'; - declare export { - default as ChatRounded, - } from '@material-ui/icons/ChatRounded'; - declare export { default as ChatSharp } from '@material-ui/icons/ChatSharp'; - declare export { - default as ChatTwoTone, - } from '@material-ui/icons/ChatTwoTone'; - declare export { default as CheckBox } from '@material-ui/icons/CheckBox'; - declare export { - default as CheckBoxOutlineBlank, - } from '@material-ui/icons/CheckBoxOutlineBlank'; - declare export { - default as CheckBoxOutlineBlankOutlined, - } from '@material-ui/icons/CheckBoxOutlineBlankOutlined'; - declare export { - default as CheckBoxOutlineBlankRounded, - } from '@material-ui/icons/CheckBoxOutlineBlankRounded'; - declare export { - default as CheckBoxOutlineBlankSharp, - } from '@material-ui/icons/CheckBoxOutlineBlankSharp'; - declare export { - default as CheckBoxOutlineBlankTwoTone, - } from '@material-ui/icons/CheckBoxOutlineBlankTwoTone'; - declare export { - default as CheckBoxOutlined, - } from '@material-ui/icons/CheckBoxOutlined'; - declare export { - default as CheckBoxRounded, - } from '@material-ui/icons/CheckBoxRounded'; - declare export { - default as CheckBoxSharp, - } from '@material-ui/icons/CheckBoxSharp'; - declare export { - default as CheckBoxTwoTone, - } from '@material-ui/icons/CheckBoxTwoTone'; - declare export { - default as CheckCircle, - } from '@material-ui/icons/CheckCircle'; - declare export { - default as CheckCircleOutlined, - } from '@material-ui/icons/CheckCircleOutlined'; - declare export { - default as CheckCircleOutline, - } from '@material-ui/icons/CheckCircleOutline'; - declare export { - default as CheckCircleOutlineOutlined, - } from '@material-ui/icons/CheckCircleOutlineOutlined'; - declare export { - default as CheckCircleOutlineRounded, - } from '@material-ui/icons/CheckCircleOutlineRounded'; - declare export { - default as CheckCircleOutlineSharp, - } from '@material-ui/icons/CheckCircleOutlineSharp'; - declare export { - default as CheckCircleOutlineTwoTone, - } from '@material-ui/icons/CheckCircleOutlineTwoTone'; - declare export { - default as CheckCircleRounded, - } from '@material-ui/icons/CheckCircleRounded'; - declare export { - default as CheckCircleSharp, - } from '@material-ui/icons/CheckCircleSharp'; - declare export { - default as CheckCircleTwoTone, - } from '@material-ui/icons/CheckCircleTwoTone'; - declare export { default as Check } from '@material-ui/icons/Check'; - declare export { - default as CheckOutlined, - } from '@material-ui/icons/CheckOutlined'; - declare export { - default as CheckRounded, - } from '@material-ui/icons/CheckRounded'; - declare export { default as CheckSharp } from '@material-ui/icons/CheckSharp'; - declare export { - default as CheckTwoTone, - } from '@material-ui/icons/CheckTwoTone'; - declare export { - default as ChevronLeft, - } from '@material-ui/icons/ChevronLeft'; - declare export { - default as ChevronLeftOutlined, - } from '@material-ui/icons/ChevronLeftOutlined'; - declare export { - default as ChevronLeftRounded, - } from '@material-ui/icons/ChevronLeftRounded'; - declare export { - default as ChevronLeftSharp, - } from '@material-ui/icons/ChevronLeftSharp'; - declare export { - default as ChevronLeftTwoTone, - } from '@material-ui/icons/ChevronLeftTwoTone'; - declare export { - default as ChevronRight, - } from '@material-ui/icons/ChevronRight'; - declare export { - default as ChevronRightOutlined, - } from '@material-ui/icons/ChevronRightOutlined'; - declare export { - default as ChevronRightRounded, - } from '@material-ui/icons/ChevronRightRounded'; - declare export { - default as ChevronRightSharp, - } from '@material-ui/icons/ChevronRightSharp'; - declare export { - default as ChevronRightTwoTone, - } from '@material-ui/icons/ChevronRightTwoTone'; - declare export { default as ChildCare } from '@material-ui/icons/ChildCare'; - declare export { - default as ChildCareOutlined, - } from '@material-ui/icons/ChildCareOutlined'; - declare export { - default as ChildCareRounded, - } from '@material-ui/icons/ChildCareRounded'; - declare export { - default as ChildCareSharp, - } from '@material-ui/icons/ChildCareSharp'; - declare export { - default as ChildCareTwoTone, - } from '@material-ui/icons/ChildCareTwoTone'; - declare export { - default as ChildFriendly, - } from '@material-ui/icons/ChildFriendly'; - declare export { - default as ChildFriendlyOutlined, - } from '@material-ui/icons/ChildFriendlyOutlined'; - declare export { - default as ChildFriendlyRounded, - } from '@material-ui/icons/ChildFriendlyRounded'; - declare export { - default as ChildFriendlySharp, - } from '@material-ui/icons/ChildFriendlySharp'; - declare export { - default as ChildFriendlyTwoTone, - } from '@material-ui/icons/ChildFriendlyTwoTone'; - declare export { - default as ChromeReaderMode, - } from '@material-ui/icons/ChromeReaderMode'; - declare export { - default as ChromeReaderModeOutlined, - } from '@material-ui/icons/ChromeReaderModeOutlined'; - declare export { - default as ChromeReaderModeRounded, - } from '@material-ui/icons/ChromeReaderModeRounded'; - declare export { - default as ChromeReaderModeSharp, - } from '@material-ui/icons/ChromeReaderModeSharp'; - declare export { - default as ChromeReaderModeTwoTone, - } from '@material-ui/icons/ChromeReaderModeTwoTone'; - declare export { default as Class } from '@material-ui/icons/Class'; - declare export { - default as ClassOutlined, - } from '@material-ui/icons/ClassOutlined'; - declare export { - default as ClassRounded, - } from '@material-ui/icons/ClassRounded'; - declare export { default as ClassSharp } from '@material-ui/icons/ClassSharp'; - declare export { - default as ClassTwoTone, - } from '@material-ui/icons/ClassTwoTone'; - declare export { default as ClearAll } from '@material-ui/icons/ClearAll'; - declare export { - default as ClearAllOutlined, - } from '@material-ui/icons/ClearAllOutlined'; - declare export { - default as ClearAllRounded, - } from '@material-ui/icons/ClearAllRounded'; - declare export { - default as ClearAllSharp, - } from '@material-ui/icons/ClearAllSharp'; - declare export { - default as ClearAllTwoTone, - } from '@material-ui/icons/ClearAllTwoTone'; - declare export { default as Clear } from '@material-ui/icons/Clear'; - declare export { - default as ClearOutlined, - } from '@material-ui/icons/ClearOutlined'; - declare export { - default as ClearRounded, - } from '@material-ui/icons/ClearRounded'; - declare export { default as ClearSharp } from '@material-ui/icons/ClearSharp'; - declare export { - default as ClearTwoTone, - } from '@material-ui/icons/ClearTwoTone'; - declare export { - default as ClosedCaption, - } from '@material-ui/icons/ClosedCaption'; - declare export { - default as ClosedCaptionOutlined, - } from '@material-ui/icons/ClosedCaptionOutlined'; - declare export { - default as ClosedCaptionRounded, - } from '@material-ui/icons/ClosedCaptionRounded'; - declare export { - default as ClosedCaptionSharp, - } from '@material-ui/icons/ClosedCaptionSharp'; - declare export { - default as ClosedCaptionTwoTone, - } from '@material-ui/icons/ClosedCaptionTwoTone'; - declare export { default as Close } from '@material-ui/icons/Close'; - declare export { - default as CloseOutlined, - } from '@material-ui/icons/CloseOutlined'; - declare export { - default as CloseRounded, - } from '@material-ui/icons/CloseRounded'; - declare export { default as CloseSharp } from '@material-ui/icons/CloseSharp'; - declare export { - default as CloseTwoTone, - } from '@material-ui/icons/CloseTwoTone'; - declare export { - default as CloudCircle, - } from '@material-ui/icons/CloudCircle'; - declare export { - default as CloudCircleOutlined, - } from '@material-ui/icons/CloudCircleOutlined'; - declare export { - default as CloudCircleRounded, - } from '@material-ui/icons/CloudCircleRounded'; - declare export { - default as CloudCircleSharp, - } from '@material-ui/icons/CloudCircleSharp'; - declare export { - default as CloudCircleTwoTone, - } from '@material-ui/icons/CloudCircleTwoTone'; - declare export { default as CloudDone } from '@material-ui/icons/CloudDone'; - declare export { - default as CloudDoneOutlined, - } from '@material-ui/icons/CloudDoneOutlined'; - declare export { - default as CloudDoneRounded, - } from '@material-ui/icons/CloudDoneRounded'; - declare export { - default as CloudDoneSharp, - } from '@material-ui/icons/CloudDoneSharp'; - declare export { - default as CloudDoneTwoTone, - } from '@material-ui/icons/CloudDoneTwoTone'; - declare export { - default as CloudDownload, - } from '@material-ui/icons/CloudDownload'; - declare export { - default as CloudDownloadOutlined, - } from '@material-ui/icons/CloudDownloadOutlined'; - declare export { - default as CloudDownloadRounded, - } from '@material-ui/icons/CloudDownloadRounded'; - declare export { - default as CloudDownloadSharp, - } from '@material-ui/icons/CloudDownloadSharp'; - declare export { - default as CloudDownloadTwoTone, - } from '@material-ui/icons/CloudDownloadTwoTone'; - declare export { default as Cloud } from '@material-ui/icons/Cloud'; - declare export { default as CloudOff } from '@material-ui/icons/CloudOff'; - declare export { - default as CloudOffOutlined, - } from '@material-ui/icons/CloudOffOutlined'; - declare export { - default as CloudOffRounded, - } from '@material-ui/icons/CloudOffRounded'; - declare export { - default as CloudOffSharp, - } from '@material-ui/icons/CloudOffSharp'; - declare export { - default as CloudOffTwoTone, - } from '@material-ui/icons/CloudOffTwoTone'; - declare export { - default as CloudOutlined, - } from '@material-ui/icons/CloudOutlined'; - declare export { default as CloudQueue } from '@material-ui/icons/CloudQueue'; - declare export { - default as CloudQueueOutlined, - } from '@material-ui/icons/CloudQueueOutlined'; - declare export { - default as CloudQueueRounded, - } from '@material-ui/icons/CloudQueueRounded'; - declare export { - default as CloudQueueSharp, - } from '@material-ui/icons/CloudQueueSharp'; - declare export { - default as CloudQueueTwoTone, - } from '@material-ui/icons/CloudQueueTwoTone'; - declare export { - default as CloudRounded, - } from '@material-ui/icons/CloudRounded'; - declare export { default as CloudSharp } from '@material-ui/icons/CloudSharp'; - declare export { - default as CloudTwoTone, - } from '@material-ui/icons/CloudTwoTone'; - declare export { - default as CloudUpload, - } from '@material-ui/icons/CloudUpload'; - declare export { - default as CloudUploadOutlined, - } from '@material-ui/icons/CloudUploadOutlined'; - declare export { - default as CloudUploadRounded, - } from '@material-ui/icons/CloudUploadRounded'; - declare export { - default as CloudUploadSharp, - } from '@material-ui/icons/CloudUploadSharp'; - declare export { - default as CloudUploadTwoTone, - } from '@material-ui/icons/CloudUploadTwoTone'; - declare export { default as Code } from '@material-ui/icons/Code'; - declare export { - default as CodeOutlined, - } from '@material-ui/icons/CodeOutlined'; - declare export { - default as CodeRounded, - } from '@material-ui/icons/CodeRounded'; - declare export { default as CodeSharp } from '@material-ui/icons/CodeSharp'; - declare export { - default as CodeTwoTone, - } from '@material-ui/icons/CodeTwoTone'; - declare export { - default as CollectionsBookmark, - } from '@material-ui/icons/CollectionsBookmark'; - declare export { - default as CollectionsBookmarkOutlined, - } from '@material-ui/icons/CollectionsBookmarkOutlined'; - declare export { - default as CollectionsBookmarkRounded, - } from '@material-ui/icons/CollectionsBookmarkRounded'; - declare export { - default as CollectionsBookmarkSharp, - } from '@material-ui/icons/CollectionsBookmarkSharp'; - declare export { - default as CollectionsBookmarkTwoTone, - } from '@material-ui/icons/CollectionsBookmarkTwoTone'; - declare export { - default as Collections, - } from '@material-ui/icons/Collections'; - declare export { - default as CollectionsOutlined, - } from '@material-ui/icons/CollectionsOutlined'; - declare export { - default as CollectionsRounded, - } from '@material-ui/icons/CollectionsRounded'; - declare export { - default as CollectionsSharp, - } from '@material-ui/icons/CollectionsSharp'; - declare export { - default as CollectionsTwoTone, - } from '@material-ui/icons/CollectionsTwoTone'; - declare export { default as Colorize } from '@material-ui/icons/Colorize'; - declare export { - default as ColorizeOutlined, - } from '@material-ui/icons/ColorizeOutlined'; - declare export { - default as ColorizeRounded, - } from '@material-ui/icons/ColorizeRounded'; - declare export { - default as ColorizeSharp, - } from '@material-ui/icons/ColorizeSharp'; - declare export { - default as ColorizeTwoTone, - } from '@material-ui/icons/ColorizeTwoTone'; - declare export { default as ColorLens } from '@material-ui/icons/ColorLens'; - declare export { - default as ColorLensOutlined, - } from '@material-ui/icons/ColorLensOutlined'; - declare export { - default as ColorLensRounded, - } from '@material-ui/icons/ColorLensRounded'; - declare export { - default as ColorLensSharp, - } from '@material-ui/icons/ColorLensSharp'; - declare export { - default as ColorLensTwoTone, - } from '@material-ui/icons/ColorLensTwoTone'; - declare export { default as Comment } from '@material-ui/icons/Comment'; - declare export { - default as CommentOutlined, - } from '@material-ui/icons/CommentOutlined'; - declare export { - default as CommentRounded, - } from '@material-ui/icons/CommentRounded'; - declare export { - default as CommentSharp, - } from '@material-ui/icons/CommentSharp'; - declare export { - default as CommentTwoTone, - } from '@material-ui/icons/CommentTwoTone'; - declare export { default as Commute } from '@material-ui/icons/Commute'; - declare export { - default as CommuteOutlined, - } from '@material-ui/icons/CommuteOutlined'; - declare export { - default as CommuteRounded, - } from '@material-ui/icons/CommuteRounded'; - declare export { - default as CommuteSharp, - } from '@material-ui/icons/CommuteSharp'; - declare export { - default as CommuteTwoTone, - } from '@material-ui/icons/CommuteTwoTone'; - declare export { - default as CompareArrows, - } from '@material-ui/icons/CompareArrows'; - declare export { - default as CompareArrowsOutlined, - } from '@material-ui/icons/CompareArrowsOutlined'; - declare export { - default as CompareArrowsRounded, - } from '@material-ui/icons/CompareArrowsRounded'; - declare export { - default as CompareArrowsSharp, - } from '@material-ui/icons/CompareArrowsSharp'; - declare export { - default as CompareArrowsTwoTone, - } from '@material-ui/icons/CompareArrowsTwoTone'; - declare export { default as Compare } from '@material-ui/icons/Compare'; - declare export { - default as CompareOutlined, - } from '@material-ui/icons/CompareOutlined'; - declare export { - default as CompareRounded, - } from '@material-ui/icons/CompareRounded'; - declare export { - default as CompareSharp, - } from '@material-ui/icons/CompareSharp'; - declare export { - default as CompareTwoTone, - } from '@material-ui/icons/CompareTwoTone'; - declare export { - default as CompassCalibration, - } from '@material-ui/icons/CompassCalibration'; - declare export { - default as CompassCalibrationOutlined, - } from '@material-ui/icons/CompassCalibrationOutlined'; - declare export { - default as CompassCalibrationRounded, - } from '@material-ui/icons/CompassCalibrationRounded'; - declare export { - default as CompassCalibrationSharp, - } from '@material-ui/icons/CompassCalibrationSharp'; - declare export { - default as CompassCalibrationTwoTone, - } from '@material-ui/icons/CompassCalibrationTwoTone'; - declare export { default as Computer } from '@material-ui/icons/Computer'; - declare export { - default as ComputerOutlined, - } from '@material-ui/icons/ComputerOutlined'; - declare export { - default as ComputerRounded, - } from '@material-ui/icons/ComputerRounded'; - declare export { - default as ComputerSharp, - } from '@material-ui/icons/ComputerSharp'; - declare export { - default as ComputerTwoTone, - } from '@material-ui/icons/ComputerTwoTone'; - declare export { - default as ConfirmationNumber, - } from '@material-ui/icons/ConfirmationNumber'; - declare export { - default as ConfirmationNumberOutlined, - } from '@material-ui/icons/ConfirmationNumberOutlined'; - declare export { - default as ConfirmationNumberRounded, - } from '@material-ui/icons/ConfirmationNumberRounded'; - declare export { - default as ConfirmationNumberSharp, - } from '@material-ui/icons/ConfirmationNumberSharp'; - declare export { - default as ConfirmationNumberTwoTone, - } from '@material-ui/icons/ConfirmationNumberTwoTone'; - declare export { - default as ContactMail, - } from '@material-ui/icons/ContactMail'; - declare export { - default as ContactMailOutlined, - } from '@material-ui/icons/ContactMailOutlined'; - declare export { - default as ContactMailRounded, - } from '@material-ui/icons/ContactMailRounded'; - declare export { - default as ContactMailSharp, - } from '@material-ui/icons/ContactMailSharp'; - declare export { - default as ContactMailTwoTone, - } from '@material-ui/icons/ContactMailTwoTone'; - declare export { - default as ContactPhone, - } from '@material-ui/icons/ContactPhone'; - declare export { - default as ContactPhoneOutlined, - } from '@material-ui/icons/ContactPhoneOutlined'; - declare export { - default as ContactPhoneRounded, - } from '@material-ui/icons/ContactPhoneRounded'; - declare export { - default as ContactPhoneSharp, - } from '@material-ui/icons/ContactPhoneSharp'; - declare export { - default as ContactPhoneTwoTone, - } from '@material-ui/icons/ContactPhoneTwoTone'; - declare export { default as Contacts } from '@material-ui/icons/Contacts'; - declare export { - default as ContactsOutlined, - } from '@material-ui/icons/ContactsOutlined'; - declare export { - default as ContactsRounded, - } from '@material-ui/icons/ContactsRounded'; - declare export { - default as ContactsSharp, - } from '@material-ui/icons/ContactsSharp'; - declare export { - default as ContactsTwoTone, - } from '@material-ui/icons/ContactsTwoTone'; - declare export { - default as ContactSupport, - } from '@material-ui/icons/ContactSupport'; - declare export { - default as ContactSupportOutlined, - } from '@material-ui/icons/ContactSupportOutlined'; - declare export { - default as ContactSupportRounded, - } from '@material-ui/icons/ContactSupportRounded'; - declare export { - default as ContactSupportSharp, - } from '@material-ui/icons/ContactSupportSharp'; - declare export { - default as ContactSupportTwoTone, - } from '@material-ui/icons/ContactSupportTwoTone'; - declare export { - default as ControlCamera, - } from '@material-ui/icons/ControlCamera'; - declare export { - default as ControlCameraOutlined, - } from '@material-ui/icons/ControlCameraOutlined'; - declare export { - default as ControlCameraRounded, - } from '@material-ui/icons/ControlCameraRounded'; - declare export { - default as ControlCameraSharp, - } from '@material-ui/icons/ControlCameraSharp'; - declare export { - default as ControlCameraTwoTone, - } from '@material-ui/icons/ControlCameraTwoTone'; - declare export { - default as ControlPointDuplicate, - } from '@material-ui/icons/ControlPointDuplicate'; - declare export { - default as ControlPointDuplicateOutlined, - } from '@material-ui/icons/ControlPointDuplicateOutlined'; - declare export { - default as ControlPointDuplicateRounded, - } from '@material-ui/icons/ControlPointDuplicateRounded'; - declare export { - default as ControlPointDuplicateSharp, - } from '@material-ui/icons/ControlPointDuplicateSharp'; - declare export { - default as ControlPointDuplicateTwoTone, - } from '@material-ui/icons/ControlPointDuplicateTwoTone'; - declare export { - default as ControlPoint, - } from '@material-ui/icons/ControlPoint'; - declare export { - default as ControlPointOutlined, - } from '@material-ui/icons/ControlPointOutlined'; - declare export { - default as ControlPointRounded, - } from '@material-ui/icons/ControlPointRounded'; - declare export { - default as ControlPointSharp, - } from '@material-ui/icons/ControlPointSharp'; - declare export { - default as ControlPointTwoTone, - } from '@material-ui/icons/ControlPointTwoTone'; - declare export { default as Copyright } from '@material-ui/icons/Copyright'; - declare export { - default as CopyrightOutlined, - } from '@material-ui/icons/CopyrightOutlined'; - declare export { - default as CopyrightRounded, - } from '@material-ui/icons/CopyrightRounded'; - declare export { - default as CopyrightSharp, - } from '@material-ui/icons/CopyrightSharp'; - declare export { - default as CopyrightTwoTone, - } from '@material-ui/icons/CopyrightTwoTone'; - declare export { default as Create } from '@material-ui/icons/Create'; - declare export { - default as CreateNewFolder, - } from '@material-ui/icons/CreateNewFolder'; - declare export { - default as CreateNewFolderOutlined, - } from '@material-ui/icons/CreateNewFolderOutlined'; - declare export { - default as CreateNewFolderRounded, - } from '@material-ui/icons/CreateNewFolderRounded'; - declare export { - default as CreateNewFolderSharp, - } from '@material-ui/icons/CreateNewFolderSharp'; - declare export { - default as CreateNewFolderTwoTone, - } from '@material-ui/icons/CreateNewFolderTwoTone'; - declare export { - default as CreateOutlined, - } from '@material-ui/icons/CreateOutlined'; - declare export { - default as CreateRounded, - } from '@material-ui/icons/CreateRounded'; - declare export { - default as CreateSharp, - } from '@material-ui/icons/CreateSharp'; - declare export { - default as CreateTwoTone, - } from '@material-ui/icons/CreateTwoTone'; - declare export { default as CreditCard } from '@material-ui/icons/CreditCard'; - declare export { - default as CreditCardOutlined, - } from '@material-ui/icons/CreditCardOutlined'; - declare export { - default as CreditCardRounded, - } from '@material-ui/icons/CreditCardRounded'; - declare export { - default as CreditCardSharp, - } from '@material-ui/icons/CreditCardSharp'; - declare export { - default as CreditCardTwoTone, - } from '@material-ui/icons/CreditCardTwoTone'; - declare export { default as Crop169 } from '@material-ui/icons/Crop169'; - declare export { - default as Crop169Outlined, - } from '@material-ui/icons/Crop169Outlined'; - declare export { - default as Crop169Rounded, - } from '@material-ui/icons/Crop169Rounded'; - declare export { - default as Crop169Sharp, - } from '@material-ui/icons/Crop169Sharp'; - declare export { - default as Crop169TwoTone, - } from '@material-ui/icons/Crop169TwoTone'; - declare export { default as Crop32 } from '@material-ui/icons/Crop32'; - declare export { - default as Crop32Outlined, - } from '@material-ui/icons/Crop32Outlined'; - declare export { - default as Crop32Rounded, - } from '@material-ui/icons/Crop32Rounded'; - declare export { - default as Crop32Sharp, - } from '@material-ui/icons/Crop32Sharp'; - declare export { - default as Crop32TwoTone, - } from '@material-ui/icons/Crop32TwoTone'; - declare export { default as Crop54 } from '@material-ui/icons/Crop54'; - declare export { - default as Crop54Outlined, - } from '@material-ui/icons/Crop54Outlined'; - declare export { - default as Crop54Rounded, - } from '@material-ui/icons/Crop54Rounded'; - declare export { - default as Crop54Sharp, - } from '@material-ui/icons/Crop54Sharp'; - declare export { - default as Crop54TwoTone, - } from '@material-ui/icons/Crop54TwoTone'; - declare export { default as Crop75 } from '@material-ui/icons/Crop75'; - declare export { - default as Crop75Outlined, - } from '@material-ui/icons/Crop75Outlined'; - declare export { - default as Crop75Rounded, - } from '@material-ui/icons/Crop75Rounded'; - declare export { - default as Crop75Sharp, - } from '@material-ui/icons/Crop75Sharp'; - declare export { - default as Crop75TwoTone, - } from '@material-ui/icons/Crop75TwoTone'; - declare export { default as CropDin } from '@material-ui/icons/CropDin'; - declare export { - default as CropDinOutlined, - } from '@material-ui/icons/CropDinOutlined'; - declare export { - default as CropDinRounded, - } from '@material-ui/icons/CropDinRounded'; - declare export { - default as CropDinSharp, - } from '@material-ui/icons/CropDinSharp'; - declare export { - default as CropDinTwoTone, - } from '@material-ui/icons/CropDinTwoTone'; - declare export { default as CropFree } from '@material-ui/icons/CropFree'; - declare export { - default as CropFreeOutlined, - } from '@material-ui/icons/CropFreeOutlined'; - declare export { - default as CropFreeRounded, - } from '@material-ui/icons/CropFreeRounded'; - declare export { - default as CropFreeSharp, - } from '@material-ui/icons/CropFreeSharp'; - declare export { - default as CropFreeTwoTone, - } from '@material-ui/icons/CropFreeTwoTone'; - declare export { default as Crop } from '@material-ui/icons/Crop'; - declare export { - default as CropLandscape, - } from '@material-ui/icons/CropLandscape'; - declare export { - default as CropLandscapeOutlined, - } from '@material-ui/icons/CropLandscapeOutlined'; - declare export { - default as CropLandscapeRounded, - } from '@material-ui/icons/CropLandscapeRounded'; - declare export { - default as CropLandscapeSharp, - } from '@material-ui/icons/CropLandscapeSharp'; - declare export { - default as CropLandscapeTwoTone, - } from '@material-ui/icons/CropLandscapeTwoTone'; - declare export { - default as CropOriginal, - } from '@material-ui/icons/CropOriginal'; - declare export { - default as CropOriginalOutlined, - } from '@material-ui/icons/CropOriginalOutlined'; - declare export { - default as CropOriginalRounded, - } from '@material-ui/icons/CropOriginalRounded'; - declare export { - default as CropOriginalSharp, - } from '@material-ui/icons/CropOriginalSharp'; - declare export { - default as CropOriginalTwoTone, - } from '@material-ui/icons/CropOriginalTwoTone'; - declare export { - default as CropOutlined, - } from '@material-ui/icons/CropOutlined'; - declare export { - default as CropPortrait, - } from '@material-ui/icons/CropPortrait'; - declare export { - default as CropPortraitOutlined, - } from '@material-ui/icons/CropPortraitOutlined'; - declare export { - default as CropPortraitRounded, - } from '@material-ui/icons/CropPortraitRounded'; - declare export { - default as CropPortraitSharp, - } from '@material-ui/icons/CropPortraitSharp'; - declare export { - default as CropPortraitTwoTone, - } from '@material-ui/icons/CropPortraitTwoTone'; - declare export { default as CropRotate } from '@material-ui/icons/CropRotate'; - declare export { - default as CropRotateOutlined, - } from '@material-ui/icons/CropRotateOutlined'; - declare export { - default as CropRotateRounded, - } from '@material-ui/icons/CropRotateRounded'; - declare export { - default as CropRotateSharp, - } from '@material-ui/icons/CropRotateSharp'; - declare export { - default as CropRotateTwoTone, - } from '@material-ui/icons/CropRotateTwoTone'; - declare export { - default as CropRounded, - } from '@material-ui/icons/CropRounded'; - declare export { default as CropSharp } from '@material-ui/icons/CropSharp'; - declare export { default as CropSquare } from '@material-ui/icons/CropSquare'; - declare export { - default as CropSquareOutlined, - } from '@material-ui/icons/CropSquareOutlined'; - declare export { - default as CropSquareRounded, - } from '@material-ui/icons/CropSquareRounded'; - declare export { - default as CropSquareSharp, - } from '@material-ui/icons/CropSquareSharp'; - declare export { - default as CropSquareTwoTone, - } from '@material-ui/icons/CropSquareTwoTone'; - declare export { - default as CropTwoTone, - } from '@material-ui/icons/CropTwoTone'; - declare export { default as Dashboard } from '@material-ui/icons/Dashboard'; - declare export { - default as DashboardOutlined, - } from '@material-ui/icons/DashboardOutlined'; - declare export { - default as DashboardRounded, - } from '@material-ui/icons/DashboardRounded'; - declare export { - default as DashboardSharp, - } from '@material-ui/icons/DashboardSharp'; - declare export { - default as DashboardTwoTone, - } from '@material-ui/icons/DashboardTwoTone'; - declare export { default as DataUsage } from '@material-ui/icons/DataUsage'; - declare export { - default as DataUsageOutlined, - } from '@material-ui/icons/DataUsageOutlined'; - declare export { - default as DataUsageRounded, - } from '@material-ui/icons/DataUsageRounded'; - declare export { - default as DataUsageSharp, - } from '@material-ui/icons/DataUsageSharp'; - declare export { - default as DataUsageTwoTone, - } from '@material-ui/icons/DataUsageTwoTone'; - declare export { default as DateRange } from '@material-ui/icons/DateRange'; - declare export { - default as DateRangeOutlined, - } from '@material-ui/icons/DateRangeOutlined'; - declare export { - default as DateRangeRounded, - } from '@material-ui/icons/DateRangeRounded'; - declare export { - default as DateRangeSharp, - } from '@material-ui/icons/DateRangeSharp'; - declare export { - default as DateRangeTwoTone, - } from '@material-ui/icons/DateRangeTwoTone'; - declare export { default as Dehaze } from '@material-ui/icons/Dehaze'; - declare export { - default as DehazeOutlined, - } from '@material-ui/icons/DehazeOutlined'; - declare export { - default as DehazeRounded, - } from '@material-ui/icons/DehazeRounded'; - declare export { - default as DehazeSharp, - } from '@material-ui/icons/DehazeSharp'; - declare export { - default as DehazeTwoTone, - } from '@material-ui/icons/DehazeTwoTone'; - declare export { - default as DeleteForever, - } from '@material-ui/icons/DeleteForever'; - declare export { - default as DeleteForeverOutlined, - } from '@material-ui/icons/DeleteForeverOutlined'; - declare export { - default as DeleteForeverRounded, - } from '@material-ui/icons/DeleteForeverRounded'; - declare export { - default as DeleteForeverSharp, - } from '@material-ui/icons/DeleteForeverSharp'; - declare export { - default as DeleteForeverTwoTone, - } from '@material-ui/icons/DeleteForeverTwoTone'; - declare export { default as Delete } from '@material-ui/icons/Delete'; - declare export { - default as DeleteOutlined, - } from '@material-ui/icons/DeleteOutlined'; - declare export { - default as DeleteOutline, - } from '@material-ui/icons/DeleteOutline'; - declare export { - default as DeleteOutlineOutlined, - } from '@material-ui/icons/DeleteOutlineOutlined'; - declare export { - default as DeleteOutlineRounded, - } from '@material-ui/icons/DeleteOutlineRounded'; - declare export { - default as DeleteOutlineSharp, - } from '@material-ui/icons/DeleteOutlineSharp'; - declare export { - default as DeleteOutlineTwoTone, - } from '@material-ui/icons/DeleteOutlineTwoTone'; - declare export { - default as DeleteRounded, - } from '@material-ui/icons/DeleteRounded'; - declare export { - default as DeleteSharp, - } from '@material-ui/icons/DeleteSharp'; - declare export { - default as DeleteSweep, - } from '@material-ui/icons/DeleteSweep'; - declare export { - default as DeleteSweepOutlined, - } from '@material-ui/icons/DeleteSweepOutlined'; - declare export { - default as DeleteSweepRounded, - } from '@material-ui/icons/DeleteSweepRounded'; - declare export { - default as DeleteSweepSharp, - } from '@material-ui/icons/DeleteSweepSharp'; - declare export { - default as DeleteSweepTwoTone, - } from '@material-ui/icons/DeleteSweepTwoTone'; - declare export { - default as DeleteTwoTone, - } from '@material-ui/icons/DeleteTwoTone'; - declare export { - default as DepartureBoard, - } from '@material-ui/icons/DepartureBoard'; - declare export { - default as DepartureBoardOutlined, - } from '@material-ui/icons/DepartureBoardOutlined'; - declare export { - default as DepartureBoardRounded, - } from '@material-ui/icons/DepartureBoardRounded'; - declare export { - default as DepartureBoardSharp, - } from '@material-ui/icons/DepartureBoardSharp'; - declare export { - default as DepartureBoardTwoTone, - } from '@material-ui/icons/DepartureBoardTwoTone'; - declare export { - default as Description, - } from '@material-ui/icons/Description'; - declare export { - default as DescriptionOutlined, - } from '@material-ui/icons/DescriptionOutlined'; - declare export { - default as DescriptionRounded, - } from '@material-ui/icons/DescriptionRounded'; - declare export { - default as DescriptionSharp, - } from '@material-ui/icons/DescriptionSharp'; - declare export { - default as DescriptionTwoTone, - } from '@material-ui/icons/DescriptionTwoTone'; - declare export { - default as DesktopAccessDisabled, - } from '@material-ui/icons/DesktopAccessDisabled'; - declare export { - default as DesktopAccessDisabledOutlined, - } from '@material-ui/icons/DesktopAccessDisabledOutlined'; - declare export { - default as DesktopAccessDisabledRounded, - } from '@material-ui/icons/DesktopAccessDisabledRounded'; - declare export { - default as DesktopAccessDisabledSharp, - } from '@material-ui/icons/DesktopAccessDisabledSharp'; - declare export { - default as DesktopAccessDisabledTwoTone, - } from '@material-ui/icons/DesktopAccessDisabledTwoTone'; - declare export { default as DesktopMac } from '@material-ui/icons/DesktopMac'; - declare export { - default as DesktopMacOutlined, - } from '@material-ui/icons/DesktopMacOutlined'; - declare export { - default as DesktopMacRounded, - } from '@material-ui/icons/DesktopMacRounded'; - declare export { - default as DesktopMacSharp, - } from '@material-ui/icons/DesktopMacSharp'; - declare export { - default as DesktopMacTwoTone, - } from '@material-ui/icons/DesktopMacTwoTone'; - declare export { - default as DesktopWindows, - } from '@material-ui/icons/DesktopWindows'; - declare export { - default as DesktopWindowsOutlined, - } from '@material-ui/icons/DesktopWindowsOutlined'; - declare export { - default as DesktopWindowsRounded, - } from '@material-ui/icons/DesktopWindowsRounded'; - declare export { - default as DesktopWindowsSharp, - } from '@material-ui/icons/DesktopWindowsSharp'; - declare export { - default as DesktopWindowsTwoTone, - } from '@material-ui/icons/DesktopWindowsTwoTone'; - declare export { default as Details } from '@material-ui/icons/Details'; - declare export { - default as DetailsOutlined, - } from '@material-ui/icons/DetailsOutlined'; - declare export { - default as DetailsRounded, - } from '@material-ui/icons/DetailsRounded'; - declare export { - default as DetailsSharp, - } from '@material-ui/icons/DetailsSharp'; - declare export { - default as DetailsTwoTone, - } from '@material-ui/icons/DetailsTwoTone'; - declare export { - default as DeveloperBoard, - } from '@material-ui/icons/DeveloperBoard'; - declare export { - default as DeveloperBoardOutlined, - } from '@material-ui/icons/DeveloperBoardOutlined'; - declare export { - default as DeveloperBoardRounded, - } from '@material-ui/icons/DeveloperBoardRounded'; - declare export { - default as DeveloperBoardSharp, - } from '@material-ui/icons/DeveloperBoardSharp'; - declare export { - default as DeveloperBoardTwoTone, - } from '@material-ui/icons/DeveloperBoardTwoTone'; - declare export { - default as DeveloperMode, - } from '@material-ui/icons/DeveloperMode'; - declare export { - default as DeveloperModeOutlined, - } from '@material-ui/icons/DeveloperModeOutlined'; - declare export { - default as DeveloperModeRounded, - } from '@material-ui/icons/DeveloperModeRounded'; - declare export { - default as DeveloperModeSharp, - } from '@material-ui/icons/DeveloperModeSharp'; - declare export { - default as DeveloperModeTwoTone, - } from '@material-ui/icons/DeveloperModeTwoTone'; - declare export { default as DeviceHub } from '@material-ui/icons/DeviceHub'; - declare export { - default as DeviceHubOutlined, - } from '@material-ui/icons/DeviceHubOutlined'; - declare export { - default as DeviceHubRounded, - } from '@material-ui/icons/DeviceHubRounded'; - declare export { - default as DeviceHubSharp, - } from '@material-ui/icons/DeviceHubSharp'; - declare export { - default as DeviceHubTwoTone, - } from '@material-ui/icons/DeviceHubTwoTone'; - declare export { default as Devices } from '@material-ui/icons/Devices'; - declare export { - default as DevicesOther, - } from '@material-ui/icons/DevicesOther'; - declare export { - default as DevicesOtherOutlined, - } from '@material-ui/icons/DevicesOtherOutlined'; - declare export { - default as DevicesOtherRounded, - } from '@material-ui/icons/DevicesOtherRounded'; - declare export { - default as DevicesOtherSharp, - } from '@material-ui/icons/DevicesOtherSharp'; - declare export { - default as DevicesOtherTwoTone, - } from '@material-ui/icons/DevicesOtherTwoTone'; - declare export { - default as DevicesOutlined, - } from '@material-ui/icons/DevicesOutlined'; - declare export { - default as DevicesRounded, - } from '@material-ui/icons/DevicesRounded'; - declare export { - default as DevicesSharp, - } from '@material-ui/icons/DevicesSharp'; - declare export { - default as DevicesTwoTone, - } from '@material-ui/icons/DevicesTwoTone'; - declare export { - default as DeviceUnknown, - } from '@material-ui/icons/DeviceUnknown'; - declare export { - default as DeviceUnknownOutlined, - } from '@material-ui/icons/DeviceUnknownOutlined'; - declare export { - default as DeviceUnknownRounded, - } from '@material-ui/icons/DeviceUnknownRounded'; - declare export { - default as DeviceUnknownSharp, - } from '@material-ui/icons/DeviceUnknownSharp'; - declare export { - default as DeviceUnknownTwoTone, - } from '@material-ui/icons/DeviceUnknownTwoTone'; - declare export { default as DialerSip } from '@material-ui/icons/DialerSip'; - declare export { - default as DialerSipOutlined, - } from '@material-ui/icons/DialerSipOutlined'; - declare export { - default as DialerSipRounded, - } from '@material-ui/icons/DialerSipRounded'; - declare export { - default as DialerSipSharp, - } from '@material-ui/icons/DialerSipSharp'; - declare export { - default as DialerSipTwoTone, - } from '@material-ui/icons/DialerSipTwoTone'; - declare export { default as Dialpad } from '@material-ui/icons/Dialpad'; - declare export { - default as DialpadOutlined, - } from '@material-ui/icons/DialpadOutlined'; - declare export { - default as DialpadRounded, - } from '@material-ui/icons/DialpadRounded'; - declare export { - default as DialpadSharp, - } from '@material-ui/icons/DialpadSharp'; - declare export { - default as DialpadTwoTone, - } from '@material-ui/icons/DialpadTwoTone'; - declare export { - default as DirectionsBike, - } from '@material-ui/icons/DirectionsBike'; - declare export { - default as DirectionsBikeOutlined, - } from '@material-ui/icons/DirectionsBikeOutlined'; - declare export { - default as DirectionsBikeRounded, - } from '@material-ui/icons/DirectionsBikeRounded'; - declare export { - default as DirectionsBikeSharp, - } from '@material-ui/icons/DirectionsBikeSharp'; - declare export { - default as DirectionsBikeTwoTone, - } from '@material-ui/icons/DirectionsBikeTwoTone'; - declare export { - default as DirectionsBoat, - } from '@material-ui/icons/DirectionsBoat'; - declare export { - default as DirectionsBoatOutlined, - } from '@material-ui/icons/DirectionsBoatOutlined'; - declare export { - default as DirectionsBoatRounded, - } from '@material-ui/icons/DirectionsBoatRounded'; - declare export { - default as DirectionsBoatSharp, - } from '@material-ui/icons/DirectionsBoatSharp'; - declare export { - default as DirectionsBoatTwoTone, - } from '@material-ui/icons/DirectionsBoatTwoTone'; - declare export { - default as DirectionsBus, - } from '@material-ui/icons/DirectionsBus'; - declare export { - default as DirectionsBusOutlined, - } from '@material-ui/icons/DirectionsBusOutlined'; - declare export { - default as DirectionsBusRounded, - } from '@material-ui/icons/DirectionsBusRounded'; - declare export { - default as DirectionsBusSharp, - } from '@material-ui/icons/DirectionsBusSharp'; - declare export { - default as DirectionsBusTwoTone, - } from '@material-ui/icons/DirectionsBusTwoTone'; - declare export { - default as DirectionsCar, - } from '@material-ui/icons/DirectionsCar'; - declare export { - default as DirectionsCarOutlined, - } from '@material-ui/icons/DirectionsCarOutlined'; - declare export { - default as DirectionsCarRounded, - } from '@material-ui/icons/DirectionsCarRounded'; - declare export { - default as DirectionsCarSharp, - } from '@material-ui/icons/DirectionsCarSharp'; - declare export { - default as DirectionsCarTwoTone, - } from '@material-ui/icons/DirectionsCarTwoTone'; - declare export { default as Directions } from '@material-ui/icons/Directions'; - declare export { - default as DirectionsOutlined, - } from '@material-ui/icons/DirectionsOutlined'; - declare export { - default as DirectionsRailway, - } from '@material-ui/icons/DirectionsRailway'; - declare export { - default as DirectionsRailwayOutlined, - } from '@material-ui/icons/DirectionsRailwayOutlined'; - declare export { - default as DirectionsRailwayRounded, - } from '@material-ui/icons/DirectionsRailwayRounded'; - declare export { - default as DirectionsRailwaySharp, - } from '@material-ui/icons/DirectionsRailwaySharp'; - declare export { - default as DirectionsRailwayTwoTone, - } from '@material-ui/icons/DirectionsRailwayTwoTone'; - declare export { - default as DirectionsRounded, - } from '@material-ui/icons/DirectionsRounded'; - declare export { - default as DirectionsRun, - } from '@material-ui/icons/DirectionsRun'; - declare export { - default as DirectionsRunOutlined, - } from '@material-ui/icons/DirectionsRunOutlined'; - declare export { - default as DirectionsRunRounded, - } from '@material-ui/icons/DirectionsRunRounded'; - declare export { - default as DirectionsRunSharp, - } from '@material-ui/icons/DirectionsRunSharp'; - declare export { - default as DirectionsRunTwoTone, - } from '@material-ui/icons/DirectionsRunTwoTone'; - declare export { - default as DirectionsSharp, - } from '@material-ui/icons/DirectionsSharp'; - declare export { - default as DirectionsSubway, - } from '@material-ui/icons/DirectionsSubway'; - declare export { - default as DirectionsSubwayOutlined, - } from '@material-ui/icons/DirectionsSubwayOutlined'; - declare export { - default as DirectionsSubwayRounded, - } from '@material-ui/icons/DirectionsSubwayRounded'; - declare export { - default as DirectionsSubwaySharp, - } from '@material-ui/icons/DirectionsSubwaySharp'; - declare export { - default as DirectionsSubwayTwoTone, - } from '@material-ui/icons/DirectionsSubwayTwoTone'; - declare export { - default as DirectionsTransit, - } from '@material-ui/icons/DirectionsTransit'; - declare export { - default as DirectionsTransitOutlined, - } from '@material-ui/icons/DirectionsTransitOutlined'; - declare export { - default as DirectionsTransitRounded, - } from '@material-ui/icons/DirectionsTransitRounded'; - declare export { - default as DirectionsTransitSharp, - } from '@material-ui/icons/DirectionsTransitSharp'; - declare export { - default as DirectionsTransitTwoTone, - } from '@material-ui/icons/DirectionsTransitTwoTone'; - declare export { - default as DirectionsTwoTone, - } from '@material-ui/icons/DirectionsTwoTone'; - declare export { - default as DirectionsWalk, - } from '@material-ui/icons/DirectionsWalk'; - declare export { - default as DirectionsWalkOutlined, - } from '@material-ui/icons/DirectionsWalkOutlined'; - declare export { - default as DirectionsWalkRounded, - } from '@material-ui/icons/DirectionsWalkRounded'; - declare export { - default as DirectionsWalkSharp, - } from '@material-ui/icons/DirectionsWalkSharp'; - declare export { - default as DirectionsWalkTwoTone, - } from '@material-ui/icons/DirectionsWalkTwoTone'; - declare export { default as DiscFull } from '@material-ui/icons/DiscFull'; - declare export { - default as DiscFullOutlined, - } from '@material-ui/icons/DiscFullOutlined'; - declare export { - default as DiscFullRounded, - } from '@material-ui/icons/DiscFullRounded'; - declare export { - default as DiscFullSharp, - } from '@material-ui/icons/DiscFullSharp'; - declare export { - default as DiscFullTwoTone, - } from '@material-ui/icons/DiscFullTwoTone'; - declare export { default as Dns } from '@material-ui/icons/Dns'; - declare export { - default as DnsOutlined, - } from '@material-ui/icons/DnsOutlined'; - declare export { default as DnsRounded } from '@material-ui/icons/DnsRounded'; - declare export { default as DnsSharp } from '@material-ui/icons/DnsSharp'; - declare export { default as DnsTwoTone } from '@material-ui/icons/DnsTwoTone'; - declare export { default as Dock } from '@material-ui/icons/Dock'; - declare export { - default as DockOutlined, - } from '@material-ui/icons/DockOutlined'; - declare export { - default as DockRounded, - } from '@material-ui/icons/DockRounded'; - declare export { default as DockSharp } from '@material-ui/icons/DockSharp'; - declare export { - default as DockTwoTone, - } from '@material-ui/icons/DockTwoTone'; - declare export { - default as DomainDisabled, - } from '@material-ui/icons/DomainDisabled'; - declare export { - default as DomainDisabledOutlined, - } from '@material-ui/icons/DomainDisabledOutlined'; - declare export { - default as DomainDisabledRounded, - } from '@material-ui/icons/DomainDisabledRounded'; - declare export { - default as DomainDisabledSharp, - } from '@material-ui/icons/DomainDisabledSharp'; - declare export { - default as DomainDisabledTwoTone, - } from '@material-ui/icons/DomainDisabledTwoTone'; - declare export { default as Domain } from '@material-ui/icons/Domain'; - declare export { - default as DomainOutlined, - } from '@material-ui/icons/DomainOutlined'; - declare export { - default as DomainRounded, - } from '@material-ui/icons/DomainRounded'; - declare export { - default as DomainSharp, - } from '@material-ui/icons/DomainSharp'; - declare export { - default as DomainTwoTone, - } from '@material-ui/icons/DomainTwoTone'; - declare export { default as DoneAll } from '@material-ui/icons/DoneAll'; - declare export { - default as DoneAllOutlined, - } from '@material-ui/icons/DoneAllOutlined'; - declare export { - default as DoneAllRounded, - } from '@material-ui/icons/DoneAllRounded'; - declare export { - default as DoneAllSharp, - } from '@material-ui/icons/DoneAllSharp'; - declare export { - default as DoneAllTwoTone, - } from '@material-ui/icons/DoneAllTwoTone'; - declare export { default as Done } from '@material-ui/icons/Done'; - declare export { - default as DoneOutlined, - } from '@material-ui/icons/DoneOutlined'; - declare export { - default as DoneOutline, - } from '@material-ui/icons/DoneOutline'; - declare export { - default as DoneOutlineOutlined, - } from '@material-ui/icons/DoneOutlineOutlined'; - declare export { - default as DoneOutlineRounded, - } from '@material-ui/icons/DoneOutlineRounded'; - declare export { - default as DoneOutlineSharp, - } from '@material-ui/icons/DoneOutlineSharp'; - declare export { - default as DoneOutlineTwoTone, - } from '@material-ui/icons/DoneOutlineTwoTone'; - declare export { - default as DoneRounded, - } from '@material-ui/icons/DoneRounded'; - declare export { default as DoneSharp } from '@material-ui/icons/DoneSharp'; - declare export { - default as DoneTwoTone, - } from '@material-ui/icons/DoneTwoTone'; - declare export { default as DonutLarge } from '@material-ui/icons/DonutLarge'; - declare export { - default as DonutLargeOutlined, - } from '@material-ui/icons/DonutLargeOutlined'; - declare export { - default as DonutLargeRounded, - } from '@material-ui/icons/DonutLargeRounded'; - declare export { - default as DonutLargeSharp, - } from '@material-ui/icons/DonutLargeSharp'; - declare export { - default as DonutLargeTwoTone, - } from '@material-ui/icons/DonutLargeTwoTone'; - declare export { default as DonutSmall } from '@material-ui/icons/DonutSmall'; - declare export { - default as DonutSmallOutlined, - } from '@material-ui/icons/DonutSmallOutlined'; - declare export { - default as DonutSmallRounded, - } from '@material-ui/icons/DonutSmallRounded'; - declare export { - default as DonutSmallSharp, - } from '@material-ui/icons/DonutSmallSharp'; - declare export { - default as DonutSmallTwoTone, - } from '@material-ui/icons/DonutSmallTwoTone'; - declare export { default as Drafts } from '@material-ui/icons/Drafts'; - declare export { - default as DraftsOutlined, - } from '@material-ui/icons/DraftsOutlined'; - declare export { - default as DraftsRounded, - } from '@material-ui/icons/DraftsRounded'; - declare export { - default as DraftsSharp, - } from '@material-ui/icons/DraftsSharp'; - declare export { - default as DraftsTwoTone, - } from '@material-ui/icons/DraftsTwoTone'; - declare export { default as DragHandle } from '@material-ui/icons/DragHandle'; - declare export { - default as DragHandleOutlined, - } from '@material-ui/icons/DragHandleOutlined'; - declare export { - default as DragHandleRounded, - } from '@material-ui/icons/DragHandleRounded'; - declare export { - default as DragHandleSharp, - } from '@material-ui/icons/DragHandleSharp'; - declare export { - default as DragHandleTwoTone, - } from '@material-ui/icons/DragHandleTwoTone'; - declare export { - default as DragIndicator, - } from '@material-ui/icons/DragIndicator'; - declare export { - default as DragIndicatorOutlined, - } from '@material-ui/icons/DragIndicatorOutlined'; - declare export { - default as DragIndicatorRounded, - } from '@material-ui/icons/DragIndicatorRounded'; - declare export { - default as DragIndicatorSharp, - } from '@material-ui/icons/DragIndicatorSharp'; - declare export { - default as DragIndicatorTwoTone, - } from '@material-ui/icons/DragIndicatorTwoTone'; - declare export { default as DriveEta } from '@material-ui/icons/DriveEta'; - declare export { - default as DriveEtaOutlined, - } from '@material-ui/icons/DriveEtaOutlined'; - declare export { - default as DriveEtaRounded, - } from '@material-ui/icons/DriveEtaRounded'; - declare export { - default as DriveEtaSharp, - } from '@material-ui/icons/DriveEtaSharp'; - declare export { - default as DriveEtaTwoTone, - } from '@material-ui/icons/DriveEtaTwoTone'; - declare export { default as Duo } from '@material-ui/icons/Duo'; - declare export { - default as DuoOutlined, - } from '@material-ui/icons/DuoOutlined'; - declare export { default as DuoRounded } from '@material-ui/icons/DuoRounded'; - declare export { default as DuoSharp } from '@material-ui/icons/DuoSharp'; - declare export { default as DuoTwoTone } from '@material-ui/icons/DuoTwoTone'; - declare export { default as Dvr } from '@material-ui/icons/Dvr'; - declare export { - default as DvrOutlined, - } from '@material-ui/icons/DvrOutlined'; - declare export { default as DvrRounded } from '@material-ui/icons/DvrRounded'; - declare export { default as DvrSharp } from '@material-ui/icons/DvrSharp'; - declare export { default as DvrTwoTone } from '@material-ui/icons/DvrTwoTone'; - declare export { - default as EditAttributes, - } from '@material-ui/icons/EditAttributes'; - declare export { - default as EditAttributesOutlined, - } from '@material-ui/icons/EditAttributesOutlined'; - declare export { - default as EditAttributesRounded, - } from '@material-ui/icons/EditAttributesRounded'; - declare export { - default as EditAttributesSharp, - } from '@material-ui/icons/EditAttributesSharp'; - declare export { - default as EditAttributesTwoTone, - } from '@material-ui/icons/EditAttributesTwoTone'; - declare export { default as Edit } from '@material-ui/icons/Edit'; - declare export { - default as EditLocation, - } from '@material-ui/icons/EditLocation'; - declare export { - default as EditLocationOutlined, - } from '@material-ui/icons/EditLocationOutlined'; - declare export { - default as EditLocationRounded, - } from '@material-ui/icons/EditLocationRounded'; - declare export { - default as EditLocationSharp, - } from '@material-ui/icons/EditLocationSharp'; - declare export { - default as EditLocationTwoTone, - } from '@material-ui/icons/EditLocationTwoTone'; - declare export { - default as EditOutlined, - } from '@material-ui/icons/EditOutlined'; - declare export { - default as EditRounded, - } from '@material-ui/icons/EditRounded'; - declare export { default as EditSharp } from '@material-ui/icons/EditSharp'; - declare export { - default as EditTwoTone, - } from '@material-ui/icons/EditTwoTone'; - declare export { default as Eject } from '@material-ui/icons/Eject'; - declare export { - default as EjectOutlined, - } from '@material-ui/icons/EjectOutlined'; - declare export { - default as EjectRounded, - } from '@material-ui/icons/EjectRounded'; - declare export { default as EjectSharp } from '@material-ui/icons/EjectSharp'; - declare export { - default as EjectTwoTone, - } from '@material-ui/icons/EjectTwoTone'; - declare export { default as Email } from '@material-ui/icons/Email'; - declare export { - default as EmailOutlined, - } from '@material-ui/icons/EmailOutlined'; - declare export { - default as EmailRounded, - } from '@material-ui/icons/EmailRounded'; - declare export { default as EmailSharp } from '@material-ui/icons/EmailSharp'; - declare export { - default as EmailTwoTone, - } from '@material-ui/icons/EmailTwoTone'; - declare export { - default as EnhancedEncryption, - } from '@material-ui/icons/EnhancedEncryption'; - declare export { - default as EnhancedEncryptionOutlined, - } from '@material-ui/icons/EnhancedEncryptionOutlined'; - declare export { - default as EnhancedEncryptionRounded, - } from '@material-ui/icons/EnhancedEncryptionRounded'; - declare export { - default as EnhancedEncryptionSharp, - } from '@material-ui/icons/EnhancedEncryptionSharp'; - declare export { - default as EnhancedEncryptionTwoTone, - } from '@material-ui/icons/EnhancedEncryptionTwoTone'; - declare export { default as Equalizer } from '@material-ui/icons/Equalizer'; - declare export { - default as EqualizerOutlined, - } from '@material-ui/icons/EqualizerOutlined'; - declare export { - default as EqualizerRounded, - } from '@material-ui/icons/EqualizerRounded'; - declare export { - default as EqualizerSharp, - } from '@material-ui/icons/EqualizerSharp'; - declare export { - default as EqualizerTwoTone, - } from '@material-ui/icons/EqualizerTwoTone'; - declare export { default as Error } from '@material-ui/icons/Error'; - declare export { - default as ErrorOutlined, - } from '@material-ui/icons/ErrorOutlined'; - declare export { - default as ErrorOutline, - } from '@material-ui/icons/ErrorOutline'; - declare export { - default as ErrorOutlineOutlined, - } from '@material-ui/icons/ErrorOutlineOutlined'; - declare export { - default as ErrorOutlineRounded, - } from '@material-ui/icons/ErrorOutlineRounded'; - declare export { - default as ErrorOutlineSharp, - } from '@material-ui/icons/ErrorOutlineSharp'; - declare export { - default as ErrorOutlineTwoTone, - } from '@material-ui/icons/ErrorOutlineTwoTone'; - declare export { - default as ErrorRounded, - } from '@material-ui/icons/ErrorRounded'; - declare export { default as ErrorSharp } from '@material-ui/icons/ErrorSharp'; - declare export { - default as ErrorTwoTone, - } from '@material-ui/icons/ErrorTwoTone'; - declare export { default as EuroSymbol } from '@material-ui/icons/EuroSymbol'; - declare export { - default as EuroSymbolOutlined, - } from '@material-ui/icons/EuroSymbolOutlined'; - declare export { - default as EuroSymbolRounded, - } from '@material-ui/icons/EuroSymbolRounded'; - declare export { - default as EuroSymbolSharp, - } from '@material-ui/icons/EuroSymbolSharp'; - declare export { - default as EuroSymbolTwoTone, - } from '@material-ui/icons/EuroSymbolTwoTone'; - declare export { - default as EventAvailable, - } from '@material-ui/icons/EventAvailable'; - declare export { - default as EventAvailableOutlined, - } from '@material-ui/icons/EventAvailableOutlined'; - declare export { - default as EventAvailableRounded, - } from '@material-ui/icons/EventAvailableRounded'; - declare export { - default as EventAvailableSharp, - } from '@material-ui/icons/EventAvailableSharp'; - declare export { - default as EventAvailableTwoTone, - } from '@material-ui/icons/EventAvailableTwoTone'; - declare export { default as EventBusy } from '@material-ui/icons/EventBusy'; - declare export { - default as EventBusyOutlined, - } from '@material-ui/icons/EventBusyOutlined'; - declare export { - default as EventBusyRounded, - } from '@material-ui/icons/EventBusyRounded'; - declare export { - default as EventBusySharp, - } from '@material-ui/icons/EventBusySharp'; - declare export { - default as EventBusyTwoTone, - } from '@material-ui/icons/EventBusyTwoTone'; - declare export { default as Event } from '@material-ui/icons/Event'; - declare export { default as EventNote } from '@material-ui/icons/EventNote'; - declare export { - default as EventNoteOutlined, - } from '@material-ui/icons/EventNoteOutlined'; - declare export { - default as EventNoteRounded, - } from '@material-ui/icons/EventNoteRounded'; - declare export { - default as EventNoteSharp, - } from '@material-ui/icons/EventNoteSharp'; - declare export { - default as EventNoteTwoTone, - } from '@material-ui/icons/EventNoteTwoTone'; - declare export { - default as EventOutlined, - } from '@material-ui/icons/EventOutlined'; - declare export { - default as EventRounded, - } from '@material-ui/icons/EventRounded'; - declare export { default as EventSeat } from '@material-ui/icons/EventSeat'; - declare export { - default as EventSeatOutlined, - } from '@material-ui/icons/EventSeatOutlined'; - declare export { - default as EventSeatRounded, - } from '@material-ui/icons/EventSeatRounded'; - declare export { - default as EventSeatSharp, - } from '@material-ui/icons/EventSeatSharp'; - declare export { - default as EventSeatTwoTone, - } from '@material-ui/icons/EventSeatTwoTone'; - declare export { default as EventSharp } from '@material-ui/icons/EventSharp'; - declare export { - default as EventTwoTone, - } from '@material-ui/icons/EventTwoTone'; - declare export { default as EvStation } from '@material-ui/icons/EvStation'; - declare export { - default as EvStationOutlined, - } from '@material-ui/icons/EvStationOutlined'; - declare export { - default as EvStationRounded, - } from '@material-ui/icons/EvStationRounded'; - declare export { - default as EvStationSharp, - } from '@material-ui/icons/EvStationSharp'; - declare export { - default as EvStationTwoTone, - } from '@material-ui/icons/EvStationTwoTone'; - declare export { default as ExitToApp } from '@material-ui/icons/ExitToApp'; - declare export { - default as ExitToAppOutlined, - } from '@material-ui/icons/ExitToAppOutlined'; - declare export { - default as ExitToAppRounded, - } from '@material-ui/icons/ExitToAppRounded'; - declare export { - default as ExitToAppSharp, - } from '@material-ui/icons/ExitToAppSharp'; - declare export { - default as ExitToAppTwoTone, - } from '@material-ui/icons/ExitToAppTwoTone'; - declare export { default as ExpandLess } from '@material-ui/icons/ExpandLess'; - declare export { - default as ExpandLessOutlined, - } from '@material-ui/icons/ExpandLessOutlined'; - declare export { - default as ExpandLessRounded, - } from '@material-ui/icons/ExpandLessRounded'; - declare export { - default as ExpandLessSharp, - } from '@material-ui/icons/ExpandLessSharp'; - declare export { - default as ExpandLessTwoTone, - } from '@material-ui/icons/ExpandLessTwoTone'; - declare export { default as ExpandMore } from '@material-ui/icons/ExpandMore'; - declare export { - default as ExpandMoreOutlined, - } from '@material-ui/icons/ExpandMoreOutlined'; - declare export { - default as ExpandMoreRounded, - } from '@material-ui/icons/ExpandMoreRounded'; - declare export { - default as ExpandMoreSharp, - } from '@material-ui/icons/ExpandMoreSharp'; - declare export { - default as ExpandMoreTwoTone, - } from '@material-ui/icons/ExpandMoreTwoTone'; - declare export { default as Explicit } from '@material-ui/icons/Explicit'; - declare export { - default as ExplicitOutlined, - } from '@material-ui/icons/ExplicitOutlined'; - declare export { - default as ExplicitRounded, - } from '@material-ui/icons/ExplicitRounded'; - declare export { - default as ExplicitSharp, - } from '@material-ui/icons/ExplicitSharp'; - declare export { - default as ExplicitTwoTone, - } from '@material-ui/icons/ExplicitTwoTone'; - declare export { default as Explore } from '@material-ui/icons/Explore'; - declare export { default as ExploreOff } from '@material-ui/icons/ExploreOff'; - declare export { - default as ExploreOffOutlined, - } from '@material-ui/icons/ExploreOffOutlined'; - declare export { - default as ExploreOffRounded, - } from '@material-ui/icons/ExploreOffRounded'; - declare export { - default as ExploreOffSharp, - } from '@material-ui/icons/ExploreOffSharp'; - declare export { - default as ExploreOffTwoTone, - } from '@material-ui/icons/ExploreOffTwoTone'; - declare export { - default as ExploreOutlined, - } from '@material-ui/icons/ExploreOutlined'; - declare export { - default as ExploreRounded, - } from '@material-ui/icons/ExploreRounded'; - declare export { - default as ExploreSharp, - } from '@material-ui/icons/ExploreSharp'; - declare export { - default as ExploreTwoTone, - } from '@material-ui/icons/ExploreTwoTone'; - declare export { default as Exposure } from '@material-ui/icons/Exposure'; - declare export { - default as ExposureNeg1, - } from '@material-ui/icons/ExposureNeg1'; - declare export { - default as ExposureNeg1Outlined, - } from '@material-ui/icons/ExposureNeg1Outlined'; - declare export { - default as ExposureNeg1Rounded, - } from '@material-ui/icons/ExposureNeg1Rounded'; - declare export { - default as ExposureNeg1Sharp, - } from '@material-ui/icons/ExposureNeg1Sharp'; - declare export { - default as ExposureNeg1TwoTone, - } from '@material-ui/icons/ExposureNeg1TwoTone'; - declare export { - default as ExposureNeg2, - } from '@material-ui/icons/ExposureNeg2'; - declare export { - default as ExposureNeg2Outlined, - } from '@material-ui/icons/ExposureNeg2Outlined'; - declare export { - default as ExposureNeg2Rounded, - } from '@material-ui/icons/ExposureNeg2Rounded'; - declare export { - default as ExposureNeg2Sharp, - } from '@material-ui/icons/ExposureNeg2Sharp'; - declare export { - default as ExposureNeg2TwoTone, - } from '@material-ui/icons/ExposureNeg2TwoTone'; - declare export { - default as ExposureOutlined, - } from '@material-ui/icons/ExposureOutlined'; - declare export { - default as ExposurePlus1, - } from '@material-ui/icons/ExposurePlus1'; - declare export { - default as ExposurePlus1Outlined, - } from '@material-ui/icons/ExposurePlus1Outlined'; - declare export { - default as ExposurePlus1Rounded, - } from '@material-ui/icons/ExposurePlus1Rounded'; - declare export { - default as ExposurePlus1Sharp, - } from '@material-ui/icons/ExposurePlus1Sharp'; - declare export { - default as ExposurePlus1TwoTone, - } from '@material-ui/icons/ExposurePlus1TwoTone'; - declare export { - default as ExposurePlus2, - } from '@material-ui/icons/ExposurePlus2'; - declare export { - default as ExposurePlus2Outlined, - } from '@material-ui/icons/ExposurePlus2Outlined'; - declare export { - default as ExposurePlus2Rounded, - } from '@material-ui/icons/ExposurePlus2Rounded'; - declare export { - default as ExposurePlus2Sharp, - } from '@material-ui/icons/ExposurePlus2Sharp'; - declare export { - default as ExposurePlus2TwoTone, - } from '@material-ui/icons/ExposurePlus2TwoTone'; - declare export { - default as ExposureRounded, - } from '@material-ui/icons/ExposureRounded'; - declare export { - default as ExposureSharp, - } from '@material-ui/icons/ExposureSharp'; - declare export { - default as ExposureTwoTone, - } from '@material-ui/icons/ExposureTwoTone'; - declare export { - default as ExposureZero, - } from '@material-ui/icons/ExposureZero'; - declare export { - default as ExposureZeroOutlined, - } from '@material-ui/icons/ExposureZeroOutlined'; - declare export { - default as ExposureZeroRounded, - } from '@material-ui/icons/ExposureZeroRounded'; - declare export { - default as ExposureZeroSharp, - } from '@material-ui/icons/ExposureZeroSharp'; - declare export { - default as ExposureZeroTwoTone, - } from '@material-ui/icons/ExposureZeroTwoTone'; - declare export { default as Extension } from '@material-ui/icons/Extension'; - declare export { - default as ExtensionOutlined, - } from '@material-ui/icons/ExtensionOutlined'; - declare export { - default as ExtensionRounded, - } from '@material-ui/icons/ExtensionRounded'; - declare export { - default as ExtensionSharp, - } from '@material-ui/icons/ExtensionSharp'; - declare export { - default as ExtensionTwoTone, - } from '@material-ui/icons/ExtensionTwoTone'; - declare export { default as Face } from '@material-ui/icons/Face'; - declare export { - default as FaceOutlined, - } from '@material-ui/icons/FaceOutlined'; - declare export { - default as FaceRounded, - } from '@material-ui/icons/FaceRounded'; - declare export { default as FaceSharp } from '@material-ui/icons/FaceSharp'; - declare export { - default as FaceTwoTone, - } from '@material-ui/icons/FaceTwoTone'; - declare export { default as Fastfood } from '@material-ui/icons/Fastfood'; - declare export { - default as FastfoodOutlined, - } from '@material-ui/icons/FastfoodOutlined'; - declare export { - default as FastfoodRounded, - } from '@material-ui/icons/FastfoodRounded'; - declare export { - default as FastfoodSharp, - } from '@material-ui/icons/FastfoodSharp'; - declare export { - default as FastfoodTwoTone, - } from '@material-ui/icons/FastfoodTwoTone'; - declare export { - default as FastForward, - } from '@material-ui/icons/FastForward'; - declare export { - default as FastForwardOutlined, - } from '@material-ui/icons/FastForwardOutlined'; - declare export { - default as FastForwardRounded, - } from '@material-ui/icons/FastForwardRounded'; - declare export { - default as FastForwardSharp, - } from '@material-ui/icons/FastForwardSharp'; - declare export { - default as FastForwardTwoTone, - } from '@material-ui/icons/FastForwardTwoTone'; - declare export { default as FastRewind } from '@material-ui/icons/FastRewind'; - declare export { - default as FastRewindOutlined, - } from '@material-ui/icons/FastRewindOutlined'; - declare export { - default as FastRewindRounded, - } from '@material-ui/icons/FastRewindRounded'; - declare export { - default as FastRewindSharp, - } from '@material-ui/icons/FastRewindSharp'; - declare export { - default as FastRewindTwoTone, - } from '@material-ui/icons/FastRewindTwoTone'; - declare export { - default as FavoriteBorder, - } from '@material-ui/icons/FavoriteBorder'; - declare export { - default as FavoriteBorderOutlined, - } from '@material-ui/icons/FavoriteBorderOutlined'; - declare export { - default as FavoriteBorderRounded, - } from '@material-ui/icons/FavoriteBorderRounded'; - declare export { - default as FavoriteBorderSharp, - } from '@material-ui/icons/FavoriteBorderSharp'; - declare export { - default as FavoriteBorderTwoTone, - } from '@material-ui/icons/FavoriteBorderTwoTone'; - declare export { default as Favorite } from '@material-ui/icons/Favorite'; - declare export { - default as FavoriteOutlined, - } from '@material-ui/icons/FavoriteOutlined'; - declare export { - default as FavoriteRounded, - } from '@material-ui/icons/FavoriteRounded'; - declare export { - default as FavoriteSharp, - } from '@material-ui/icons/FavoriteSharp'; - declare export { - default as FavoriteTwoTone, - } from '@material-ui/icons/FavoriteTwoTone'; - declare export { - default as FeaturedPlayList, - } from '@material-ui/icons/FeaturedPlayList'; - declare export { - default as FeaturedPlayListOutlined, - } from '@material-ui/icons/FeaturedPlayListOutlined'; - declare export { - default as FeaturedPlayListRounded, - } from '@material-ui/icons/FeaturedPlayListRounded'; - declare export { - default as FeaturedPlayListSharp, - } from '@material-ui/icons/FeaturedPlayListSharp'; - declare export { - default as FeaturedPlayListTwoTone, - } from '@material-ui/icons/FeaturedPlayListTwoTone'; - declare export { - default as FeaturedVideo, - } from '@material-ui/icons/FeaturedVideo'; - declare export { - default as FeaturedVideoOutlined, - } from '@material-ui/icons/FeaturedVideoOutlined'; - declare export { - default as FeaturedVideoRounded, - } from '@material-ui/icons/FeaturedVideoRounded'; - declare export { - default as FeaturedVideoSharp, - } from '@material-ui/icons/FeaturedVideoSharp'; - declare export { - default as FeaturedVideoTwoTone, - } from '@material-ui/icons/FeaturedVideoTwoTone'; - declare export { default as Feedback } from '@material-ui/icons/Feedback'; - declare export { - default as FeedbackOutlined, - } from '@material-ui/icons/FeedbackOutlined'; - declare export { - default as FeedbackRounded, - } from '@material-ui/icons/FeedbackRounded'; - declare export { - default as FeedbackSharp, - } from '@material-ui/icons/FeedbackSharp'; - declare export { - default as FeedbackTwoTone, - } from '@material-ui/icons/FeedbackTwoTone'; - declare export { default as FiberDvr } from '@material-ui/icons/FiberDvr'; - declare export { - default as FiberDvrOutlined, - } from '@material-ui/icons/FiberDvrOutlined'; - declare export { - default as FiberDvrRounded, - } from '@material-ui/icons/FiberDvrRounded'; - declare export { - default as FiberDvrSharp, - } from '@material-ui/icons/FiberDvrSharp'; - declare export { - default as FiberDvrTwoTone, - } from '@material-ui/icons/FiberDvrTwoTone'; - declare export { - default as FiberManualRecord, - } from '@material-ui/icons/FiberManualRecord'; - declare export { - default as FiberManualRecordOutlined, - } from '@material-ui/icons/FiberManualRecordOutlined'; - declare export { - default as FiberManualRecordRounded, - } from '@material-ui/icons/FiberManualRecordRounded'; - declare export { - default as FiberManualRecordSharp, - } from '@material-ui/icons/FiberManualRecordSharp'; - declare export { - default as FiberManualRecordTwoTone, - } from '@material-ui/icons/FiberManualRecordTwoTone'; - declare export { default as FiberNew } from '@material-ui/icons/FiberNew'; - declare export { - default as FiberNewOutlined, - } from '@material-ui/icons/FiberNewOutlined'; - declare export { - default as FiberNewRounded, - } from '@material-ui/icons/FiberNewRounded'; - declare export { - default as FiberNewSharp, - } from '@material-ui/icons/FiberNewSharp'; - declare export { - default as FiberNewTwoTone, - } from '@material-ui/icons/FiberNewTwoTone'; - declare export { default as FiberPin } from '@material-ui/icons/FiberPin'; - declare export { - default as FiberPinOutlined, - } from '@material-ui/icons/FiberPinOutlined'; - declare export { - default as FiberPinRounded, - } from '@material-ui/icons/FiberPinRounded'; - declare export { - default as FiberPinSharp, - } from '@material-ui/icons/FiberPinSharp'; - declare export { - default as FiberPinTwoTone, - } from '@material-ui/icons/FiberPinTwoTone'; - declare export { - default as FiberSmartRecord, - } from '@material-ui/icons/FiberSmartRecord'; - declare export { - default as FiberSmartRecordOutlined, - } from '@material-ui/icons/FiberSmartRecordOutlined'; - declare export { - default as FiberSmartRecordRounded, - } from '@material-ui/icons/FiberSmartRecordRounded'; - declare export { - default as FiberSmartRecordSharp, - } from '@material-ui/icons/FiberSmartRecordSharp'; - declare export { - default as FiberSmartRecordTwoTone, - } from '@material-ui/icons/FiberSmartRecordTwoTone'; - declare export { default as FileCopy } from '@material-ui/icons/FileCopy'; - declare export { - default as FileCopyOutlined, - } from '@material-ui/icons/FileCopyOutlined'; - declare export { - default as FileCopyRounded, - } from '@material-ui/icons/FileCopyRounded'; - declare export { - default as FileCopySharp, - } from '@material-ui/icons/FileCopySharp'; - declare export { - default as FileCopyTwoTone, - } from '@material-ui/icons/FileCopyTwoTone'; - declare export { default as Filter1 } from '@material-ui/icons/Filter1'; - declare export { - default as Filter1Outlined, - } from '@material-ui/icons/Filter1Outlined'; - declare export { - default as Filter1Rounded, - } from '@material-ui/icons/Filter1Rounded'; - declare export { - default as Filter1Sharp, - } from '@material-ui/icons/Filter1Sharp'; - declare export { - default as Filter1TwoTone, - } from '@material-ui/icons/Filter1TwoTone'; - declare export { default as Filter2 } from '@material-ui/icons/Filter2'; - declare export { - default as Filter2Outlined, - } from '@material-ui/icons/Filter2Outlined'; - declare export { - default as Filter2Rounded, - } from '@material-ui/icons/Filter2Rounded'; - declare export { - default as Filter2Sharp, - } from '@material-ui/icons/Filter2Sharp'; - declare export { - default as Filter2TwoTone, - } from '@material-ui/icons/Filter2TwoTone'; - declare export { default as Filter3 } from '@material-ui/icons/Filter3'; - declare export { - default as Filter3Outlined, - } from '@material-ui/icons/Filter3Outlined'; - declare export { - default as Filter3Rounded, - } from '@material-ui/icons/Filter3Rounded'; - declare export { - default as Filter3Sharp, - } from '@material-ui/icons/Filter3Sharp'; - declare export { - default as Filter3TwoTone, - } from '@material-ui/icons/Filter3TwoTone'; - declare export { default as Filter4 } from '@material-ui/icons/Filter4'; - declare export { - default as Filter4Outlined, - } from '@material-ui/icons/Filter4Outlined'; - declare export { - default as Filter4Rounded, - } from '@material-ui/icons/Filter4Rounded'; - declare export { - default as Filter4Sharp, - } from '@material-ui/icons/Filter4Sharp'; - declare export { - default as Filter4TwoTone, - } from '@material-ui/icons/Filter4TwoTone'; - declare export { default as Filter5 } from '@material-ui/icons/Filter5'; - declare export { - default as Filter5Outlined, - } from '@material-ui/icons/Filter5Outlined'; - declare export { - default as Filter5Rounded, - } from '@material-ui/icons/Filter5Rounded'; - declare export { - default as Filter5Sharp, - } from '@material-ui/icons/Filter5Sharp'; - declare export { - default as Filter5TwoTone, - } from '@material-ui/icons/Filter5TwoTone'; - declare export { default as Filter6 } from '@material-ui/icons/Filter6'; - declare export { - default as Filter6Outlined, - } from '@material-ui/icons/Filter6Outlined'; - declare export { - default as Filter6Rounded, - } from '@material-ui/icons/Filter6Rounded'; - declare export { - default as Filter6Sharp, - } from '@material-ui/icons/Filter6Sharp'; - declare export { - default as Filter6TwoTone, - } from '@material-ui/icons/Filter6TwoTone'; - declare export { default as Filter7 } from '@material-ui/icons/Filter7'; - declare export { - default as Filter7Outlined, - } from '@material-ui/icons/Filter7Outlined'; - declare export { - default as Filter7Rounded, - } from '@material-ui/icons/Filter7Rounded'; - declare export { - default as Filter7Sharp, - } from '@material-ui/icons/Filter7Sharp'; - declare export { - default as Filter7TwoTone, - } from '@material-ui/icons/Filter7TwoTone'; - declare export { default as Filter8 } from '@material-ui/icons/Filter8'; - declare export { - default as Filter8Outlined, - } from '@material-ui/icons/Filter8Outlined'; - declare export { - default as Filter8Rounded, - } from '@material-ui/icons/Filter8Rounded'; - declare export { - default as Filter8Sharp, - } from '@material-ui/icons/Filter8Sharp'; - declare export { - default as Filter8TwoTone, - } from '@material-ui/icons/Filter8TwoTone'; - declare export { default as Filter9 } from '@material-ui/icons/Filter9'; - declare export { - default as Filter9Outlined, - } from '@material-ui/icons/Filter9Outlined'; - declare export { - default as Filter9Plus, - } from '@material-ui/icons/Filter9Plus'; - declare export { - default as Filter9PlusOutlined, - } from '@material-ui/icons/Filter9PlusOutlined'; - declare export { - default as Filter9PlusRounded, - } from '@material-ui/icons/Filter9PlusRounded'; - declare export { - default as Filter9PlusSharp, - } from '@material-ui/icons/Filter9PlusSharp'; - declare export { - default as Filter9PlusTwoTone, - } from '@material-ui/icons/Filter9PlusTwoTone'; - declare export { - default as Filter9Rounded, - } from '@material-ui/icons/Filter9Rounded'; - declare export { - default as Filter9Sharp, - } from '@material-ui/icons/Filter9Sharp'; - declare export { - default as Filter9TwoTone, - } from '@material-ui/icons/Filter9TwoTone'; - declare export { - default as FilterBAndW, - } from '@material-ui/icons/FilterBAndW'; - declare export { - default as FilterBAndWOutlined, - } from '@material-ui/icons/FilterBAndWOutlined'; - declare export { - default as FilterBAndWRounded, - } from '@material-ui/icons/FilterBAndWRounded'; - declare export { - default as FilterBAndWSharp, - } from '@material-ui/icons/FilterBAndWSharp'; - declare export { - default as FilterBAndWTwoTone, - } from '@material-ui/icons/FilterBAndWTwoTone'; - declare export { - default as FilterCenterFocus, - } from '@material-ui/icons/FilterCenterFocus'; - declare export { - default as FilterCenterFocusOutlined, - } from '@material-ui/icons/FilterCenterFocusOutlined'; - declare export { - default as FilterCenterFocusRounded, - } from '@material-ui/icons/FilterCenterFocusRounded'; - declare export { - default as FilterCenterFocusSharp, - } from '@material-ui/icons/FilterCenterFocusSharp'; - declare export { - default as FilterCenterFocusTwoTone, - } from '@material-ui/icons/FilterCenterFocusTwoTone'; - declare export { - default as FilterDrama, - } from '@material-ui/icons/FilterDrama'; - declare export { - default as FilterDramaOutlined, - } from '@material-ui/icons/FilterDramaOutlined'; - declare export { - default as FilterDramaRounded, - } from '@material-ui/icons/FilterDramaRounded'; - declare export { - default as FilterDramaSharp, - } from '@material-ui/icons/FilterDramaSharp'; - declare export { - default as FilterDramaTwoTone, - } from '@material-ui/icons/FilterDramaTwoTone'; - declare export { - default as FilterFrames, - } from '@material-ui/icons/FilterFrames'; - declare export { - default as FilterFramesOutlined, - } from '@material-ui/icons/FilterFramesOutlined'; - declare export { - default as FilterFramesRounded, - } from '@material-ui/icons/FilterFramesRounded'; - declare export { - default as FilterFramesSharp, - } from '@material-ui/icons/FilterFramesSharp'; - declare export { - default as FilterFramesTwoTone, - } from '@material-ui/icons/FilterFramesTwoTone'; - declare export { default as FilterHdr } from '@material-ui/icons/FilterHdr'; - declare export { - default as FilterHdrOutlined, - } from '@material-ui/icons/FilterHdrOutlined'; - declare export { - default as FilterHdrRounded, - } from '@material-ui/icons/FilterHdrRounded'; - declare export { - default as FilterHdrSharp, - } from '@material-ui/icons/FilterHdrSharp'; - declare export { - default as FilterHdrTwoTone, - } from '@material-ui/icons/FilterHdrTwoTone'; - declare export { default as Filter } from '@material-ui/icons/Filter'; - declare export { default as FilterList } from '@material-ui/icons/FilterList'; - declare export { - default as FilterListOutlined, - } from '@material-ui/icons/FilterListOutlined'; - declare export { - default as FilterListRounded, - } from '@material-ui/icons/FilterListRounded'; - declare export { - default as FilterListSharp, - } from '@material-ui/icons/FilterListSharp'; - declare export { - default as FilterListTwoTone, - } from '@material-ui/icons/FilterListTwoTone'; - declare export { default as FilterNone } from '@material-ui/icons/FilterNone'; - declare export { - default as FilterNoneOutlined, - } from '@material-ui/icons/FilterNoneOutlined'; - declare export { - default as FilterNoneRounded, - } from '@material-ui/icons/FilterNoneRounded'; - declare export { - default as FilterNoneSharp, - } from '@material-ui/icons/FilterNoneSharp'; - declare export { - default as FilterNoneTwoTone, - } from '@material-ui/icons/FilterNoneTwoTone'; - declare export { - default as FilterOutlined, - } from '@material-ui/icons/FilterOutlined'; - declare export { - default as FilterRounded, - } from '@material-ui/icons/FilterRounded'; - declare export { - default as FilterSharp, - } from '@material-ui/icons/FilterSharp'; - declare export { - default as FilterTiltShift, - } from '@material-ui/icons/FilterTiltShift'; - declare export { - default as FilterTiltShiftOutlined, - } from '@material-ui/icons/FilterTiltShiftOutlined'; - declare export { - default as FilterTiltShiftRounded, - } from '@material-ui/icons/FilterTiltShiftRounded'; - declare export { - default as FilterTiltShiftSharp, - } from '@material-ui/icons/FilterTiltShiftSharp'; - declare export { - default as FilterTiltShiftTwoTone, - } from '@material-ui/icons/FilterTiltShiftTwoTone'; - declare export { - default as FilterTwoTone, - } from '@material-ui/icons/FilterTwoTone'; - declare export { - default as FilterVintage, - } from '@material-ui/icons/FilterVintage'; - declare export { - default as FilterVintageOutlined, - } from '@material-ui/icons/FilterVintageOutlined'; - declare export { - default as FilterVintageRounded, - } from '@material-ui/icons/FilterVintageRounded'; - declare export { - default as FilterVintageSharp, - } from '@material-ui/icons/FilterVintageSharp'; - declare export { - default as FilterVintageTwoTone, - } from '@material-ui/icons/FilterVintageTwoTone'; - declare export { default as FindInPage } from '@material-ui/icons/FindInPage'; - declare export { - default as FindInPageOutlined, - } from '@material-ui/icons/FindInPageOutlined'; - declare export { - default as FindInPageRounded, - } from '@material-ui/icons/FindInPageRounded'; - declare export { - default as FindInPageSharp, - } from '@material-ui/icons/FindInPageSharp'; - declare export { - default as FindInPageTwoTone, - } from '@material-ui/icons/FindInPageTwoTone'; - declare export { - default as FindReplace, - } from '@material-ui/icons/FindReplace'; - declare export { - default as FindReplaceOutlined, - } from '@material-ui/icons/FindReplaceOutlined'; - declare export { - default as FindReplaceRounded, - } from '@material-ui/icons/FindReplaceRounded'; - declare export { - default as FindReplaceSharp, - } from '@material-ui/icons/FindReplaceSharp'; - declare export { - default as FindReplaceTwoTone, - } from '@material-ui/icons/FindReplaceTwoTone'; - declare export { - default as Fingerprint, - } from '@material-ui/icons/Fingerprint'; - declare export { - default as FingerprintOutlined, - } from '@material-ui/icons/FingerprintOutlined'; - declare export { - default as FingerprintRounded, - } from '@material-ui/icons/FingerprintRounded'; - declare export { - default as FingerprintSharp, - } from '@material-ui/icons/FingerprintSharp'; - declare export { - default as FingerprintTwoTone, - } from '@material-ui/icons/FingerprintTwoTone'; - declare export { default as FirstPage } from '@material-ui/icons/FirstPage'; - declare export { - default as FirstPageOutlined, - } from '@material-ui/icons/FirstPageOutlined'; - declare export { - default as FirstPageRounded, - } from '@material-ui/icons/FirstPageRounded'; - declare export { - default as FirstPageSharp, - } from '@material-ui/icons/FirstPageSharp'; - declare export { - default as FirstPageTwoTone, - } from '@material-ui/icons/FirstPageTwoTone'; - declare export { - default as FitnessCenter, - } from '@material-ui/icons/FitnessCenter'; - declare export { - default as FitnessCenterOutlined, - } from '@material-ui/icons/FitnessCenterOutlined'; - declare export { - default as FitnessCenterRounded, - } from '@material-ui/icons/FitnessCenterRounded'; - declare export { - default as FitnessCenterSharp, - } from '@material-ui/icons/FitnessCenterSharp'; - declare export { - default as FitnessCenterTwoTone, - } from '@material-ui/icons/FitnessCenterTwoTone'; - declare export { default as Flag } from '@material-ui/icons/Flag'; - declare export { - default as FlagOutlined, - } from '@material-ui/icons/FlagOutlined'; - declare export { - default as FlagRounded, - } from '@material-ui/icons/FlagRounded'; - declare export { default as FlagSharp } from '@material-ui/icons/FlagSharp'; - declare export { - default as FlagTwoTone, - } from '@material-ui/icons/FlagTwoTone'; - declare export { default as Flare } from '@material-ui/icons/Flare'; - declare export { - default as FlareOutlined, - } from '@material-ui/icons/FlareOutlined'; - declare export { - default as FlareRounded, - } from '@material-ui/icons/FlareRounded'; - declare export { default as FlareSharp } from '@material-ui/icons/FlareSharp'; - declare export { - default as FlareTwoTone, - } from '@material-ui/icons/FlareTwoTone'; - declare export { default as FlashAuto } from '@material-ui/icons/FlashAuto'; - declare export { - default as FlashAutoOutlined, - } from '@material-ui/icons/FlashAutoOutlined'; - declare export { - default as FlashAutoRounded, - } from '@material-ui/icons/FlashAutoRounded'; - declare export { - default as FlashAutoSharp, - } from '@material-ui/icons/FlashAutoSharp'; - declare export { - default as FlashAutoTwoTone, - } from '@material-ui/icons/FlashAutoTwoTone'; - declare export { default as FlashOff } from '@material-ui/icons/FlashOff'; - declare export { - default as FlashOffOutlined, - } from '@material-ui/icons/FlashOffOutlined'; - declare export { - default as FlashOffRounded, - } from '@material-ui/icons/FlashOffRounded'; - declare export { - default as FlashOffSharp, - } from '@material-ui/icons/FlashOffSharp'; - declare export { - default as FlashOffTwoTone, - } from '@material-ui/icons/FlashOffTwoTone'; - declare export { default as FlashOn } from '@material-ui/icons/FlashOn'; - declare export { - default as FlashOnOutlined, - } from '@material-ui/icons/FlashOnOutlined'; - declare export { - default as FlashOnRounded, - } from '@material-ui/icons/FlashOnRounded'; - declare export { - default as FlashOnSharp, - } from '@material-ui/icons/FlashOnSharp'; - declare export { - default as FlashOnTwoTone, - } from '@material-ui/icons/FlashOnTwoTone'; - declare export { default as Flight } from '@material-ui/icons/Flight'; - declare export { default as FlightLand } from '@material-ui/icons/FlightLand'; - declare export { - default as FlightLandOutlined, - } from '@material-ui/icons/FlightLandOutlined'; - declare export { - default as FlightLandRounded, - } from '@material-ui/icons/FlightLandRounded'; - declare export { - default as FlightLandSharp, - } from '@material-ui/icons/FlightLandSharp'; - declare export { - default as FlightLandTwoTone, - } from '@material-ui/icons/FlightLandTwoTone'; - declare export { - default as FlightOutlined, - } from '@material-ui/icons/FlightOutlined'; - declare export { - default as FlightRounded, - } from '@material-ui/icons/FlightRounded'; - declare export { - default as FlightSharp, - } from '@material-ui/icons/FlightSharp'; - declare export { - default as FlightTakeoff, - } from '@material-ui/icons/FlightTakeoff'; - declare export { - default as FlightTakeoffOutlined, - } from '@material-ui/icons/FlightTakeoffOutlined'; - declare export { - default as FlightTakeoffRounded, - } from '@material-ui/icons/FlightTakeoffRounded'; - declare export { - default as FlightTakeoffSharp, - } from '@material-ui/icons/FlightTakeoffSharp'; - declare export { - default as FlightTakeoffTwoTone, - } from '@material-ui/icons/FlightTakeoffTwoTone'; - declare export { - default as FlightTwoTone, - } from '@material-ui/icons/FlightTwoTone'; - declare export { default as Flip } from '@material-ui/icons/Flip'; - declare export { - default as FlipOutlined, - } from '@material-ui/icons/FlipOutlined'; - declare export { - default as FlipRounded, - } from '@material-ui/icons/FlipRounded'; - declare export { default as FlipSharp } from '@material-ui/icons/FlipSharp'; - declare export { default as FlipToBack } from '@material-ui/icons/FlipToBack'; - declare export { - default as FlipToBackOutlined, - } from '@material-ui/icons/FlipToBackOutlined'; - declare export { - default as FlipToBackRounded, - } from '@material-ui/icons/FlipToBackRounded'; - declare export { - default as FlipToBackSharp, - } from '@material-ui/icons/FlipToBackSharp'; - declare export { - default as FlipToBackTwoTone, - } from '@material-ui/icons/FlipToBackTwoTone'; - declare export { - default as FlipToFront, - } from '@material-ui/icons/FlipToFront'; - declare export { - default as FlipToFrontOutlined, - } from '@material-ui/icons/FlipToFrontOutlined'; - declare export { - default as FlipToFrontRounded, - } from '@material-ui/icons/FlipToFrontRounded'; - declare export { - default as FlipToFrontSharp, - } from '@material-ui/icons/FlipToFrontSharp'; - declare export { - default as FlipToFrontTwoTone, - } from '@material-ui/icons/FlipToFrontTwoTone'; - declare export { - default as FlipTwoTone, - } from '@material-ui/icons/FlipTwoTone'; - declare export { default as Folder } from '@material-ui/icons/Folder'; - declare export { default as FolderOpen } from '@material-ui/icons/FolderOpen'; - declare export { - default as FolderOpenOutlined, - } from '@material-ui/icons/FolderOpenOutlined'; - declare export { - default as FolderOpenRounded, - } from '@material-ui/icons/FolderOpenRounded'; - declare export { - default as FolderOpenSharp, - } from '@material-ui/icons/FolderOpenSharp'; - declare export { - default as FolderOpenTwoTone, - } from '@material-ui/icons/FolderOpenTwoTone'; - declare export { - default as FolderOutlined, - } from '@material-ui/icons/FolderOutlined'; - declare export { - default as FolderRounded, - } from '@material-ui/icons/FolderRounded'; - declare export { - default as FolderShared, - } from '@material-ui/icons/FolderShared'; - declare export { - default as FolderSharedOutlined, - } from '@material-ui/icons/FolderSharedOutlined'; - declare export { - default as FolderSharedRounded, - } from '@material-ui/icons/FolderSharedRounded'; - declare export { - default as FolderSharedSharp, - } from '@material-ui/icons/FolderSharedSharp'; - declare export { - default as FolderSharedTwoTone, - } from '@material-ui/icons/FolderSharedTwoTone'; - declare export { - default as FolderSharp, - } from '@material-ui/icons/FolderSharp'; - declare export { - default as FolderSpecial, - } from '@material-ui/icons/FolderSpecial'; - declare export { - default as FolderSpecialOutlined, - } from '@material-ui/icons/FolderSpecialOutlined'; - declare export { - default as FolderSpecialRounded, - } from '@material-ui/icons/FolderSpecialRounded'; - declare export { - default as FolderSpecialSharp, - } from '@material-ui/icons/FolderSpecialSharp'; - declare export { - default as FolderSpecialTwoTone, - } from '@material-ui/icons/FolderSpecialTwoTone'; - declare export { - default as FolderTwoTone, - } from '@material-ui/icons/FolderTwoTone'; - declare export { - default as FontDownload, - } from '@material-ui/icons/FontDownload'; - declare export { - default as FontDownloadOutlined, - } from '@material-ui/icons/FontDownloadOutlined'; - declare export { - default as FontDownloadRounded, - } from '@material-ui/icons/FontDownloadRounded'; - declare export { - default as FontDownloadSharp, - } from '@material-ui/icons/FontDownloadSharp'; - declare export { - default as FontDownloadTwoTone, - } from '@material-ui/icons/FontDownloadTwoTone'; - declare export { - default as FormatAlignCenter, - } from '@material-ui/icons/FormatAlignCenter'; - declare export { - default as FormatAlignCenterOutlined, - } from '@material-ui/icons/FormatAlignCenterOutlined'; - declare export { - default as FormatAlignCenterRounded, - } from '@material-ui/icons/FormatAlignCenterRounded'; - declare export { - default as FormatAlignCenterSharp, - } from '@material-ui/icons/FormatAlignCenterSharp'; - declare export { - default as FormatAlignCenterTwoTone, - } from '@material-ui/icons/FormatAlignCenterTwoTone'; - declare export { - default as FormatAlignJustify, - } from '@material-ui/icons/FormatAlignJustify'; - declare export { - default as FormatAlignJustifyOutlined, - } from '@material-ui/icons/FormatAlignJustifyOutlined'; - declare export { - default as FormatAlignJustifyRounded, - } from '@material-ui/icons/FormatAlignJustifyRounded'; - declare export { - default as FormatAlignJustifySharp, - } from '@material-ui/icons/FormatAlignJustifySharp'; - declare export { - default as FormatAlignJustifyTwoTone, - } from '@material-ui/icons/FormatAlignJustifyTwoTone'; - declare export { - default as FormatAlignLeft, - } from '@material-ui/icons/FormatAlignLeft'; - declare export { - default as FormatAlignLeftOutlined, - } from '@material-ui/icons/FormatAlignLeftOutlined'; - declare export { - default as FormatAlignLeftRounded, - } from '@material-ui/icons/FormatAlignLeftRounded'; - declare export { - default as FormatAlignLeftSharp, - } from '@material-ui/icons/FormatAlignLeftSharp'; - declare export { - default as FormatAlignLeftTwoTone, - } from '@material-ui/icons/FormatAlignLeftTwoTone'; - declare export { - default as FormatAlignRight, - } from '@material-ui/icons/FormatAlignRight'; - declare export { - default as FormatAlignRightOutlined, - } from '@material-ui/icons/FormatAlignRightOutlined'; - declare export { - default as FormatAlignRightRounded, - } from '@material-ui/icons/FormatAlignRightRounded'; - declare export { - default as FormatAlignRightSharp, - } from '@material-ui/icons/FormatAlignRightSharp'; - declare export { - default as FormatAlignRightTwoTone, - } from '@material-ui/icons/FormatAlignRightTwoTone'; - declare export { default as FormatBold } from '@material-ui/icons/FormatBold'; - declare export { - default as FormatBoldOutlined, - } from '@material-ui/icons/FormatBoldOutlined'; - declare export { - default as FormatBoldRounded, - } from '@material-ui/icons/FormatBoldRounded'; - declare export { - default as FormatBoldSharp, - } from '@material-ui/icons/FormatBoldSharp'; - declare export { - default as FormatBoldTwoTone, - } from '@material-ui/icons/FormatBoldTwoTone'; - declare export { - default as FormatClear, - } from '@material-ui/icons/FormatClear'; - declare export { - default as FormatClearOutlined, - } from '@material-ui/icons/FormatClearOutlined'; - declare export { - default as FormatClearRounded, - } from '@material-ui/icons/FormatClearRounded'; - declare export { - default as FormatClearSharp, - } from '@material-ui/icons/FormatClearSharp'; - declare export { - default as FormatClearTwoTone, - } from '@material-ui/icons/FormatClearTwoTone'; - declare export { - default as FormatColorFill, - } from '@material-ui/icons/FormatColorFill'; - declare export { - default as FormatColorFillOutlined, - } from '@material-ui/icons/FormatColorFillOutlined'; - declare export { - default as FormatColorFillRounded, - } from '@material-ui/icons/FormatColorFillRounded'; - declare export { - default as FormatColorFillSharp, - } from '@material-ui/icons/FormatColorFillSharp'; - declare export { - default as FormatColorFillTwoTone, - } from '@material-ui/icons/FormatColorFillTwoTone'; - declare export { - default as FormatColorReset, - } from '@material-ui/icons/FormatColorReset'; - declare export { - default as FormatColorResetOutlined, - } from '@material-ui/icons/FormatColorResetOutlined'; - declare export { - default as FormatColorResetRounded, - } from '@material-ui/icons/FormatColorResetRounded'; - declare export { - default as FormatColorResetSharp, - } from '@material-ui/icons/FormatColorResetSharp'; - declare export { - default as FormatColorResetTwoTone, - } from '@material-ui/icons/FormatColorResetTwoTone'; - declare export { - default as FormatColorText, - } from '@material-ui/icons/FormatColorText'; - declare export { - default as FormatColorTextOutlined, - } from '@material-ui/icons/FormatColorTextOutlined'; - declare export { - default as FormatColorTextRounded, - } from '@material-ui/icons/FormatColorTextRounded'; - declare export { - default as FormatColorTextSharp, - } from '@material-ui/icons/FormatColorTextSharp'; - declare export { - default as FormatColorTextTwoTone, - } from '@material-ui/icons/FormatColorTextTwoTone'; - declare export { - default as FormatIndentDecrease, - } from '@material-ui/icons/FormatIndentDecrease'; - declare export { - default as FormatIndentDecreaseOutlined, - } from '@material-ui/icons/FormatIndentDecreaseOutlined'; - declare export { - default as FormatIndentDecreaseRounded, - } from '@material-ui/icons/FormatIndentDecreaseRounded'; - declare export { - default as FormatIndentDecreaseSharp, - } from '@material-ui/icons/FormatIndentDecreaseSharp'; - declare export { - default as FormatIndentDecreaseTwoTone, - } from '@material-ui/icons/FormatIndentDecreaseTwoTone'; - declare export { - default as FormatIndentIncrease, - } from '@material-ui/icons/FormatIndentIncrease'; - declare export { - default as FormatIndentIncreaseOutlined, - } from '@material-ui/icons/FormatIndentIncreaseOutlined'; - declare export { - default as FormatIndentIncreaseRounded, - } from '@material-ui/icons/FormatIndentIncreaseRounded'; - declare export { - default as FormatIndentIncreaseSharp, - } from '@material-ui/icons/FormatIndentIncreaseSharp'; - declare export { - default as FormatIndentIncreaseTwoTone, - } from '@material-ui/icons/FormatIndentIncreaseTwoTone'; - declare export { - default as FormatItalic, - } from '@material-ui/icons/FormatItalic'; - declare export { - default as FormatItalicOutlined, - } from '@material-ui/icons/FormatItalicOutlined'; - declare export { - default as FormatItalicRounded, - } from '@material-ui/icons/FormatItalicRounded'; - declare export { - default as FormatItalicSharp, - } from '@material-ui/icons/FormatItalicSharp'; - declare export { - default as FormatItalicTwoTone, - } from '@material-ui/icons/FormatItalicTwoTone'; - declare export { - default as FormatLineSpacing, - } from '@material-ui/icons/FormatLineSpacing'; - declare export { - default as FormatLineSpacingOutlined, - } from '@material-ui/icons/FormatLineSpacingOutlined'; - declare export { - default as FormatLineSpacingRounded, - } from '@material-ui/icons/FormatLineSpacingRounded'; - declare export { - default as FormatLineSpacingSharp, - } from '@material-ui/icons/FormatLineSpacingSharp'; - declare export { - default as FormatLineSpacingTwoTone, - } from '@material-ui/icons/FormatLineSpacingTwoTone'; - declare export { - default as FormatListBulleted, - } from '@material-ui/icons/FormatListBulleted'; - declare export { - default as FormatListBulletedOutlined, - } from '@material-ui/icons/FormatListBulletedOutlined'; - declare export { - default as FormatListBulletedRounded, - } from '@material-ui/icons/FormatListBulletedRounded'; - declare export { - default as FormatListBulletedSharp, - } from '@material-ui/icons/FormatListBulletedSharp'; - declare export { - default as FormatListBulletedTwoTone, - } from '@material-ui/icons/FormatListBulletedTwoTone'; - declare export { - default as FormatListNumbered, - } from '@material-ui/icons/FormatListNumbered'; - declare export { - default as FormatListNumberedOutlined, - } from '@material-ui/icons/FormatListNumberedOutlined'; - declare export { - default as FormatListNumberedRounded, - } from '@material-ui/icons/FormatListNumberedRounded'; - declare export { - default as FormatListNumberedRtl, - } from '@material-ui/icons/FormatListNumberedRtl'; - declare export { - default as FormatListNumberedRtlOutlined, - } from '@material-ui/icons/FormatListNumberedRtlOutlined'; - declare export { - default as FormatListNumberedRtlRounded, - } from '@material-ui/icons/FormatListNumberedRtlRounded'; - declare export { - default as FormatListNumberedRtlSharp, - } from '@material-ui/icons/FormatListNumberedRtlSharp'; - declare export { - default as FormatListNumberedRtlTwoTone, - } from '@material-ui/icons/FormatListNumberedRtlTwoTone'; - declare export { - default as FormatListNumberedSharp, - } from '@material-ui/icons/FormatListNumberedSharp'; - declare export { - default as FormatListNumberedTwoTone, - } from '@material-ui/icons/FormatListNumberedTwoTone'; - declare export { - default as FormatPaint, - } from '@material-ui/icons/FormatPaint'; - declare export { - default as FormatPaintOutlined, - } from '@material-ui/icons/FormatPaintOutlined'; - declare export { - default as FormatPaintRounded, - } from '@material-ui/icons/FormatPaintRounded'; - declare export { - default as FormatPaintSharp, - } from '@material-ui/icons/FormatPaintSharp'; - declare export { - default as FormatPaintTwoTone, - } from '@material-ui/icons/FormatPaintTwoTone'; - declare export { - default as FormatQuote, - } from '@material-ui/icons/FormatQuote'; - declare export { - default as FormatQuoteOutlined, - } from '@material-ui/icons/FormatQuoteOutlined'; - declare export { - default as FormatQuoteRounded, - } from '@material-ui/icons/FormatQuoteRounded'; - declare export { - default as FormatQuoteSharp, - } from '@material-ui/icons/FormatQuoteSharp'; - declare export { - default as FormatQuoteTwoTone, - } from '@material-ui/icons/FormatQuoteTwoTone'; - declare export { - default as FormatShapes, - } from '@material-ui/icons/FormatShapes'; - declare export { - default as FormatShapesOutlined, - } from '@material-ui/icons/FormatShapesOutlined'; - declare export { - default as FormatShapesRounded, - } from '@material-ui/icons/FormatShapesRounded'; - declare export { - default as FormatShapesSharp, - } from '@material-ui/icons/FormatShapesSharp'; - declare export { - default as FormatShapesTwoTone, - } from '@material-ui/icons/FormatShapesTwoTone'; - declare export { default as FormatSize } from '@material-ui/icons/FormatSize'; - declare export { - default as FormatSizeOutlined, - } from '@material-ui/icons/FormatSizeOutlined'; - declare export { - default as FormatSizeRounded, - } from '@material-ui/icons/FormatSizeRounded'; - declare export { - default as FormatSizeSharp, - } from '@material-ui/icons/FormatSizeSharp'; - declare export { - default as FormatSizeTwoTone, - } from '@material-ui/icons/FormatSizeTwoTone'; - declare export { - default as FormatStrikethrough, - } from '@material-ui/icons/FormatStrikethrough'; - declare export { - default as FormatStrikethroughOutlined, - } from '@material-ui/icons/FormatStrikethroughOutlined'; - declare export { - default as FormatStrikethroughRounded, - } from '@material-ui/icons/FormatStrikethroughRounded'; - declare export { - default as FormatStrikethroughSharp, - } from '@material-ui/icons/FormatStrikethroughSharp'; - declare export { - default as FormatStrikethroughTwoTone, - } from '@material-ui/icons/FormatStrikethroughTwoTone'; - declare export { - default as FormatTextdirectionLToR, - } from '@material-ui/icons/FormatTextdirectionLToR'; - declare export { - default as FormatTextdirectionLToROutlined, - } from '@material-ui/icons/FormatTextdirectionLToROutlined'; - declare export { - default as FormatTextdirectionLToRRounded, - } from '@material-ui/icons/FormatTextdirectionLToRRounded'; - declare export { - default as FormatTextdirectionLToRSharp, - } from '@material-ui/icons/FormatTextdirectionLToRSharp'; - declare export { - default as FormatTextdirectionLToRTwoTone, - } from '@material-ui/icons/FormatTextdirectionLToRTwoTone'; - declare export { - default as FormatTextdirectionRToL, - } from '@material-ui/icons/FormatTextdirectionRToL'; - declare export { - default as FormatTextdirectionRToLOutlined, - } from '@material-ui/icons/FormatTextdirectionRToLOutlined'; - declare export { - default as FormatTextdirectionRToLRounded, - } from '@material-ui/icons/FormatTextdirectionRToLRounded'; - declare export { - default as FormatTextdirectionRToLSharp, - } from '@material-ui/icons/FormatTextdirectionRToLSharp'; - declare export { - default as FormatTextdirectionRToLTwoTone, - } from '@material-ui/icons/FormatTextdirectionRToLTwoTone'; - declare export { - default as FormatUnderlined, - } from '@material-ui/icons/FormatUnderlined'; - declare export { - default as FormatUnderlinedOutlined, - } from '@material-ui/icons/FormatUnderlinedOutlined'; - declare export { - default as FormatUnderlinedRounded, - } from '@material-ui/icons/FormatUnderlinedRounded'; - declare export { - default as FormatUnderlinedSharp, - } from '@material-ui/icons/FormatUnderlinedSharp'; - declare export { - default as FormatUnderlinedTwoTone, - } from '@material-ui/icons/FormatUnderlinedTwoTone'; - declare export { default as Forum } from '@material-ui/icons/Forum'; - declare export { - default as ForumOutlined, - } from '@material-ui/icons/ForumOutlined'; - declare export { - default as ForumRounded, - } from '@material-ui/icons/ForumRounded'; - declare export { default as ForumSharp } from '@material-ui/icons/ForumSharp'; - declare export { - default as ForumTwoTone, - } from '@material-ui/icons/ForumTwoTone'; - declare export { default as Forward10 } from '@material-ui/icons/Forward10'; - declare export { - default as Forward10Outlined, - } from '@material-ui/icons/Forward10Outlined'; - declare export { - default as Forward10Rounded, - } from '@material-ui/icons/Forward10Rounded'; - declare export { - default as Forward10Sharp, - } from '@material-ui/icons/Forward10Sharp'; - declare export { - default as Forward10TwoTone, - } from '@material-ui/icons/Forward10TwoTone'; - declare export { default as Forward30 } from '@material-ui/icons/Forward30'; - declare export { - default as Forward30Outlined, - } from '@material-ui/icons/Forward30Outlined'; - declare export { - default as Forward30Rounded, - } from '@material-ui/icons/Forward30Rounded'; - declare export { - default as Forward30Sharp, - } from '@material-ui/icons/Forward30Sharp'; - declare export { - default as Forward30TwoTone, - } from '@material-ui/icons/Forward30TwoTone'; - declare export { default as Forward5 } from '@material-ui/icons/Forward5'; - declare export { - default as Forward5Outlined, - } from '@material-ui/icons/Forward5Outlined'; - declare export { - default as Forward5Rounded, - } from '@material-ui/icons/Forward5Rounded'; - declare export { - default as Forward5Sharp, - } from '@material-ui/icons/Forward5Sharp'; - declare export { - default as Forward5TwoTone, - } from '@material-ui/icons/Forward5TwoTone'; - declare export { default as Forward } from '@material-ui/icons/Forward'; - declare export { - default as ForwardOutlined, - } from '@material-ui/icons/ForwardOutlined'; - declare export { - default as ForwardRounded, - } from '@material-ui/icons/ForwardRounded'; - declare export { - default as ForwardSharp, - } from '@material-ui/icons/ForwardSharp'; - declare export { - default as ForwardTwoTone, - } from '@material-ui/icons/ForwardTwoTone'; - declare export { default as FourK } from '@material-ui/icons/FourK'; - declare export { - default as FourKOutlined, - } from '@material-ui/icons/FourKOutlined'; - declare export { - default as FourKRounded, - } from '@material-ui/icons/FourKRounded'; - declare export { default as FourKSharp } from '@material-ui/icons/FourKSharp'; - declare export { - default as FourKTwoTone, - } from '@material-ui/icons/FourKTwoTone'; - declare export { - default as FreeBreakfast, - } from '@material-ui/icons/FreeBreakfast'; - declare export { - default as FreeBreakfastOutlined, - } from '@material-ui/icons/FreeBreakfastOutlined'; - declare export { - default as FreeBreakfastRounded, - } from '@material-ui/icons/FreeBreakfastRounded'; - declare export { - default as FreeBreakfastSharp, - } from '@material-ui/icons/FreeBreakfastSharp'; - declare export { - default as FreeBreakfastTwoTone, - } from '@material-ui/icons/FreeBreakfastTwoTone'; - declare export { - default as FullscreenExit, - } from '@material-ui/icons/FullscreenExit'; - declare export { - default as FullscreenExitOutlined, - } from '@material-ui/icons/FullscreenExitOutlined'; - declare export { - default as FullscreenExitRounded, - } from '@material-ui/icons/FullscreenExitRounded'; - declare export { - default as FullscreenExitSharp, - } from '@material-ui/icons/FullscreenExitSharp'; - declare export { - default as FullscreenExitTwoTone, - } from '@material-ui/icons/FullscreenExitTwoTone'; - declare export { default as Fullscreen } from '@material-ui/icons/Fullscreen'; - declare export { - default as FullscreenOutlined, - } from '@material-ui/icons/FullscreenOutlined'; - declare export { - default as FullscreenRounded, - } from '@material-ui/icons/FullscreenRounded'; - declare export { - default as FullscreenSharp, - } from '@material-ui/icons/FullscreenSharp'; - declare export { - default as FullscreenTwoTone, - } from '@material-ui/icons/FullscreenTwoTone'; - declare export { default as Functions } from '@material-ui/icons/Functions'; - declare export { - default as FunctionsOutlined, - } from '@material-ui/icons/FunctionsOutlined'; - declare export { - default as FunctionsRounded, - } from '@material-ui/icons/FunctionsRounded'; - declare export { - default as FunctionsSharp, - } from '@material-ui/icons/FunctionsSharp'; - declare export { - default as FunctionsTwoTone, - } from '@material-ui/icons/FunctionsTwoTone'; - declare export { default as Gamepad } from '@material-ui/icons/Gamepad'; - declare export { - default as GamepadOutlined, - } from '@material-ui/icons/GamepadOutlined'; - declare export { - default as GamepadRounded, - } from '@material-ui/icons/GamepadRounded'; - declare export { - default as GamepadSharp, - } from '@material-ui/icons/GamepadSharp'; - declare export { - default as GamepadTwoTone, - } from '@material-ui/icons/GamepadTwoTone'; - declare export { default as Games } from '@material-ui/icons/Games'; - declare export { - default as GamesOutlined, - } from '@material-ui/icons/GamesOutlined'; - declare export { - default as GamesRounded, - } from '@material-ui/icons/GamesRounded'; - declare export { default as GamesSharp } from '@material-ui/icons/GamesSharp'; - declare export { - default as GamesTwoTone, - } from '@material-ui/icons/GamesTwoTone'; - declare export { default as Gavel } from '@material-ui/icons/Gavel'; - declare export { - default as GavelOutlined, - } from '@material-ui/icons/GavelOutlined'; - declare export { - default as GavelRounded, - } from '@material-ui/icons/GavelRounded'; - declare export { default as GavelSharp } from '@material-ui/icons/GavelSharp'; - declare export { - default as GavelTwoTone, - } from '@material-ui/icons/GavelTwoTone'; - declare export { default as Gesture } from '@material-ui/icons/Gesture'; - declare export { - default as GestureOutlined, - } from '@material-ui/icons/GestureOutlined'; - declare export { - default as GestureRounded, - } from '@material-ui/icons/GestureRounded'; - declare export { - default as GestureSharp, - } from '@material-ui/icons/GestureSharp'; - declare export { - default as GestureTwoTone, - } from '@material-ui/icons/GestureTwoTone'; - declare export { default as GetApp } from '@material-ui/icons/GetApp'; - declare export { - default as GetAppOutlined, - } from '@material-ui/icons/GetAppOutlined'; - declare export { - default as GetAppRounded, - } from '@material-ui/icons/GetAppRounded'; - declare export { - default as GetAppSharp, - } from '@material-ui/icons/GetAppSharp'; - declare export { - default as GetAppTwoTone, - } from '@material-ui/icons/GetAppTwoTone'; - declare export { default as Gif } from '@material-ui/icons/Gif'; - declare export { - default as GifOutlined, - } from '@material-ui/icons/GifOutlined'; - declare export { default as GifRounded } from '@material-ui/icons/GifRounded'; - declare export { default as GifSharp } from '@material-ui/icons/GifSharp'; - declare export { default as GifTwoTone } from '@material-ui/icons/GifTwoTone'; - declare export { default as GolfCourse } from '@material-ui/icons/GolfCourse'; - declare export { - default as GolfCourseOutlined, - } from '@material-ui/icons/GolfCourseOutlined'; - declare export { - default as GolfCourseRounded, - } from '@material-ui/icons/GolfCourseRounded'; - declare export { - default as GolfCourseSharp, - } from '@material-ui/icons/GolfCourseSharp'; - declare export { - default as GolfCourseTwoTone, - } from '@material-ui/icons/GolfCourseTwoTone'; - declare export { default as GpsFixed } from '@material-ui/icons/GpsFixed'; - declare export { - default as GpsFixedOutlined, - } from '@material-ui/icons/GpsFixedOutlined'; - declare export { - default as GpsFixedRounded, - } from '@material-ui/icons/GpsFixedRounded'; - declare export { - default as GpsFixedSharp, - } from '@material-ui/icons/GpsFixedSharp'; - declare export { - default as GpsFixedTwoTone, - } from '@material-ui/icons/GpsFixedTwoTone'; - declare export { - default as GpsNotFixed, - } from '@material-ui/icons/GpsNotFixed'; - declare export { - default as GpsNotFixedOutlined, - } from '@material-ui/icons/GpsNotFixedOutlined'; - declare export { - default as GpsNotFixedRounded, - } from '@material-ui/icons/GpsNotFixedRounded'; - declare export { - default as GpsNotFixedSharp, - } from '@material-ui/icons/GpsNotFixedSharp'; - declare export { - default as GpsNotFixedTwoTone, - } from '@material-ui/icons/GpsNotFixedTwoTone'; - declare export { default as GpsOff } from '@material-ui/icons/GpsOff'; - declare export { - default as GpsOffOutlined, - } from '@material-ui/icons/GpsOffOutlined'; - declare export { - default as GpsOffRounded, - } from '@material-ui/icons/GpsOffRounded'; - declare export { - default as GpsOffSharp, - } from '@material-ui/icons/GpsOffSharp'; - declare export { - default as GpsOffTwoTone, - } from '@material-ui/icons/GpsOffTwoTone'; - declare export { default as Grade } from '@material-ui/icons/Grade'; - declare export { - default as GradeOutlined, - } from '@material-ui/icons/GradeOutlined'; - declare export { - default as GradeRounded, - } from '@material-ui/icons/GradeRounded'; - declare export { default as GradeSharp } from '@material-ui/icons/GradeSharp'; - declare export { - default as GradeTwoTone, - } from '@material-ui/icons/GradeTwoTone'; - declare export { default as Gradient } from '@material-ui/icons/Gradient'; - declare export { - default as GradientOutlined, - } from '@material-ui/icons/GradientOutlined'; - declare export { - default as GradientRounded, - } from '@material-ui/icons/GradientRounded'; - declare export { - default as GradientSharp, - } from '@material-ui/icons/GradientSharp'; - declare export { - default as GradientTwoTone, - } from '@material-ui/icons/GradientTwoTone'; - declare export { default as Grain } from '@material-ui/icons/Grain'; - declare export { - default as GrainOutlined, - } from '@material-ui/icons/GrainOutlined'; - declare export { - default as GrainRounded, - } from '@material-ui/icons/GrainRounded'; - declare export { default as GrainSharp } from '@material-ui/icons/GrainSharp'; - declare export { - default as GrainTwoTone, - } from '@material-ui/icons/GrainTwoTone'; - declare export { default as GraphicEq } from '@material-ui/icons/GraphicEq'; - declare export { - default as GraphicEqOutlined, - } from '@material-ui/icons/GraphicEqOutlined'; - declare export { - default as GraphicEqRounded, - } from '@material-ui/icons/GraphicEqRounded'; - declare export { - default as GraphicEqSharp, - } from '@material-ui/icons/GraphicEqSharp'; - declare export { - default as GraphicEqTwoTone, - } from '@material-ui/icons/GraphicEqTwoTone'; - declare export { default as GridOff } from '@material-ui/icons/GridOff'; - declare export { - default as GridOffOutlined, - } from '@material-ui/icons/GridOffOutlined'; - declare export { - default as GridOffRounded, - } from '@material-ui/icons/GridOffRounded'; - declare export { - default as GridOffSharp, - } from '@material-ui/icons/GridOffSharp'; - declare export { - default as GridOffTwoTone, - } from '@material-ui/icons/GridOffTwoTone'; - declare export { default as GridOn } from '@material-ui/icons/GridOn'; - declare export { - default as GridOnOutlined, - } from '@material-ui/icons/GridOnOutlined'; - declare export { - default as GridOnRounded, - } from '@material-ui/icons/GridOnRounded'; - declare export { - default as GridOnSharp, - } from '@material-ui/icons/GridOnSharp'; - declare export { - default as GridOnTwoTone, - } from '@material-ui/icons/GridOnTwoTone'; - declare export { default as GroupAdd } from '@material-ui/icons/GroupAdd'; - declare export { - default as GroupAddOutlined, - } from '@material-ui/icons/GroupAddOutlined'; - declare export { - default as GroupAddRounded, - } from '@material-ui/icons/GroupAddRounded'; - declare export { - default as GroupAddSharp, - } from '@material-ui/icons/GroupAddSharp'; - declare export { - default as GroupAddTwoTone, - } from '@material-ui/icons/GroupAddTwoTone'; - declare export { default as Group } from '@material-ui/icons/Group'; - declare export { - default as GroupOutlined, - } from '@material-ui/icons/GroupOutlined'; - declare export { - default as GroupRounded, - } from '@material-ui/icons/GroupRounded'; - declare export { default as GroupSharp } from '@material-ui/icons/GroupSharp'; - declare export { - default as GroupTwoTone, - } from '@material-ui/icons/GroupTwoTone'; - declare export { default as GroupWork } from '@material-ui/icons/GroupWork'; - declare export { - default as GroupWorkOutlined, - } from '@material-ui/icons/GroupWorkOutlined'; - declare export { - default as GroupWorkRounded, - } from '@material-ui/icons/GroupWorkRounded'; - declare export { - default as GroupWorkSharp, - } from '@material-ui/icons/GroupWorkSharp'; - declare export { - default as GroupWorkTwoTone, - } from '@material-ui/icons/GroupWorkTwoTone'; - declare export { default as GTranslate } from '@material-ui/icons/GTranslate'; - declare export { - default as GTranslateOutlined, - } from '@material-ui/icons/GTranslateOutlined'; - declare export { - default as GTranslateRounded, - } from '@material-ui/icons/GTranslateRounded'; - declare export { - default as GTranslateSharp, - } from '@material-ui/icons/GTranslateSharp'; - declare export { - default as GTranslateTwoTone, - } from '@material-ui/icons/GTranslateTwoTone'; - declare export { default as Hd } from '@material-ui/icons/Hd'; - declare export { default as HdOutlined } from '@material-ui/icons/HdOutlined'; - declare export { default as HdrOff } from '@material-ui/icons/HdrOff'; - declare export { - default as HdrOffOutlined, - } from '@material-ui/icons/HdrOffOutlined'; - declare export { - default as HdrOffRounded, - } from '@material-ui/icons/HdrOffRounded'; - declare export { - default as HdrOffSharp, - } from '@material-ui/icons/HdrOffSharp'; - declare export { - default as HdrOffTwoTone, - } from '@material-ui/icons/HdrOffTwoTone'; - declare export { default as HdrOn } from '@material-ui/icons/HdrOn'; - declare export { - default as HdrOnOutlined, - } from '@material-ui/icons/HdrOnOutlined'; - declare export { - default as HdrOnRounded, - } from '@material-ui/icons/HdrOnRounded'; - declare export { default as HdrOnSharp } from '@material-ui/icons/HdrOnSharp'; - declare export { - default as HdrOnTwoTone, - } from '@material-ui/icons/HdrOnTwoTone'; - declare export { default as HdRounded } from '@material-ui/icons/HdRounded'; - declare export { default as HdrStrong } from '@material-ui/icons/HdrStrong'; - declare export { - default as HdrStrongOutlined, - } from '@material-ui/icons/HdrStrongOutlined'; - declare export { - default as HdrStrongRounded, - } from '@material-ui/icons/HdrStrongRounded'; - declare export { - default as HdrStrongSharp, - } from '@material-ui/icons/HdrStrongSharp'; - declare export { - default as HdrStrongTwoTone, - } from '@material-ui/icons/HdrStrongTwoTone'; - declare export { default as HdrWeak } from '@material-ui/icons/HdrWeak'; - declare export { - default as HdrWeakOutlined, - } from '@material-ui/icons/HdrWeakOutlined'; - declare export { - default as HdrWeakRounded, - } from '@material-ui/icons/HdrWeakRounded'; - declare export { - default as HdrWeakSharp, - } from '@material-ui/icons/HdrWeakSharp'; - declare export { - default as HdrWeakTwoTone, - } from '@material-ui/icons/HdrWeakTwoTone'; - declare export { default as HdSharp } from '@material-ui/icons/HdSharp'; - declare export { default as HdTwoTone } from '@material-ui/icons/HdTwoTone'; - declare export { default as Headset } from '@material-ui/icons/Headset'; - declare export { default as HeadsetMic } from '@material-ui/icons/HeadsetMic'; - declare export { - default as HeadsetMicOutlined, - } from '@material-ui/icons/HeadsetMicOutlined'; - declare export { - default as HeadsetMicRounded, - } from '@material-ui/icons/HeadsetMicRounded'; - declare export { - default as HeadsetMicSharp, - } from '@material-ui/icons/HeadsetMicSharp'; - declare export { - default as HeadsetMicTwoTone, - } from '@material-ui/icons/HeadsetMicTwoTone'; - declare export { - default as HeadsetOutlined, - } from '@material-ui/icons/HeadsetOutlined'; - declare export { - default as HeadsetRounded, - } from '@material-ui/icons/HeadsetRounded'; - declare export { - default as HeadsetSharp, - } from '@material-ui/icons/HeadsetSharp'; - declare export { - default as HeadsetTwoTone, - } from '@material-ui/icons/HeadsetTwoTone'; - declare export { default as Healing } from '@material-ui/icons/Healing'; - declare export { - default as HealingOutlined, - } from '@material-ui/icons/HealingOutlined'; - declare export { - default as HealingRounded, - } from '@material-ui/icons/HealingRounded'; - declare export { - default as HealingSharp, - } from '@material-ui/icons/HealingSharp'; - declare export { - default as HealingTwoTone, - } from '@material-ui/icons/HealingTwoTone'; - declare export { default as Hearing } from '@material-ui/icons/Hearing'; - declare export { - default as HearingOutlined, - } from '@material-ui/icons/HearingOutlined'; - declare export { - default as HearingRounded, - } from '@material-ui/icons/HearingRounded'; - declare export { - default as HearingSharp, - } from '@material-ui/icons/HearingSharp'; - declare export { - default as HearingTwoTone, - } from '@material-ui/icons/HearingTwoTone'; - declare export { default as Help } from '@material-ui/icons/Help'; - declare export { - default as HelpOutlined, - } from '@material-ui/icons/HelpOutlined'; - declare export { - default as HelpOutline, - } from '@material-ui/icons/HelpOutline'; - declare export { - default as HelpOutlineOutlined, - } from '@material-ui/icons/HelpOutlineOutlined'; - declare export { - default as HelpOutlineRounded, - } from '@material-ui/icons/HelpOutlineRounded'; - declare export { - default as HelpOutlineSharp, - } from '@material-ui/icons/HelpOutlineSharp'; - declare export { - default as HelpOutlineTwoTone, - } from '@material-ui/icons/HelpOutlineTwoTone'; - declare export { - default as HelpRounded, - } from '@material-ui/icons/HelpRounded'; - declare export { default as HelpSharp } from '@material-ui/icons/HelpSharp'; - declare export { - default as HelpTwoTone, - } from '@material-ui/icons/HelpTwoTone'; - declare export { default as Highlight } from '@material-ui/icons/Highlight'; - declare export { - default as HighlightOff, - } from '@material-ui/icons/HighlightOff'; - declare export { - default as HighlightOffOutlined, - } from '@material-ui/icons/HighlightOffOutlined'; - declare export { - default as HighlightOffRounded, - } from '@material-ui/icons/HighlightOffRounded'; - declare export { - default as HighlightOffSharp, - } from '@material-ui/icons/HighlightOffSharp'; - declare export { - default as HighlightOffTwoTone, - } from '@material-ui/icons/HighlightOffTwoTone'; - declare export { - default as HighlightOutlined, - } from '@material-ui/icons/HighlightOutlined'; - declare export { - default as HighlightRounded, - } from '@material-ui/icons/HighlightRounded'; - declare export { - default as HighlightSharp, - } from '@material-ui/icons/HighlightSharp'; - declare export { - default as HighlightTwoTone, - } from '@material-ui/icons/HighlightTwoTone'; - declare export { - default as HighQuality, - } from '@material-ui/icons/HighQuality'; - declare export { - default as HighQualityOutlined, - } from '@material-ui/icons/HighQualityOutlined'; - declare export { - default as HighQualityRounded, - } from '@material-ui/icons/HighQualityRounded'; - declare export { - default as HighQualitySharp, - } from '@material-ui/icons/HighQualitySharp'; - declare export { - default as HighQualityTwoTone, - } from '@material-ui/icons/HighQualityTwoTone'; - declare export { default as History } from '@material-ui/icons/History'; - declare export { - default as HistoryOutlined, - } from '@material-ui/icons/HistoryOutlined'; - declare export { - default as HistoryRounded, - } from '@material-ui/icons/HistoryRounded'; - declare export { - default as HistorySharp, - } from '@material-ui/icons/HistorySharp'; - declare export { - default as HistoryTwoTone, - } from '@material-ui/icons/HistoryTwoTone'; - declare export { default as Home } from '@material-ui/icons/Home'; - declare export { - default as HomeOutlined, - } from '@material-ui/icons/HomeOutlined'; - declare export { - default as HomeRounded, - } from '@material-ui/icons/HomeRounded'; - declare export { default as HomeSharp } from '@material-ui/icons/HomeSharp'; - declare export { - default as HomeTwoTone, - } from '@material-ui/icons/HomeTwoTone'; - declare export { - default as HorizontalSplit, - } from '@material-ui/icons/HorizontalSplit'; - declare export { - default as HorizontalSplitOutlined, - } from '@material-ui/icons/HorizontalSplitOutlined'; - declare export { - default as HorizontalSplitRounded, - } from '@material-ui/icons/HorizontalSplitRounded'; - declare export { - default as HorizontalSplitSharp, - } from '@material-ui/icons/HorizontalSplitSharp'; - declare export { - default as HorizontalSplitTwoTone, - } from '@material-ui/icons/HorizontalSplitTwoTone'; - declare export { default as Hotel } from '@material-ui/icons/Hotel'; - declare export { - default as HotelOutlined, - } from '@material-ui/icons/HotelOutlined'; - declare export { - default as HotelRounded, - } from '@material-ui/icons/HotelRounded'; - declare export { default as HotelSharp } from '@material-ui/icons/HotelSharp'; - declare export { - default as HotelTwoTone, - } from '@material-ui/icons/HotelTwoTone'; - declare export { default as HotTub } from '@material-ui/icons/HotTub'; - declare export { - default as HotTubOutlined, - } from '@material-ui/icons/HotTubOutlined'; - declare export { - default as HotTubRounded, - } from '@material-ui/icons/HotTubRounded'; - declare export { - default as HotTubSharp, - } from '@material-ui/icons/HotTubSharp'; - declare export { - default as HotTubTwoTone, - } from '@material-ui/icons/HotTubTwoTone'; - declare export { - default as HourglassEmpty, - } from '@material-ui/icons/HourglassEmpty'; - declare export { - default as HourglassEmptyOutlined, - } from '@material-ui/icons/HourglassEmptyOutlined'; - declare export { - default as HourglassEmptyRounded, - } from '@material-ui/icons/HourglassEmptyRounded'; - declare export { - default as HourglassEmptySharp, - } from '@material-ui/icons/HourglassEmptySharp'; - declare export { - default as HourglassEmptyTwoTone, - } from '@material-ui/icons/HourglassEmptyTwoTone'; - declare export { - default as HourglassFull, - } from '@material-ui/icons/HourglassFull'; - declare export { - default as HourglassFullOutlined, - } from '@material-ui/icons/HourglassFullOutlined'; - declare export { - default as HourglassFullRounded, - } from '@material-ui/icons/HourglassFullRounded'; - declare export { - default as HourglassFullSharp, - } from '@material-ui/icons/HourglassFullSharp'; - declare export { - default as HourglassFullTwoTone, - } from '@material-ui/icons/HourglassFullTwoTone'; - declare export { default as HowToReg } from '@material-ui/icons/HowToReg'; - declare export { - default as HowToRegOutlined, - } from '@material-ui/icons/HowToRegOutlined'; - declare export { - default as HowToRegRounded, - } from '@material-ui/icons/HowToRegRounded'; - declare export { - default as HowToRegSharp, - } from '@material-ui/icons/HowToRegSharp'; - declare export { - default as HowToRegTwoTone, - } from '@material-ui/icons/HowToRegTwoTone'; - declare export { default as HowToVote } from '@material-ui/icons/HowToVote'; - declare export { - default as HowToVoteOutlined, - } from '@material-ui/icons/HowToVoteOutlined'; - declare export { - default as HowToVoteRounded, - } from '@material-ui/icons/HowToVoteRounded'; - declare export { - default as HowToVoteSharp, - } from '@material-ui/icons/HowToVoteSharp'; - declare export { - default as HowToVoteTwoTone, - } from '@material-ui/icons/HowToVoteTwoTone'; - declare export { default as Http } from '@material-ui/icons/Http'; - declare export { - default as HttpOutlined, - } from '@material-ui/icons/HttpOutlined'; - declare export { - default as HttpRounded, - } from '@material-ui/icons/HttpRounded'; - declare export { default as HttpSharp } from '@material-ui/icons/HttpSharp'; - declare export { default as Https } from '@material-ui/icons/Https'; - declare export { - default as HttpsOutlined, - } from '@material-ui/icons/HttpsOutlined'; - declare export { - default as HttpsRounded, - } from '@material-ui/icons/HttpsRounded'; - declare export { default as HttpsSharp } from '@material-ui/icons/HttpsSharp'; - declare export { - default as HttpsTwoTone, - } from '@material-ui/icons/HttpsTwoTone'; - declare export { - default as HttpTwoTone, - } from '@material-ui/icons/HttpTwoTone'; - declare export { - default as ImageAspectRatio, - } from '@material-ui/icons/ImageAspectRatio'; - declare export { - default as ImageAspectRatioOutlined, - } from '@material-ui/icons/ImageAspectRatioOutlined'; - declare export { - default as ImageAspectRatioRounded, - } from '@material-ui/icons/ImageAspectRatioRounded'; - declare export { - default as ImageAspectRatioSharp, - } from '@material-ui/icons/ImageAspectRatioSharp'; - declare export { - default as ImageAspectRatioTwoTone, - } from '@material-ui/icons/ImageAspectRatioTwoTone'; - declare export { default as Image } from '@material-ui/icons/Image'; - declare export { - default as ImageOutlined, - } from '@material-ui/icons/ImageOutlined'; - declare export { - default as ImageRounded, - } from '@material-ui/icons/ImageRounded'; - declare export { - default as ImageSearch, - } from '@material-ui/icons/ImageSearch'; - declare export { - default as ImageSearchOutlined, - } from '@material-ui/icons/ImageSearchOutlined'; - declare export { - default as ImageSearchRounded, - } from '@material-ui/icons/ImageSearchRounded'; - declare export { - default as ImageSearchSharp, - } from '@material-ui/icons/ImageSearchSharp'; - declare export { - default as ImageSearchTwoTone, - } from '@material-ui/icons/ImageSearchTwoTone'; - declare export { default as ImageSharp } from '@material-ui/icons/ImageSharp'; - declare export { - default as ImageTwoTone, - } from '@material-ui/icons/ImageTwoTone'; - declare export { - default as ImportantDevices, - } from '@material-ui/icons/ImportantDevices'; - declare export { - default as ImportantDevicesOutlined, - } from '@material-ui/icons/ImportantDevicesOutlined'; - declare export { - default as ImportantDevicesRounded, - } from '@material-ui/icons/ImportantDevicesRounded'; - declare export { - default as ImportantDevicesSharp, - } from '@material-ui/icons/ImportantDevicesSharp'; - declare export { - default as ImportantDevicesTwoTone, - } from '@material-ui/icons/ImportantDevicesTwoTone'; - declare export { - default as ImportContacts, - } from '@material-ui/icons/ImportContacts'; - declare export { - default as ImportContactsOutlined, - } from '@material-ui/icons/ImportContactsOutlined'; - declare export { - default as ImportContactsRounded, - } from '@material-ui/icons/ImportContactsRounded'; - declare export { - default as ImportContactsSharp, - } from '@material-ui/icons/ImportContactsSharp'; - declare export { - default as ImportContactsTwoTone, - } from '@material-ui/icons/ImportContactsTwoTone'; - declare export { - default as ImportExport, - } from '@material-ui/icons/ImportExport'; - declare export { - default as ImportExportOutlined, - } from '@material-ui/icons/ImportExportOutlined'; - declare export { - default as ImportExportRounded, - } from '@material-ui/icons/ImportExportRounded'; - declare export { - default as ImportExportSharp, - } from '@material-ui/icons/ImportExportSharp'; - declare export { - default as ImportExportTwoTone, - } from '@material-ui/icons/ImportExportTwoTone'; - declare export { default as Inbox } from '@material-ui/icons/Inbox'; - declare export { - default as InboxOutlined, - } from '@material-ui/icons/InboxOutlined'; - declare export { - default as InboxRounded, - } from '@material-ui/icons/InboxRounded'; - declare export { default as InboxSharp } from '@material-ui/icons/InboxSharp'; - declare export { - default as InboxTwoTone, - } from '@material-ui/icons/InboxTwoTone'; - declare export { - default as IndeterminateCheckBox, - } from '@material-ui/icons/IndeterminateCheckBox'; - declare export { - default as IndeterminateCheckBoxOutlined, - } from '@material-ui/icons/IndeterminateCheckBoxOutlined'; - declare export { - default as IndeterminateCheckBoxRounded, - } from '@material-ui/icons/IndeterminateCheckBoxRounded'; - declare export { - default as IndeterminateCheckBoxSharp, - } from '@material-ui/icons/IndeterminateCheckBoxSharp'; - declare export { - default as IndeterminateCheckBoxTwoTone, - } from '@material-ui/icons/IndeterminateCheckBoxTwoTone'; - declare export { default as index } from '@material-ui/icons/index'; - declare export { default as Info } from '@material-ui/icons/Info'; - declare export { - default as InfoOutlined, - } from '@material-ui/icons/InfoOutlined'; - declare export { - default as InfoRounded, - } from '@material-ui/icons/InfoRounded'; - declare export { default as InfoSharp } from '@material-ui/icons/InfoSharp'; - declare export { - default as InfoTwoTone, - } from '@material-ui/icons/InfoTwoTone'; - declare export { default as Input } from '@material-ui/icons/Input'; - declare export { - default as InputOutlined, - } from '@material-ui/icons/InputOutlined'; - declare export { - default as InputRounded, - } from '@material-ui/icons/InputRounded'; - declare export { default as InputSharp } from '@material-ui/icons/InputSharp'; - declare export { - default as InputTwoTone, - } from '@material-ui/icons/InputTwoTone'; - declare export { - default as InsertChart, - } from '@material-ui/icons/InsertChart'; - declare export { - default as InsertChartOutlined, - } from '@material-ui/icons/InsertChartOutlined'; - declare export { - default as InsertChartOutlinedOutlined, - } from '@material-ui/icons/InsertChartOutlinedOutlined'; - declare export { - default as InsertChartOutlinedRounded, - } from '@material-ui/icons/InsertChartOutlinedRounded'; - declare export { - default as InsertChartOutlinedSharp, - } from '@material-ui/icons/InsertChartOutlinedSharp'; - declare export { - default as InsertChartOutlinedTwoTone, - } from '@material-ui/icons/InsertChartOutlinedTwoTone'; - declare export { - default as InsertChartRounded, - } from '@material-ui/icons/InsertChartRounded'; - declare export { - default as InsertChartSharp, - } from '@material-ui/icons/InsertChartSharp'; - declare export { - default as InsertChartTwoTone, - } from '@material-ui/icons/InsertChartTwoTone'; - declare export { - default as InsertComment, - } from '@material-ui/icons/InsertComment'; - declare export { - default as InsertCommentOutlined, - } from '@material-ui/icons/InsertCommentOutlined'; - declare export { - default as InsertCommentRounded, - } from '@material-ui/icons/InsertCommentRounded'; - declare export { - default as InsertCommentSharp, - } from '@material-ui/icons/InsertCommentSharp'; - declare export { - default as InsertCommentTwoTone, - } from '@material-ui/icons/InsertCommentTwoTone'; - declare export { - default as InsertDriveFile, - } from '@material-ui/icons/InsertDriveFile'; - declare export { - default as InsertDriveFileOutlined, - } from '@material-ui/icons/InsertDriveFileOutlined'; - declare export { - default as InsertDriveFileRounded, - } from '@material-ui/icons/InsertDriveFileRounded'; - declare export { - default as InsertDriveFileSharp, - } from '@material-ui/icons/InsertDriveFileSharp'; - declare export { - default as InsertDriveFileTwoTone, - } from '@material-ui/icons/InsertDriveFileTwoTone'; - declare export { - default as InsertEmoticon, - } from '@material-ui/icons/InsertEmoticon'; - declare export { - default as InsertEmoticonOutlined, - } from '@material-ui/icons/InsertEmoticonOutlined'; - declare export { - default as InsertEmoticonRounded, - } from '@material-ui/icons/InsertEmoticonRounded'; - declare export { - default as InsertEmoticonSharp, - } from '@material-ui/icons/InsertEmoticonSharp'; - declare export { - default as InsertEmoticonTwoTone, - } from '@material-ui/icons/InsertEmoticonTwoTone'; - declare export { - default as InsertInvitation, - } from '@material-ui/icons/InsertInvitation'; - declare export { - default as InsertInvitationOutlined, - } from '@material-ui/icons/InsertInvitationOutlined'; - declare export { - default as InsertInvitationRounded, - } from '@material-ui/icons/InsertInvitationRounded'; - declare export { - default as InsertInvitationSharp, - } from '@material-ui/icons/InsertInvitationSharp'; - declare export { - default as InsertInvitationTwoTone, - } from '@material-ui/icons/InsertInvitationTwoTone'; - declare export { default as InsertLink } from '@material-ui/icons/InsertLink'; - declare export { - default as InsertLinkOutlined, - } from '@material-ui/icons/InsertLinkOutlined'; - declare export { - default as InsertLinkRounded, - } from '@material-ui/icons/InsertLinkRounded'; - declare export { - default as InsertLinkSharp, - } from '@material-ui/icons/InsertLinkSharp'; - declare export { - default as InsertLinkTwoTone, - } from '@material-ui/icons/InsertLinkTwoTone'; - declare export { - default as InsertPhoto, - } from '@material-ui/icons/InsertPhoto'; - declare export { - default as InsertPhotoOutlined, - } from '@material-ui/icons/InsertPhotoOutlined'; - declare export { - default as InsertPhotoRounded, - } from '@material-ui/icons/InsertPhotoRounded'; - declare export { - default as InsertPhotoSharp, - } from '@material-ui/icons/InsertPhotoSharp'; - declare export { - default as InsertPhotoTwoTone, - } from '@material-ui/icons/InsertPhotoTwoTone'; - declare export { - default as InvertColors, - } from '@material-ui/icons/InvertColors'; - declare export { - default as InvertColorsOff, - } from '@material-ui/icons/InvertColorsOff'; - declare export { - default as InvertColorsOffOutlined, - } from '@material-ui/icons/InvertColorsOffOutlined'; - declare export { - default as InvertColorsOffRounded, - } from '@material-ui/icons/InvertColorsOffRounded'; - declare export { - default as InvertColorsOffSharp, - } from '@material-ui/icons/InvertColorsOffSharp'; - declare export { - default as InvertColorsOffTwoTone, - } from '@material-ui/icons/InvertColorsOffTwoTone'; - declare export { - default as InvertColorsOutlined, - } from '@material-ui/icons/InvertColorsOutlined'; - declare export { - default as InvertColorsRounded, - } from '@material-ui/icons/InvertColorsRounded'; - declare export { - default as InvertColorsSharp, - } from '@material-ui/icons/InvertColorsSharp'; - declare export { - default as InvertColorsTwoTone, - } from '@material-ui/icons/InvertColorsTwoTone'; - declare export { default as Iso } from '@material-ui/icons/Iso'; - declare export { - default as IsoOutlined, - } from '@material-ui/icons/IsoOutlined'; - declare export { default as IsoRounded } from '@material-ui/icons/IsoRounded'; - declare export { default as IsoSharp } from '@material-ui/icons/IsoSharp'; - declare export { default as IsoTwoTone } from '@material-ui/icons/IsoTwoTone'; - declare export { - default as KeyboardArrowDown, - } from '@material-ui/icons/KeyboardArrowDown'; - declare export { - default as KeyboardArrowDownOutlined, - } from '@material-ui/icons/KeyboardArrowDownOutlined'; - declare export { - default as KeyboardArrowDownRounded, - } from '@material-ui/icons/KeyboardArrowDownRounded'; - declare export { - default as KeyboardArrowDownSharp, - } from '@material-ui/icons/KeyboardArrowDownSharp'; - declare export { - default as KeyboardArrowDownTwoTone, - } from '@material-ui/icons/KeyboardArrowDownTwoTone'; - declare export { - default as KeyboardArrowLeft, - } from '@material-ui/icons/KeyboardArrowLeft'; - declare export { - default as KeyboardArrowLeftOutlined, - } from '@material-ui/icons/KeyboardArrowLeftOutlined'; - declare export { - default as KeyboardArrowLeftRounded, - } from '@material-ui/icons/KeyboardArrowLeftRounded'; - declare export { - default as KeyboardArrowLeftSharp, - } from '@material-ui/icons/KeyboardArrowLeftSharp'; - declare export { - default as KeyboardArrowLeftTwoTone, - } from '@material-ui/icons/KeyboardArrowLeftTwoTone'; - declare export { - default as KeyboardArrowRight, - } from '@material-ui/icons/KeyboardArrowRight'; - declare export { - default as KeyboardArrowRightOutlined, - } from '@material-ui/icons/KeyboardArrowRightOutlined'; - declare export { - default as KeyboardArrowRightRounded, - } from '@material-ui/icons/KeyboardArrowRightRounded'; - declare export { - default as KeyboardArrowRightSharp, - } from '@material-ui/icons/KeyboardArrowRightSharp'; - declare export { - default as KeyboardArrowRightTwoTone, - } from '@material-ui/icons/KeyboardArrowRightTwoTone'; - declare export { - default as KeyboardArrowUp, - } from '@material-ui/icons/KeyboardArrowUp'; - declare export { - default as KeyboardArrowUpOutlined, - } from '@material-ui/icons/KeyboardArrowUpOutlined'; - declare export { - default as KeyboardArrowUpRounded, - } from '@material-ui/icons/KeyboardArrowUpRounded'; - declare export { - default as KeyboardArrowUpSharp, - } from '@material-ui/icons/KeyboardArrowUpSharp'; - declare export { - default as KeyboardArrowUpTwoTone, - } from '@material-ui/icons/KeyboardArrowUpTwoTone'; - declare export { - default as KeyboardBackspace, - } from '@material-ui/icons/KeyboardBackspace'; - declare export { - default as KeyboardBackspaceOutlined, - } from '@material-ui/icons/KeyboardBackspaceOutlined'; - declare export { - default as KeyboardBackspaceRounded, - } from '@material-ui/icons/KeyboardBackspaceRounded'; - declare export { - default as KeyboardBackspaceSharp, - } from '@material-ui/icons/KeyboardBackspaceSharp'; - declare export { - default as KeyboardBackspaceTwoTone, - } from '@material-ui/icons/KeyboardBackspaceTwoTone'; - declare export { - default as KeyboardCapslock, - } from '@material-ui/icons/KeyboardCapslock'; - declare export { - default as KeyboardCapslockOutlined, - } from '@material-ui/icons/KeyboardCapslockOutlined'; - declare export { - default as KeyboardCapslockRounded, - } from '@material-ui/icons/KeyboardCapslockRounded'; - declare export { - default as KeyboardCapslockSharp, - } from '@material-ui/icons/KeyboardCapslockSharp'; - declare export { - default as KeyboardCapslockTwoTone, - } from '@material-ui/icons/KeyboardCapslockTwoTone'; - declare export { - default as KeyboardHide, - } from '@material-ui/icons/KeyboardHide'; - declare export { - default as KeyboardHideOutlined, - } from '@material-ui/icons/KeyboardHideOutlined'; - declare export { - default as KeyboardHideRounded, - } from '@material-ui/icons/KeyboardHideRounded'; - declare export { - default as KeyboardHideSharp, - } from '@material-ui/icons/KeyboardHideSharp'; - declare export { - default as KeyboardHideTwoTone, - } from '@material-ui/icons/KeyboardHideTwoTone'; - declare export { default as Keyboard } from '@material-ui/icons/Keyboard'; - declare export { - default as KeyboardOutlined, - } from '@material-ui/icons/KeyboardOutlined'; - declare export { - default as KeyboardReturn, - } from '@material-ui/icons/KeyboardReturn'; - declare export { - default as KeyboardReturnOutlined, - } from '@material-ui/icons/KeyboardReturnOutlined'; - declare export { - default as KeyboardReturnRounded, - } from '@material-ui/icons/KeyboardReturnRounded'; - declare export { - default as KeyboardReturnSharp, - } from '@material-ui/icons/KeyboardReturnSharp'; - declare export { - default as KeyboardReturnTwoTone, - } from '@material-ui/icons/KeyboardReturnTwoTone'; - declare export { - default as KeyboardRounded, - } from '@material-ui/icons/KeyboardRounded'; - declare export { - default as KeyboardSharp, - } from '@material-ui/icons/KeyboardSharp'; - declare export { - default as KeyboardTab, - } from '@material-ui/icons/KeyboardTab'; - declare export { - default as KeyboardTabOutlined, - } from '@material-ui/icons/KeyboardTabOutlined'; - declare export { - default as KeyboardTabRounded, - } from '@material-ui/icons/KeyboardTabRounded'; - declare export { - default as KeyboardTabSharp, - } from '@material-ui/icons/KeyboardTabSharp'; - declare export { - default as KeyboardTabTwoTone, - } from '@material-ui/icons/KeyboardTabTwoTone'; - declare export { - default as KeyboardTwoTone, - } from '@material-ui/icons/KeyboardTwoTone'; - declare export { - default as KeyboardVoice, - } from '@material-ui/icons/KeyboardVoice'; - declare export { - default as KeyboardVoiceOutlined, - } from '@material-ui/icons/KeyboardVoiceOutlined'; - declare export { - default as KeyboardVoiceRounded, - } from '@material-ui/icons/KeyboardVoiceRounded'; - declare export { - default as KeyboardVoiceSharp, - } from '@material-ui/icons/KeyboardVoiceSharp'; - declare export { - default as KeyboardVoiceTwoTone, - } from '@material-ui/icons/KeyboardVoiceTwoTone'; - declare export { default as Kitchen } from '@material-ui/icons/Kitchen'; - declare export { - default as KitchenOutlined, - } from '@material-ui/icons/KitchenOutlined'; - declare export { - default as KitchenRounded, - } from '@material-ui/icons/KitchenRounded'; - declare export { - default as KitchenSharp, - } from '@material-ui/icons/KitchenSharp'; - declare export { - default as KitchenTwoTone, - } from '@material-ui/icons/KitchenTwoTone'; - declare export { - default as LabelImportant, - } from '@material-ui/icons/LabelImportant'; - declare export { - default as LabelImportantOutlined, - } from '@material-ui/icons/LabelImportantOutlined'; - declare export { - default as LabelImportantRounded, - } from '@material-ui/icons/LabelImportantRounded'; - declare export { - default as LabelImportantSharp, - } from '@material-ui/icons/LabelImportantSharp'; - declare export { - default as LabelImportantTwoTone, - } from '@material-ui/icons/LabelImportantTwoTone'; - declare export { default as Label } from '@material-ui/icons/Label'; - declare export { default as LabelOff } from '@material-ui/icons/LabelOff'; - declare export { - default as LabelOffOutlined, - } from '@material-ui/icons/LabelOffOutlined'; - declare export { - default as LabelOffRounded, - } from '@material-ui/icons/LabelOffRounded'; - declare export { - default as LabelOffSharp, - } from '@material-ui/icons/LabelOffSharp'; - declare export { - default as LabelOffTwoTone, - } from '@material-ui/icons/LabelOffTwoTone'; - declare export { - default as LabelOutlined, - } from '@material-ui/icons/LabelOutlined'; - declare export { - default as LabelRounded, - } from '@material-ui/icons/LabelRounded'; - declare export { default as LabelSharp } from '@material-ui/icons/LabelSharp'; - declare export { - default as LabelTwoTone, - } from '@material-ui/icons/LabelTwoTone'; - declare export { default as Landscape } from '@material-ui/icons/Landscape'; - declare export { - default as LandscapeOutlined, - } from '@material-ui/icons/LandscapeOutlined'; - declare export { - default as LandscapeRounded, - } from '@material-ui/icons/LandscapeRounded'; - declare export { - default as LandscapeSharp, - } from '@material-ui/icons/LandscapeSharp'; - declare export { - default as LandscapeTwoTone, - } from '@material-ui/icons/LandscapeTwoTone'; - declare export { default as Language } from '@material-ui/icons/Language'; - declare export { - default as LanguageOutlined, - } from '@material-ui/icons/LanguageOutlined'; - declare export { - default as LanguageRounded, - } from '@material-ui/icons/LanguageRounded'; - declare export { - default as LanguageSharp, - } from '@material-ui/icons/LanguageSharp'; - declare export { - default as LanguageTwoTone, - } from '@material-ui/icons/LanguageTwoTone'; - declare export { - default as LaptopChromebook, - } from '@material-ui/icons/LaptopChromebook'; - declare export { - default as LaptopChromebookOutlined, - } from '@material-ui/icons/LaptopChromebookOutlined'; - declare export { - default as LaptopChromebookRounded, - } from '@material-ui/icons/LaptopChromebookRounded'; - declare export { - default as LaptopChromebookSharp, - } from '@material-ui/icons/LaptopChromebookSharp'; - declare export { - default as LaptopChromebookTwoTone, - } from '@material-ui/icons/LaptopChromebookTwoTone'; - declare export { default as Laptop } from '@material-ui/icons/Laptop'; - declare export { default as LaptopMac } from '@material-ui/icons/LaptopMac'; - declare export { - default as LaptopMacOutlined, - } from '@material-ui/icons/LaptopMacOutlined'; - declare export { - default as LaptopMacRounded, - } from '@material-ui/icons/LaptopMacRounded'; - declare export { - default as LaptopMacSharp, - } from '@material-ui/icons/LaptopMacSharp'; - declare export { - default as LaptopMacTwoTone, - } from '@material-ui/icons/LaptopMacTwoTone'; - declare export { - default as LaptopOutlined, - } from '@material-ui/icons/LaptopOutlined'; - declare export { - default as LaptopRounded, - } from '@material-ui/icons/LaptopRounded'; - declare export { - default as LaptopSharp, - } from '@material-ui/icons/LaptopSharp'; - declare export { - default as LaptopTwoTone, - } from '@material-ui/icons/LaptopTwoTone'; - declare export { - default as LaptopWindows, - } from '@material-ui/icons/LaptopWindows'; - declare export { - default as LaptopWindowsOutlined, - } from '@material-ui/icons/LaptopWindowsOutlined'; - declare export { - default as LaptopWindowsRounded, - } from '@material-ui/icons/LaptopWindowsRounded'; - declare export { - default as LaptopWindowsSharp, - } from '@material-ui/icons/LaptopWindowsSharp'; - declare export { - default as LaptopWindowsTwoTone, - } from '@material-ui/icons/LaptopWindowsTwoTone'; - declare export { default as LastPage } from '@material-ui/icons/LastPage'; - declare export { - default as LastPageOutlined, - } from '@material-ui/icons/LastPageOutlined'; - declare export { - default as LastPageRounded, - } from '@material-ui/icons/LastPageRounded'; - declare export { - default as LastPageSharp, - } from '@material-ui/icons/LastPageSharp'; - declare export { - default as LastPageTwoTone, - } from '@material-ui/icons/LastPageTwoTone'; - declare export { default as Launch } from '@material-ui/icons/Launch'; - declare export { - default as LaunchOutlined, - } from '@material-ui/icons/LaunchOutlined'; - declare export { - default as LaunchRounded, - } from '@material-ui/icons/LaunchRounded'; - declare export { - default as LaunchSharp, - } from '@material-ui/icons/LaunchSharp'; - declare export { - default as LaunchTwoTone, - } from '@material-ui/icons/LaunchTwoTone'; - declare export { - default as LayersClear, - } from '@material-ui/icons/LayersClear'; - declare export { - default as LayersClearOutlined, - } from '@material-ui/icons/LayersClearOutlined'; - declare export { - default as LayersClearRounded, - } from '@material-ui/icons/LayersClearRounded'; - declare export { - default as LayersClearSharp, - } from '@material-ui/icons/LayersClearSharp'; - declare export { - default as LayersClearTwoTone, - } from '@material-ui/icons/LayersClearTwoTone'; - declare export { default as Layers } from '@material-ui/icons/Layers'; - declare export { - default as LayersOutlined, - } from '@material-ui/icons/LayersOutlined'; - declare export { - default as LayersRounded, - } from '@material-ui/icons/LayersRounded'; - declare export { - default as LayersSharp, - } from '@material-ui/icons/LayersSharp'; - declare export { - default as LayersTwoTone, - } from '@material-ui/icons/LayersTwoTone'; - declare export { default as LeakAdd } from '@material-ui/icons/LeakAdd'; - declare export { - default as LeakAddOutlined, - } from '@material-ui/icons/LeakAddOutlined'; - declare export { - default as LeakAddRounded, - } from '@material-ui/icons/LeakAddRounded'; - declare export { - default as LeakAddSharp, - } from '@material-ui/icons/LeakAddSharp'; - declare export { - default as LeakAddTwoTone, - } from '@material-ui/icons/LeakAddTwoTone'; - declare export { default as LeakRemove } from '@material-ui/icons/LeakRemove'; - declare export { - default as LeakRemoveOutlined, - } from '@material-ui/icons/LeakRemoveOutlined'; - declare export { - default as LeakRemoveRounded, - } from '@material-ui/icons/LeakRemoveRounded'; - declare export { - default as LeakRemoveSharp, - } from '@material-ui/icons/LeakRemoveSharp'; - declare export { - default as LeakRemoveTwoTone, - } from '@material-ui/icons/LeakRemoveTwoTone'; - declare export { default as Lens } from '@material-ui/icons/Lens'; - declare export { - default as LensOutlined, - } from '@material-ui/icons/LensOutlined'; - declare export { - default as LensRounded, - } from '@material-ui/icons/LensRounded'; - declare export { default as LensSharp } from '@material-ui/icons/LensSharp'; - declare export { - default as LensTwoTone, - } from '@material-ui/icons/LensTwoTone'; - declare export { default as LibraryAdd } from '@material-ui/icons/LibraryAdd'; - declare export { - default as LibraryAddOutlined, - } from '@material-ui/icons/LibraryAddOutlined'; - declare export { - default as LibraryAddRounded, - } from '@material-ui/icons/LibraryAddRounded'; - declare export { - default as LibraryAddSharp, - } from '@material-ui/icons/LibraryAddSharp'; - declare export { - default as LibraryAddTwoTone, - } from '@material-ui/icons/LibraryAddTwoTone'; - declare export { - default as LibraryBooks, - } from '@material-ui/icons/LibraryBooks'; - declare export { - default as LibraryBooksOutlined, - } from '@material-ui/icons/LibraryBooksOutlined'; - declare export { - default as LibraryBooksRounded, - } from '@material-ui/icons/LibraryBooksRounded'; - declare export { - default as LibraryBooksSharp, - } from '@material-ui/icons/LibraryBooksSharp'; - declare export { - default as LibraryBooksTwoTone, - } from '@material-ui/icons/LibraryBooksTwoTone'; - declare export { - default as LibraryMusic, - } from '@material-ui/icons/LibraryMusic'; - declare export { - default as LibraryMusicOutlined, - } from '@material-ui/icons/LibraryMusicOutlined'; - declare export { - default as LibraryMusicRounded, - } from '@material-ui/icons/LibraryMusicRounded'; - declare export { - default as LibraryMusicSharp, - } from '@material-ui/icons/LibraryMusicSharp'; - declare export { - default as LibraryMusicTwoTone, - } from '@material-ui/icons/LibraryMusicTwoTone'; - declare export { - default as LinearScale, - } from '@material-ui/icons/LinearScale'; - declare export { - default as LinearScaleOutlined, - } from '@material-ui/icons/LinearScaleOutlined'; - declare export { - default as LinearScaleRounded, - } from '@material-ui/icons/LinearScaleRounded'; - declare export { - default as LinearScaleSharp, - } from '@material-ui/icons/LinearScaleSharp'; - declare export { - default as LinearScaleTwoTone, - } from '@material-ui/icons/LinearScaleTwoTone'; - declare export { default as LineStyle } from '@material-ui/icons/LineStyle'; - declare export { - default as LineStyleOutlined, - } from '@material-ui/icons/LineStyleOutlined'; - declare export { - default as LineStyleRounded, - } from '@material-ui/icons/LineStyleRounded'; - declare export { - default as LineStyleSharp, - } from '@material-ui/icons/LineStyleSharp'; - declare export { - default as LineStyleTwoTone, - } from '@material-ui/icons/LineStyleTwoTone'; - declare export { default as LineWeight } from '@material-ui/icons/LineWeight'; - declare export { - default as LineWeightOutlined, - } from '@material-ui/icons/LineWeightOutlined'; - declare export { - default as LineWeightRounded, - } from '@material-ui/icons/LineWeightRounded'; - declare export { - default as LineWeightSharp, - } from '@material-ui/icons/LineWeightSharp'; - declare export { - default as LineWeightTwoTone, - } from '@material-ui/icons/LineWeightTwoTone'; - declare export { - default as LinkedCamera, - } from '@material-ui/icons/LinkedCamera'; - declare export { - default as LinkedCameraOutlined, - } from '@material-ui/icons/LinkedCameraOutlined'; - declare export { - default as LinkedCameraRounded, - } from '@material-ui/icons/LinkedCameraRounded'; - declare export { - default as LinkedCameraSharp, - } from '@material-ui/icons/LinkedCameraSharp'; - declare export { - default as LinkedCameraTwoTone, - } from '@material-ui/icons/LinkedCameraTwoTone'; - declare export { default as Link } from '@material-ui/icons/Link'; - declare export { default as LinkOff } from '@material-ui/icons/LinkOff'; - declare export { - default as LinkOffOutlined, - } from '@material-ui/icons/LinkOffOutlined'; - declare export { - default as LinkOffRounded, - } from '@material-ui/icons/LinkOffRounded'; - declare export { - default as LinkOffSharp, - } from '@material-ui/icons/LinkOffSharp'; - declare export { - default as LinkOffTwoTone, - } from '@material-ui/icons/LinkOffTwoTone'; - declare export { - default as LinkOutlined, - } from '@material-ui/icons/LinkOutlined'; - declare export { - default as LinkRounded, - } from '@material-ui/icons/LinkRounded'; - declare export { default as LinkSharp } from '@material-ui/icons/LinkSharp'; - declare export { - default as LinkTwoTone, - } from '@material-ui/icons/LinkTwoTone'; - declare export { default as ListAlt } from '@material-ui/icons/ListAlt'; - declare export { - default as ListAltOutlined, - } from '@material-ui/icons/ListAltOutlined'; - declare export { - default as ListAltRounded, - } from '@material-ui/icons/ListAltRounded'; - declare export { - default as ListAltSharp, - } from '@material-ui/icons/ListAltSharp'; - declare export { - default as ListAltTwoTone, - } from '@material-ui/icons/ListAltTwoTone'; - declare export { default as List } from '@material-ui/icons/List'; - declare export { - default as ListOutlined, - } from '@material-ui/icons/ListOutlined'; - declare export { - default as ListRounded, - } from '@material-ui/icons/ListRounded'; - declare export { default as ListSharp } from '@material-ui/icons/ListSharp'; - declare export { - default as ListTwoTone, - } from '@material-ui/icons/ListTwoTone'; - declare export { default as LiveHelp } from '@material-ui/icons/LiveHelp'; - declare export { - default as LiveHelpOutlined, - } from '@material-ui/icons/LiveHelpOutlined'; - declare export { - default as LiveHelpRounded, - } from '@material-ui/icons/LiveHelpRounded'; - declare export { - default as LiveHelpSharp, - } from '@material-ui/icons/LiveHelpSharp'; - declare export { - default as LiveHelpTwoTone, - } from '@material-ui/icons/LiveHelpTwoTone'; - declare export { default as LiveTv } from '@material-ui/icons/LiveTv'; - declare export { - default as LiveTvOutlined, - } from '@material-ui/icons/LiveTvOutlined'; - declare export { - default as LiveTvRounded, - } from '@material-ui/icons/LiveTvRounded'; - declare export { - default as LiveTvSharp, - } from '@material-ui/icons/LiveTvSharp'; - declare export { - default as LiveTvTwoTone, - } from '@material-ui/icons/LiveTvTwoTone'; - declare export { - default as LocalActivity, - } from '@material-ui/icons/LocalActivity'; - declare export { - default as LocalActivityOutlined, - } from '@material-ui/icons/LocalActivityOutlined'; - declare export { - default as LocalActivityRounded, - } from '@material-ui/icons/LocalActivityRounded'; - declare export { - default as LocalActivitySharp, - } from '@material-ui/icons/LocalActivitySharp'; - declare export { - default as LocalActivityTwoTone, - } from '@material-ui/icons/LocalActivityTwoTone'; - declare export { - default as LocalAirport, - } from '@material-ui/icons/LocalAirport'; - declare export { - default as LocalAirportOutlined, - } from '@material-ui/icons/LocalAirportOutlined'; - declare export { - default as LocalAirportRounded, - } from '@material-ui/icons/LocalAirportRounded'; - declare export { - default as LocalAirportSharp, - } from '@material-ui/icons/LocalAirportSharp'; - declare export { - default as LocalAirportTwoTone, - } from '@material-ui/icons/LocalAirportTwoTone'; - declare export { default as LocalAtm } from '@material-ui/icons/LocalAtm'; - declare export { - default as LocalAtmOutlined, - } from '@material-ui/icons/LocalAtmOutlined'; - declare export { - default as LocalAtmRounded, - } from '@material-ui/icons/LocalAtmRounded'; - declare export { - default as LocalAtmSharp, - } from '@material-ui/icons/LocalAtmSharp'; - declare export { - default as LocalAtmTwoTone, - } from '@material-ui/icons/LocalAtmTwoTone'; - declare export { default as LocalBar } from '@material-ui/icons/LocalBar'; - declare export { - default as LocalBarOutlined, - } from '@material-ui/icons/LocalBarOutlined'; - declare export { - default as LocalBarRounded, - } from '@material-ui/icons/LocalBarRounded'; - declare export { - default as LocalBarSharp, - } from '@material-ui/icons/LocalBarSharp'; - declare export { - default as LocalBarTwoTone, - } from '@material-ui/icons/LocalBarTwoTone'; - declare export { default as LocalCafe } from '@material-ui/icons/LocalCafe'; - declare export { - default as LocalCafeOutlined, - } from '@material-ui/icons/LocalCafeOutlined'; - declare export { - default as LocalCafeRounded, - } from '@material-ui/icons/LocalCafeRounded'; - declare export { - default as LocalCafeSharp, - } from '@material-ui/icons/LocalCafeSharp'; - declare export { - default as LocalCafeTwoTone, - } from '@material-ui/icons/LocalCafeTwoTone'; - declare export { - default as LocalCarWash, - } from '@material-ui/icons/LocalCarWash'; - declare export { - default as LocalCarWashOutlined, - } from '@material-ui/icons/LocalCarWashOutlined'; - declare export { - default as LocalCarWashRounded, - } from '@material-ui/icons/LocalCarWashRounded'; - declare export { - default as LocalCarWashSharp, - } from '@material-ui/icons/LocalCarWashSharp'; - declare export { - default as LocalCarWashTwoTone, - } from '@material-ui/icons/LocalCarWashTwoTone'; - declare export { - default as LocalConvenienceStore, - } from '@material-ui/icons/LocalConvenienceStore'; - declare export { - default as LocalConvenienceStoreOutlined, - } from '@material-ui/icons/LocalConvenienceStoreOutlined'; - declare export { - default as LocalConvenienceStoreRounded, - } from '@material-ui/icons/LocalConvenienceStoreRounded'; - declare export { - default as LocalConvenienceStoreSharp, - } from '@material-ui/icons/LocalConvenienceStoreSharp'; - declare export { - default as LocalConvenienceStoreTwoTone, - } from '@material-ui/icons/LocalConvenienceStoreTwoTone'; - declare export { - default as LocalDining, - } from '@material-ui/icons/LocalDining'; - declare export { - default as LocalDiningOutlined, - } from '@material-ui/icons/LocalDiningOutlined'; - declare export { - default as LocalDiningRounded, - } from '@material-ui/icons/LocalDiningRounded'; - declare export { - default as LocalDiningSharp, - } from '@material-ui/icons/LocalDiningSharp'; - declare export { - default as LocalDiningTwoTone, - } from '@material-ui/icons/LocalDiningTwoTone'; - declare export { default as LocalDrink } from '@material-ui/icons/LocalDrink'; - declare export { - default as LocalDrinkOutlined, - } from '@material-ui/icons/LocalDrinkOutlined'; - declare export { - default as LocalDrinkRounded, - } from '@material-ui/icons/LocalDrinkRounded'; - declare export { - default as LocalDrinkSharp, - } from '@material-ui/icons/LocalDrinkSharp'; - declare export { - default as LocalDrinkTwoTone, - } from '@material-ui/icons/LocalDrinkTwoTone'; - declare export { - default as LocalFlorist, - } from '@material-ui/icons/LocalFlorist'; - declare export { - default as LocalFloristOutlined, - } from '@material-ui/icons/LocalFloristOutlined'; - declare export { - default as LocalFloristRounded, - } from '@material-ui/icons/LocalFloristRounded'; - declare export { - default as LocalFloristSharp, - } from '@material-ui/icons/LocalFloristSharp'; - declare export { - default as LocalFloristTwoTone, - } from '@material-ui/icons/LocalFloristTwoTone'; - declare export { - default as LocalGasStation, - } from '@material-ui/icons/LocalGasStation'; - declare export { - default as LocalGasStationOutlined, - } from '@material-ui/icons/LocalGasStationOutlined'; - declare export { - default as LocalGasStationRounded, - } from '@material-ui/icons/LocalGasStationRounded'; - declare export { - default as LocalGasStationSharp, - } from '@material-ui/icons/LocalGasStationSharp'; - declare export { - default as LocalGasStationTwoTone, - } from '@material-ui/icons/LocalGasStationTwoTone'; - declare export { - default as LocalGroceryStore, - } from '@material-ui/icons/LocalGroceryStore'; - declare export { - default as LocalGroceryStoreOutlined, - } from '@material-ui/icons/LocalGroceryStoreOutlined'; - declare export { - default as LocalGroceryStoreRounded, - } from '@material-ui/icons/LocalGroceryStoreRounded'; - declare export { - default as LocalGroceryStoreSharp, - } from '@material-ui/icons/LocalGroceryStoreSharp'; - declare export { - default as LocalGroceryStoreTwoTone, - } from '@material-ui/icons/LocalGroceryStoreTwoTone'; - declare export { - default as LocalHospital, - } from '@material-ui/icons/LocalHospital'; - declare export { - default as LocalHospitalOutlined, - } from '@material-ui/icons/LocalHospitalOutlined'; - declare export { - default as LocalHospitalRounded, - } from '@material-ui/icons/LocalHospitalRounded'; - declare export { - default as LocalHospitalSharp, - } from '@material-ui/icons/LocalHospitalSharp'; - declare export { - default as LocalHospitalTwoTone, - } from '@material-ui/icons/LocalHospitalTwoTone'; - declare export { default as LocalHotel } from '@material-ui/icons/LocalHotel'; - declare export { - default as LocalHotelOutlined, - } from '@material-ui/icons/LocalHotelOutlined'; - declare export { - default as LocalHotelRounded, - } from '@material-ui/icons/LocalHotelRounded'; - declare export { - default as LocalHotelSharp, - } from '@material-ui/icons/LocalHotelSharp'; - declare export { - default as LocalHotelTwoTone, - } from '@material-ui/icons/LocalHotelTwoTone'; - declare export { - default as LocalLaundryService, - } from '@material-ui/icons/LocalLaundryService'; - declare export { - default as LocalLaundryServiceOutlined, - } from '@material-ui/icons/LocalLaundryServiceOutlined'; - declare export { - default as LocalLaundryServiceRounded, - } from '@material-ui/icons/LocalLaundryServiceRounded'; - declare export { - default as LocalLaundryServiceSharp, - } from '@material-ui/icons/LocalLaundryServiceSharp'; - declare export { - default as LocalLaundryServiceTwoTone, - } from '@material-ui/icons/LocalLaundryServiceTwoTone'; - declare export { - default as LocalLibrary, - } from '@material-ui/icons/LocalLibrary'; - declare export { - default as LocalLibraryOutlined, - } from '@material-ui/icons/LocalLibraryOutlined'; - declare export { - default as LocalLibraryRounded, - } from '@material-ui/icons/LocalLibraryRounded'; - declare export { - default as LocalLibrarySharp, - } from '@material-ui/icons/LocalLibrarySharp'; - declare export { - default as LocalLibraryTwoTone, - } from '@material-ui/icons/LocalLibraryTwoTone'; - declare export { default as LocalMall } from '@material-ui/icons/LocalMall'; - declare export { - default as LocalMallOutlined, - } from '@material-ui/icons/LocalMallOutlined'; - declare export { - default as LocalMallRounded, - } from '@material-ui/icons/LocalMallRounded'; - declare export { - default as LocalMallSharp, - } from '@material-ui/icons/LocalMallSharp'; - declare export { - default as LocalMallTwoTone, - } from '@material-ui/icons/LocalMallTwoTone'; - declare export { - default as LocalMovies, - } from '@material-ui/icons/LocalMovies'; - declare export { - default as LocalMoviesOutlined, - } from '@material-ui/icons/LocalMoviesOutlined'; - declare export { - default as LocalMoviesRounded, - } from '@material-ui/icons/LocalMoviesRounded'; - declare export { - default as LocalMoviesSharp, - } from '@material-ui/icons/LocalMoviesSharp'; - declare export { - default as LocalMoviesTwoTone, - } from '@material-ui/icons/LocalMoviesTwoTone'; - declare export { default as LocalOffer } from '@material-ui/icons/LocalOffer'; - declare export { - default as LocalOfferOutlined, - } from '@material-ui/icons/LocalOfferOutlined'; - declare export { - default as LocalOfferRounded, - } from '@material-ui/icons/LocalOfferRounded'; - declare export { - default as LocalOfferSharp, - } from '@material-ui/icons/LocalOfferSharp'; - declare export { - default as LocalOfferTwoTone, - } from '@material-ui/icons/LocalOfferTwoTone'; - declare export { - default as LocalParking, - } from '@material-ui/icons/LocalParking'; - declare export { - default as LocalParkingOutlined, - } from '@material-ui/icons/LocalParkingOutlined'; - declare export { - default as LocalParkingRounded, - } from '@material-ui/icons/LocalParkingRounded'; - declare export { - default as LocalParkingSharp, - } from '@material-ui/icons/LocalParkingSharp'; - declare export { - default as LocalParkingTwoTone, - } from '@material-ui/icons/LocalParkingTwoTone'; - declare export { - default as LocalPharmacy, - } from '@material-ui/icons/LocalPharmacy'; - declare export { - default as LocalPharmacyOutlined, - } from '@material-ui/icons/LocalPharmacyOutlined'; - declare export { - default as LocalPharmacyRounded, - } from '@material-ui/icons/LocalPharmacyRounded'; - declare export { - default as LocalPharmacySharp, - } from '@material-ui/icons/LocalPharmacySharp'; - declare export { - default as LocalPharmacyTwoTone, - } from '@material-ui/icons/LocalPharmacyTwoTone'; - declare export { default as LocalPhone } from '@material-ui/icons/LocalPhone'; - declare export { - default as LocalPhoneOutlined, - } from '@material-ui/icons/LocalPhoneOutlined'; - declare export { - default as LocalPhoneRounded, - } from '@material-ui/icons/LocalPhoneRounded'; - declare export { - default as LocalPhoneSharp, - } from '@material-ui/icons/LocalPhoneSharp'; - declare export { - default as LocalPhoneTwoTone, - } from '@material-ui/icons/LocalPhoneTwoTone'; - declare export { default as LocalPizza } from '@material-ui/icons/LocalPizza'; - declare export { - default as LocalPizzaOutlined, - } from '@material-ui/icons/LocalPizzaOutlined'; - declare export { - default as LocalPizzaRounded, - } from '@material-ui/icons/LocalPizzaRounded'; - declare export { - default as LocalPizzaSharp, - } from '@material-ui/icons/LocalPizzaSharp'; - declare export { - default as LocalPizzaTwoTone, - } from '@material-ui/icons/LocalPizzaTwoTone'; - declare export { default as LocalPlay } from '@material-ui/icons/LocalPlay'; - declare export { - default as LocalPlayOutlined, - } from '@material-ui/icons/LocalPlayOutlined'; - declare export { - default as LocalPlayRounded, - } from '@material-ui/icons/LocalPlayRounded'; - declare export { - default as LocalPlaySharp, - } from '@material-ui/icons/LocalPlaySharp'; - declare export { - default as LocalPlayTwoTone, - } from '@material-ui/icons/LocalPlayTwoTone'; - declare export { - default as LocalPostOffice, - } from '@material-ui/icons/LocalPostOffice'; - declare export { - default as LocalPostOfficeOutlined, - } from '@material-ui/icons/LocalPostOfficeOutlined'; - declare export { - default as LocalPostOfficeRounded, - } from '@material-ui/icons/LocalPostOfficeRounded'; - declare export { - default as LocalPostOfficeSharp, - } from '@material-ui/icons/LocalPostOfficeSharp'; - declare export { - default as LocalPostOfficeTwoTone, - } from '@material-ui/icons/LocalPostOfficeTwoTone'; - declare export { - default as LocalPrintshop, - } from '@material-ui/icons/LocalPrintshop'; - declare export { - default as LocalPrintshopOutlined, - } from '@material-ui/icons/LocalPrintshopOutlined'; - declare export { - default as LocalPrintshopRounded, - } from '@material-ui/icons/LocalPrintshopRounded'; - declare export { - default as LocalPrintshopSharp, - } from '@material-ui/icons/LocalPrintshopSharp'; - declare export { - default as LocalPrintshopTwoTone, - } from '@material-ui/icons/LocalPrintshopTwoTone'; - declare export { default as LocalSee } from '@material-ui/icons/LocalSee'; - declare export { - default as LocalSeeOutlined, - } from '@material-ui/icons/LocalSeeOutlined'; - declare export { - default as LocalSeeRounded, - } from '@material-ui/icons/LocalSeeRounded'; - declare export { - default as LocalSeeSharp, - } from '@material-ui/icons/LocalSeeSharp'; - declare export { - default as LocalSeeTwoTone, - } from '@material-ui/icons/LocalSeeTwoTone'; - declare export { - default as LocalShipping, - } from '@material-ui/icons/LocalShipping'; - declare export { - default as LocalShippingOutlined, - } from '@material-ui/icons/LocalShippingOutlined'; - declare export { - default as LocalShippingRounded, - } from '@material-ui/icons/LocalShippingRounded'; - declare export { - default as LocalShippingSharp, - } from '@material-ui/icons/LocalShippingSharp'; - declare export { - default as LocalShippingTwoTone, - } from '@material-ui/icons/LocalShippingTwoTone'; - declare export { default as LocalTaxi } from '@material-ui/icons/LocalTaxi'; - declare export { - default as LocalTaxiOutlined, - } from '@material-ui/icons/LocalTaxiOutlined'; - declare export { - default as LocalTaxiRounded, - } from '@material-ui/icons/LocalTaxiRounded'; - declare export { - default as LocalTaxiSharp, - } from '@material-ui/icons/LocalTaxiSharp'; - declare export { - default as LocalTaxiTwoTone, - } from '@material-ui/icons/LocalTaxiTwoTone'; - declare export { - default as LocationCity, - } from '@material-ui/icons/LocationCity'; - declare export { - default as LocationCityOutlined, - } from '@material-ui/icons/LocationCityOutlined'; - declare export { - default as LocationCityRounded, - } from '@material-ui/icons/LocationCityRounded'; - declare export { - default as LocationCitySharp, - } from '@material-ui/icons/LocationCitySharp'; - declare export { - default as LocationCityTwoTone, - } from '@material-ui/icons/LocationCityTwoTone'; - declare export { - default as LocationDisabled, - } from '@material-ui/icons/LocationDisabled'; - declare export { - default as LocationDisabledOutlined, - } from '@material-ui/icons/LocationDisabledOutlined'; - declare export { - default as LocationDisabledRounded, - } from '@material-ui/icons/LocationDisabledRounded'; - declare export { - default as LocationDisabledSharp, - } from '@material-ui/icons/LocationDisabledSharp'; - declare export { - default as LocationDisabledTwoTone, - } from '@material-ui/icons/LocationDisabledTwoTone'; - declare export { - default as LocationOff, - } from '@material-ui/icons/LocationOff'; - declare export { - default as LocationOffOutlined, - } from '@material-ui/icons/LocationOffOutlined'; - declare export { - default as LocationOffRounded, - } from '@material-ui/icons/LocationOffRounded'; - declare export { - default as LocationOffSharp, - } from '@material-ui/icons/LocationOffSharp'; - declare export { - default as LocationOffTwoTone, - } from '@material-ui/icons/LocationOffTwoTone'; - declare export { default as LocationOn } from '@material-ui/icons/LocationOn'; - declare export { - default as LocationOnOutlined, - } from '@material-ui/icons/LocationOnOutlined'; - declare export { - default as LocationOnRounded, - } from '@material-ui/icons/LocationOnRounded'; - declare export { - default as LocationOnSharp, - } from '@material-ui/icons/LocationOnSharp'; - declare export { - default as LocationOnTwoTone, - } from '@material-ui/icons/LocationOnTwoTone'; - declare export { - default as LocationSearching, - } from '@material-ui/icons/LocationSearching'; - declare export { - default as LocationSearchingOutlined, - } from '@material-ui/icons/LocationSearchingOutlined'; - declare export { - default as LocationSearchingRounded, - } from '@material-ui/icons/LocationSearchingRounded'; - declare export { - default as LocationSearchingSharp, - } from '@material-ui/icons/LocationSearchingSharp'; - declare export { - default as LocationSearchingTwoTone, - } from '@material-ui/icons/LocationSearchingTwoTone'; - declare export { default as Lock } from '@material-ui/icons/Lock'; - declare export { default as LockOpen } from '@material-ui/icons/LockOpen'; - declare export { - default as LockOpenOutlined, - } from '@material-ui/icons/LockOpenOutlined'; - declare export { - default as LockOpenRounded, - } from '@material-ui/icons/LockOpenRounded'; - declare export { - default as LockOpenSharp, - } from '@material-ui/icons/LockOpenSharp'; - declare export { - default as LockOpenTwoTone, - } from '@material-ui/icons/LockOpenTwoTone'; - declare export { - default as LockOutlined, - } from '@material-ui/icons/LockOutlined'; - declare export { - default as LockRounded, - } from '@material-ui/icons/LockRounded'; - declare export { default as LockSharp } from '@material-ui/icons/LockSharp'; - declare export { - default as LockTwoTone, - } from '@material-ui/icons/LockTwoTone'; - declare export { default as Looks3 } from '@material-ui/icons/Looks3'; - declare export { - default as Looks3Outlined, - } from '@material-ui/icons/Looks3Outlined'; - declare export { - default as Looks3Rounded, - } from '@material-ui/icons/Looks3Rounded'; - declare export { - default as Looks3Sharp, - } from '@material-ui/icons/Looks3Sharp'; - declare export { - default as Looks3TwoTone, - } from '@material-ui/icons/Looks3TwoTone'; - declare export { default as Looks4 } from '@material-ui/icons/Looks4'; - declare export { - default as Looks4Outlined, - } from '@material-ui/icons/Looks4Outlined'; - declare export { - default as Looks4Rounded, - } from '@material-ui/icons/Looks4Rounded'; - declare export { - default as Looks4Sharp, - } from '@material-ui/icons/Looks4Sharp'; - declare export { - default as Looks4TwoTone, - } from '@material-ui/icons/Looks4TwoTone'; - declare export { default as Looks5 } from '@material-ui/icons/Looks5'; - declare export { - default as Looks5Outlined, - } from '@material-ui/icons/Looks5Outlined'; - declare export { - default as Looks5Rounded, - } from '@material-ui/icons/Looks5Rounded'; - declare export { - default as Looks5Sharp, - } from '@material-ui/icons/Looks5Sharp'; - declare export { - default as Looks5TwoTone, - } from '@material-ui/icons/Looks5TwoTone'; - declare export { default as Looks6 } from '@material-ui/icons/Looks6'; - declare export { - default as Looks6Outlined, - } from '@material-ui/icons/Looks6Outlined'; - declare export { - default as Looks6Rounded, - } from '@material-ui/icons/Looks6Rounded'; - declare export { - default as Looks6Sharp, - } from '@material-ui/icons/Looks6Sharp'; - declare export { - default as Looks6TwoTone, - } from '@material-ui/icons/Looks6TwoTone'; - declare export { default as Looks } from '@material-ui/icons/Looks'; - declare export { default as LooksOne } from '@material-ui/icons/LooksOne'; - declare export { - default as LooksOneOutlined, - } from '@material-ui/icons/LooksOneOutlined'; - declare export { - default as LooksOneRounded, - } from '@material-ui/icons/LooksOneRounded'; - declare export { - default as LooksOneSharp, - } from '@material-ui/icons/LooksOneSharp'; - declare export { - default as LooksOneTwoTone, - } from '@material-ui/icons/LooksOneTwoTone'; - declare export { - default as LooksOutlined, - } from '@material-ui/icons/LooksOutlined'; - declare export { - default as LooksRounded, - } from '@material-ui/icons/LooksRounded'; - declare export { default as LooksSharp } from '@material-ui/icons/LooksSharp'; - declare export { default as LooksTwo } from '@material-ui/icons/LooksTwo'; - declare export { - default as LooksTwoOutlined, - } from '@material-ui/icons/LooksTwoOutlined'; - declare export { - default as LooksTwoRounded, - } from '@material-ui/icons/LooksTwoRounded'; - declare export { - default as LooksTwoSharp, - } from '@material-ui/icons/LooksTwoSharp'; - declare export { - default as LooksTwoTone, - } from '@material-ui/icons/LooksTwoTone'; - declare export { - default as LooksTwoTwoTone, - } from '@material-ui/icons/LooksTwoTwoTone'; - declare export { default as Loop } from '@material-ui/icons/Loop'; - declare export { - default as LoopOutlined, - } from '@material-ui/icons/LoopOutlined'; - declare export { - default as LoopRounded, - } from '@material-ui/icons/LoopRounded'; - declare export { default as LoopSharp } from '@material-ui/icons/LoopSharp'; - declare export { - default as LoopTwoTone, - } from '@material-ui/icons/LoopTwoTone'; - declare export { default as Loupe } from '@material-ui/icons/Loupe'; - declare export { - default as LoupeOutlined, - } from '@material-ui/icons/LoupeOutlined'; - declare export { - default as LoupeRounded, - } from '@material-ui/icons/LoupeRounded'; - declare export { default as LoupeSharp } from '@material-ui/icons/LoupeSharp'; - declare export { - default as LoupeTwoTone, - } from '@material-ui/icons/LoupeTwoTone'; - declare export { - default as LowPriority, - } from '@material-ui/icons/LowPriority'; - declare export { - default as LowPriorityOutlined, - } from '@material-ui/icons/LowPriorityOutlined'; - declare export { - default as LowPriorityRounded, - } from '@material-ui/icons/LowPriorityRounded'; - declare export { - default as LowPrioritySharp, - } from '@material-ui/icons/LowPrioritySharp'; - declare export { - default as LowPriorityTwoTone, - } from '@material-ui/icons/LowPriorityTwoTone'; - declare export { default as Loyalty } from '@material-ui/icons/Loyalty'; - declare export { - default as LoyaltyOutlined, - } from '@material-ui/icons/LoyaltyOutlined'; - declare export { - default as LoyaltyRounded, - } from '@material-ui/icons/LoyaltyRounded'; - declare export { - default as LoyaltySharp, - } from '@material-ui/icons/LoyaltySharp'; - declare export { - default as LoyaltyTwoTone, - } from '@material-ui/icons/LoyaltyTwoTone'; - declare export { default as Mail } from '@material-ui/icons/Mail'; - declare export { - default as MailOutlined, - } from '@material-ui/icons/MailOutlined'; - declare export { - default as MailOutline, - } from '@material-ui/icons/MailOutline'; - declare export { - default as MailOutlineOutlined, - } from '@material-ui/icons/MailOutlineOutlined'; - declare export { - default as MailOutlineRounded, - } from '@material-ui/icons/MailOutlineRounded'; - declare export { - default as MailOutlineSharp, - } from '@material-ui/icons/MailOutlineSharp'; - declare export { - default as MailOutlineTwoTone, - } from '@material-ui/icons/MailOutlineTwoTone'; - declare export { - default as MailRounded, - } from '@material-ui/icons/MailRounded'; - declare export { default as MailSharp } from '@material-ui/icons/MailSharp'; - declare export { - default as MailTwoTone, - } from '@material-ui/icons/MailTwoTone'; - declare export { default as Map } from '@material-ui/icons/Map'; - declare export { - default as MapOutlined, - } from '@material-ui/icons/MapOutlined'; - declare export { default as MapRounded } from '@material-ui/icons/MapRounded'; - declare export { default as MapSharp } from '@material-ui/icons/MapSharp'; - declare export { default as MapTwoTone } from '@material-ui/icons/MapTwoTone'; - declare export { default as Markunread } from '@material-ui/icons/Markunread'; - declare export { - default as MarkunreadMailbox, - } from '@material-ui/icons/MarkunreadMailbox'; - declare export { - default as MarkunreadMailboxOutlined, - } from '@material-ui/icons/MarkunreadMailboxOutlined'; - declare export { - default as MarkunreadMailboxRounded, - } from '@material-ui/icons/MarkunreadMailboxRounded'; - declare export { - default as MarkunreadMailboxSharp, - } from '@material-ui/icons/MarkunreadMailboxSharp'; - declare export { - default as MarkunreadMailboxTwoTone, - } from '@material-ui/icons/MarkunreadMailboxTwoTone'; - declare export { - default as MarkunreadOutlined, - } from '@material-ui/icons/MarkunreadOutlined'; - declare export { - default as MarkunreadRounded, - } from '@material-ui/icons/MarkunreadRounded'; - declare export { - default as MarkunreadSharp, - } from '@material-ui/icons/MarkunreadSharp'; - declare export { - default as MarkunreadTwoTone, - } from '@material-ui/icons/MarkunreadTwoTone'; - declare export { default as Maximize } from '@material-ui/icons/Maximize'; - declare export { - default as MaximizeOutlined, - } from '@material-ui/icons/MaximizeOutlined'; - declare export { - default as MaximizeRounded, - } from '@material-ui/icons/MaximizeRounded'; - declare export { - default as MaximizeSharp, - } from '@material-ui/icons/MaximizeSharp'; - declare export { - default as MaximizeTwoTone, - } from '@material-ui/icons/MaximizeTwoTone'; - declare export { - default as MeetingRoom, - } from '@material-ui/icons/MeetingRoom'; - declare export { - default as MeetingRoomOutlined, - } from '@material-ui/icons/MeetingRoomOutlined'; - declare export { - default as MeetingRoomRounded, - } from '@material-ui/icons/MeetingRoomRounded'; - declare export { - default as MeetingRoomSharp, - } from '@material-ui/icons/MeetingRoomSharp'; - declare export { - default as MeetingRoomTwoTone, - } from '@material-ui/icons/MeetingRoomTwoTone'; - declare export { default as Memory } from '@material-ui/icons/Memory'; - declare export { - default as MemoryOutlined, - } from '@material-ui/icons/MemoryOutlined'; - declare export { - default as MemoryRounded, - } from '@material-ui/icons/MemoryRounded'; - declare export { - default as MemorySharp, - } from '@material-ui/icons/MemorySharp'; - declare export { - default as MemoryTwoTone, - } from '@material-ui/icons/MemoryTwoTone'; - declare export { default as Menu } from '@material-ui/icons/Menu'; - declare export { - default as MenuOutlined, - } from '@material-ui/icons/MenuOutlined'; - declare export { - default as MenuRounded, - } from '@material-ui/icons/MenuRounded'; - declare export { default as MenuSharp } from '@material-ui/icons/MenuSharp'; - declare export { - default as MenuTwoTone, - } from '@material-ui/icons/MenuTwoTone'; - declare export { default as MergeType } from '@material-ui/icons/MergeType'; - declare export { - default as MergeTypeOutlined, - } from '@material-ui/icons/MergeTypeOutlined'; - declare export { - default as MergeTypeRounded, - } from '@material-ui/icons/MergeTypeRounded'; - declare export { - default as MergeTypeSharp, - } from '@material-ui/icons/MergeTypeSharp'; - declare export { - default as MergeTypeTwoTone, - } from '@material-ui/icons/MergeTypeTwoTone'; - declare export { default as Message } from '@material-ui/icons/Message'; - declare export { - default as MessageOutlined, - } from '@material-ui/icons/MessageOutlined'; - declare export { - default as MessageRounded, - } from '@material-ui/icons/MessageRounded'; - declare export { - default as MessageSharp, - } from '@material-ui/icons/MessageSharp'; - declare export { - default as MessageTwoTone, - } from '@material-ui/icons/MessageTwoTone'; - declare export { default as Mic } from '@material-ui/icons/Mic'; - declare export { default as MicNone } from '@material-ui/icons/MicNone'; - declare export { - default as MicNoneOutlined, - } from '@material-ui/icons/MicNoneOutlined'; - declare export { - default as MicNoneRounded, - } from '@material-ui/icons/MicNoneRounded'; - declare export { - default as MicNoneSharp, - } from '@material-ui/icons/MicNoneSharp'; - declare export { - default as MicNoneTwoTone, - } from '@material-ui/icons/MicNoneTwoTone'; - declare export { default as MicOff } from '@material-ui/icons/MicOff'; - declare export { - default as MicOffOutlined, - } from '@material-ui/icons/MicOffOutlined'; - declare export { - default as MicOffRounded, - } from '@material-ui/icons/MicOffRounded'; - declare export { - default as MicOffSharp, - } from '@material-ui/icons/MicOffSharp'; - declare export { - default as MicOffTwoTone, - } from '@material-ui/icons/MicOffTwoTone'; - declare export { - default as MicOutlined, - } from '@material-ui/icons/MicOutlined'; - declare export { default as MicRounded } from '@material-ui/icons/MicRounded'; - declare export { default as MicSharp } from '@material-ui/icons/MicSharp'; - declare export { default as MicTwoTone } from '@material-ui/icons/MicTwoTone'; - declare export { default as Minimize } from '@material-ui/icons/Minimize'; - declare export { - default as MinimizeOutlined, - } from '@material-ui/icons/MinimizeOutlined'; - declare export { - default as MinimizeRounded, - } from '@material-ui/icons/MinimizeRounded'; - declare export { - default as MinimizeSharp, - } from '@material-ui/icons/MinimizeSharp'; - declare export { - default as MinimizeTwoTone, - } from '@material-ui/icons/MinimizeTwoTone'; - declare export { - default as MissedVideoCall, - } from '@material-ui/icons/MissedVideoCall'; - declare export { - default as MissedVideoCallOutlined, - } from '@material-ui/icons/MissedVideoCallOutlined'; - declare export { - default as MissedVideoCallRounded, - } from '@material-ui/icons/MissedVideoCallRounded'; - declare export { - default as MissedVideoCallSharp, - } from '@material-ui/icons/MissedVideoCallSharp'; - declare export { - default as MissedVideoCallTwoTone, - } from '@material-ui/icons/MissedVideoCallTwoTone'; - declare export { default as Mms } from '@material-ui/icons/Mms'; - declare export { - default as MmsOutlined, - } from '@material-ui/icons/MmsOutlined'; - declare export { default as MmsRounded } from '@material-ui/icons/MmsRounded'; - declare export { default as MmsSharp } from '@material-ui/icons/MmsSharp'; - declare export { default as MmsTwoTone } from '@material-ui/icons/MmsTwoTone'; - declare export { - default as MobileFriendly, - } from '@material-ui/icons/MobileFriendly'; - declare export { - default as MobileFriendlyOutlined, - } from '@material-ui/icons/MobileFriendlyOutlined'; - declare export { - default as MobileFriendlyRounded, - } from '@material-ui/icons/MobileFriendlyRounded'; - declare export { - default as MobileFriendlySharp, - } from '@material-ui/icons/MobileFriendlySharp'; - declare export { - default as MobileFriendlyTwoTone, - } from '@material-ui/icons/MobileFriendlyTwoTone'; - declare export { default as MobileOff } from '@material-ui/icons/MobileOff'; - declare export { - default as MobileOffOutlined, - } from '@material-ui/icons/MobileOffOutlined'; - declare export { - default as MobileOffRounded, - } from '@material-ui/icons/MobileOffRounded'; - declare export { - default as MobileOffSharp, - } from '@material-ui/icons/MobileOffSharp'; - declare export { - default as MobileOffTwoTone, - } from '@material-ui/icons/MobileOffTwoTone'; - declare export { - default as MobileScreenShare, - } from '@material-ui/icons/MobileScreenShare'; - declare export { - default as MobileScreenShareOutlined, - } from '@material-ui/icons/MobileScreenShareOutlined'; - declare export { - default as MobileScreenShareRounded, - } from '@material-ui/icons/MobileScreenShareRounded'; - declare export { - default as MobileScreenShareSharp, - } from '@material-ui/icons/MobileScreenShareSharp'; - declare export { - default as MobileScreenShareTwoTone, - } from '@material-ui/icons/MobileScreenShareTwoTone'; - declare export { - default as ModeComment, - } from '@material-ui/icons/ModeComment'; - declare export { - default as ModeCommentOutlined, - } from '@material-ui/icons/ModeCommentOutlined'; - declare export { - default as ModeCommentRounded, - } from '@material-ui/icons/ModeCommentRounded'; - declare export { - default as ModeCommentSharp, - } from '@material-ui/icons/ModeCommentSharp'; - declare export { - default as ModeCommentTwoTone, - } from '@material-ui/icons/ModeCommentTwoTone'; - declare export { - default as MonetizationOn, - } from '@material-ui/icons/MonetizationOn'; - declare export { - default as MonetizationOnOutlined, - } from '@material-ui/icons/MonetizationOnOutlined'; - declare export { - default as MonetizationOnRounded, - } from '@material-ui/icons/MonetizationOnRounded'; - declare export { - default as MonetizationOnSharp, - } from '@material-ui/icons/MonetizationOnSharp'; - declare export { - default as MonetizationOnTwoTone, - } from '@material-ui/icons/MonetizationOnTwoTone'; - declare export { default as Money } from '@material-ui/icons/Money'; - declare export { default as MoneyOff } from '@material-ui/icons/MoneyOff'; - declare export { - default as MoneyOffOutlined, - } from '@material-ui/icons/MoneyOffOutlined'; - declare export { - default as MoneyOffRounded, - } from '@material-ui/icons/MoneyOffRounded'; - declare export { - default as MoneyOffSharp, - } from '@material-ui/icons/MoneyOffSharp'; - declare export { - default as MoneyOffTwoTone, - } from '@material-ui/icons/MoneyOffTwoTone'; - declare export { - default as MoneyOutlined, - } from '@material-ui/icons/MoneyOutlined'; - declare export { - default as MoneyRounded, - } from '@material-ui/icons/MoneyRounded'; - declare export { default as MoneySharp } from '@material-ui/icons/MoneySharp'; - declare export { - default as MoneyTwoTone, - } from '@material-ui/icons/MoneyTwoTone'; - declare export { - default as MonochromePhotos, - } from '@material-ui/icons/MonochromePhotos'; - declare export { - default as MonochromePhotosOutlined, - } from '@material-ui/icons/MonochromePhotosOutlined'; - declare export { - default as MonochromePhotosRounded, - } from '@material-ui/icons/MonochromePhotosRounded'; - declare export { - default as MonochromePhotosSharp, - } from '@material-ui/icons/MonochromePhotosSharp'; - declare export { - default as MonochromePhotosTwoTone, - } from '@material-ui/icons/MonochromePhotosTwoTone'; - declare export { default as MoodBad } from '@material-ui/icons/MoodBad'; - declare export { - default as MoodBadOutlined, - } from '@material-ui/icons/MoodBadOutlined'; - declare export { - default as MoodBadRounded, - } from '@material-ui/icons/MoodBadRounded'; - declare export { - default as MoodBadSharp, - } from '@material-ui/icons/MoodBadSharp'; - declare export { - default as MoodBadTwoTone, - } from '@material-ui/icons/MoodBadTwoTone'; - declare export { default as Mood } from '@material-ui/icons/Mood'; - declare export { - default as MoodOutlined, - } from '@material-ui/icons/MoodOutlined'; - declare export { - default as MoodRounded, - } from '@material-ui/icons/MoodRounded'; - declare export { default as MoodSharp } from '@material-ui/icons/MoodSharp'; - declare export { - default as MoodTwoTone, - } from '@material-ui/icons/MoodTwoTone'; - declare export { default as MoreHoriz } from '@material-ui/icons/MoreHoriz'; - declare export { - default as MoreHorizOutlined, - } from '@material-ui/icons/MoreHorizOutlined'; - declare export { - default as MoreHorizRounded, - } from '@material-ui/icons/MoreHorizRounded'; - declare export { - default as MoreHorizSharp, - } from '@material-ui/icons/MoreHorizSharp'; - declare export { - default as MoreHorizTwoTone, - } from '@material-ui/icons/MoreHorizTwoTone'; - declare export { default as More } from '@material-ui/icons/More'; - declare export { - default as MoreOutlined, - } from '@material-ui/icons/MoreOutlined'; - declare export { - default as MoreRounded, - } from '@material-ui/icons/MoreRounded'; - declare export { default as MoreSharp } from '@material-ui/icons/MoreSharp'; - declare export { - default as MoreTwoTone, - } from '@material-ui/icons/MoreTwoTone'; - declare export { default as MoreVert } from '@material-ui/icons/MoreVert'; - declare export { - default as MoreVertOutlined, - } from '@material-ui/icons/MoreVertOutlined'; - declare export { - default as MoreVertRounded, - } from '@material-ui/icons/MoreVertRounded'; - declare export { - default as MoreVertSharp, - } from '@material-ui/icons/MoreVertSharp'; - declare export { - default as MoreVertTwoTone, - } from '@material-ui/icons/MoreVertTwoTone'; - declare export { default as Motorcycle } from '@material-ui/icons/Motorcycle'; - declare export { - default as MotorcycleOutlined, - } from '@material-ui/icons/MotorcycleOutlined'; - declare export { - default as MotorcycleRounded, - } from '@material-ui/icons/MotorcycleRounded'; - declare export { - default as MotorcycleSharp, - } from '@material-ui/icons/MotorcycleSharp'; - declare export { - default as MotorcycleTwoTone, - } from '@material-ui/icons/MotorcycleTwoTone'; - declare export { default as Mouse } from '@material-ui/icons/Mouse'; - declare export { - default as MouseOutlined, - } from '@material-ui/icons/MouseOutlined'; - declare export { - default as MouseRounded, - } from '@material-ui/icons/MouseRounded'; - declare export { default as MouseSharp } from '@material-ui/icons/MouseSharp'; - declare export { - default as MouseTwoTone, - } from '@material-ui/icons/MouseTwoTone'; - declare export { - default as MoveToInbox, - } from '@material-ui/icons/MoveToInbox'; - declare export { - default as MoveToInboxOutlined, - } from '@material-ui/icons/MoveToInboxOutlined'; - declare export { - default as MoveToInboxRounded, - } from '@material-ui/icons/MoveToInboxRounded'; - declare export { - default as MoveToInboxSharp, - } from '@material-ui/icons/MoveToInboxSharp'; - declare export { - default as MoveToInboxTwoTone, - } from '@material-ui/icons/MoveToInboxTwoTone'; - declare export { - default as MovieCreation, - } from '@material-ui/icons/MovieCreation'; - declare export { - default as MovieCreationOutlined, - } from '@material-ui/icons/MovieCreationOutlined'; - declare export { - default as MovieCreationRounded, - } from '@material-ui/icons/MovieCreationRounded'; - declare export { - default as MovieCreationSharp, - } from '@material-ui/icons/MovieCreationSharp'; - declare export { - default as MovieCreationTwoTone, - } from '@material-ui/icons/MovieCreationTwoTone'; - declare export { - default as MovieFilter, - } from '@material-ui/icons/MovieFilter'; - declare export { - default as MovieFilterOutlined, - } from '@material-ui/icons/MovieFilterOutlined'; - declare export { - default as MovieFilterRounded, - } from '@material-ui/icons/MovieFilterRounded'; - declare export { - default as MovieFilterSharp, - } from '@material-ui/icons/MovieFilterSharp'; - declare export { - default as MovieFilterTwoTone, - } from '@material-ui/icons/MovieFilterTwoTone'; - declare export { default as Movie } from '@material-ui/icons/Movie'; - declare export { - default as MovieOutlined, - } from '@material-ui/icons/MovieOutlined'; - declare export { - default as MovieRounded, - } from '@material-ui/icons/MovieRounded'; - declare export { default as MovieSharp } from '@material-ui/icons/MovieSharp'; - declare export { - default as MovieTwoTone, - } from '@material-ui/icons/MovieTwoTone'; - declare export { - default as MultilineChart, - } from '@material-ui/icons/MultilineChart'; - declare export { - default as MultilineChartOutlined, - } from '@material-ui/icons/MultilineChartOutlined'; - declare export { - default as MultilineChartRounded, - } from '@material-ui/icons/MultilineChartRounded'; - declare export { - default as MultilineChartSharp, - } from '@material-ui/icons/MultilineChartSharp'; - declare export { - default as MultilineChartTwoTone, - } from '@material-ui/icons/MultilineChartTwoTone'; - declare export { default as MusicNote } from '@material-ui/icons/MusicNote'; - declare export { - default as MusicNoteOutlined, - } from '@material-ui/icons/MusicNoteOutlined'; - declare export { - default as MusicNoteRounded, - } from '@material-ui/icons/MusicNoteRounded'; - declare export { - default as MusicNoteSharp, - } from '@material-ui/icons/MusicNoteSharp'; - declare export { - default as MusicNoteTwoTone, - } from '@material-ui/icons/MusicNoteTwoTone'; - declare export { default as MusicOff } from '@material-ui/icons/MusicOff'; - declare export { - default as MusicOffOutlined, - } from '@material-ui/icons/MusicOffOutlined'; - declare export { - default as MusicOffRounded, - } from '@material-ui/icons/MusicOffRounded'; - declare export { - default as MusicOffSharp, - } from '@material-ui/icons/MusicOffSharp'; - declare export { - default as MusicOffTwoTone, - } from '@material-ui/icons/MusicOffTwoTone'; - declare export { default as MusicVideo } from '@material-ui/icons/MusicVideo'; - declare export { - default as MusicVideoOutlined, - } from '@material-ui/icons/MusicVideoOutlined'; - declare export { - default as MusicVideoRounded, - } from '@material-ui/icons/MusicVideoRounded'; - declare export { - default as MusicVideoSharp, - } from '@material-ui/icons/MusicVideoSharp'; - declare export { - default as MusicVideoTwoTone, - } from '@material-ui/icons/MusicVideoTwoTone'; - declare export { default as MyLocation } from '@material-ui/icons/MyLocation'; - declare export { - default as MyLocationOutlined, - } from '@material-ui/icons/MyLocationOutlined'; - declare export { - default as MyLocationRounded, - } from '@material-ui/icons/MyLocationRounded'; - declare export { - default as MyLocationSharp, - } from '@material-ui/icons/MyLocationSharp'; - declare export { - default as MyLocationTwoTone, - } from '@material-ui/icons/MyLocationTwoTone'; - declare export { default as Nature } from '@material-ui/icons/Nature'; - declare export { - default as NatureOutlined, - } from '@material-ui/icons/NatureOutlined'; - declare export { - default as NaturePeople, - } from '@material-ui/icons/NaturePeople'; - declare export { - default as NaturePeopleOutlined, - } from '@material-ui/icons/NaturePeopleOutlined'; - declare export { - default as NaturePeopleRounded, - } from '@material-ui/icons/NaturePeopleRounded'; - declare export { - default as NaturePeopleSharp, - } from '@material-ui/icons/NaturePeopleSharp'; - declare export { - default as NaturePeopleTwoTone, - } from '@material-ui/icons/NaturePeopleTwoTone'; - declare export { - default as NatureRounded, - } from '@material-ui/icons/NatureRounded'; - declare export { - default as NatureSharp, - } from '@material-ui/icons/NatureSharp'; - declare export { - default as NatureTwoTone, - } from '@material-ui/icons/NatureTwoTone'; - declare export { - default as NavigateBefore, - } from '@material-ui/icons/NavigateBefore'; - declare export { - default as NavigateBeforeOutlined, - } from '@material-ui/icons/NavigateBeforeOutlined'; - declare export { - default as NavigateBeforeRounded, - } from '@material-ui/icons/NavigateBeforeRounded'; - declare export { - default as NavigateBeforeSharp, - } from '@material-ui/icons/NavigateBeforeSharp'; - declare export { - default as NavigateBeforeTwoTone, - } from '@material-ui/icons/NavigateBeforeTwoTone'; - declare export { - default as NavigateNext, - } from '@material-ui/icons/NavigateNext'; - declare export { - default as NavigateNextOutlined, - } from '@material-ui/icons/NavigateNextOutlined'; - declare export { - default as NavigateNextRounded, - } from '@material-ui/icons/NavigateNextRounded'; - declare export { - default as NavigateNextSharp, - } from '@material-ui/icons/NavigateNextSharp'; - declare export { - default as NavigateNextTwoTone, - } from '@material-ui/icons/NavigateNextTwoTone'; - declare export { default as Navigation } from '@material-ui/icons/Navigation'; - declare export { - default as NavigationOutlined, - } from '@material-ui/icons/NavigationOutlined'; - declare export { - default as NavigationRounded, - } from '@material-ui/icons/NavigationRounded'; - declare export { - default as NavigationSharp, - } from '@material-ui/icons/NavigationSharp'; - declare export { - default as NavigationTwoTone, - } from '@material-ui/icons/NavigationTwoTone'; - declare export { default as NearMe } from '@material-ui/icons/NearMe'; - declare export { - default as NearMeOutlined, - } from '@material-ui/icons/NearMeOutlined'; - declare export { - default as NearMeRounded, - } from '@material-ui/icons/NearMeRounded'; - declare export { - default as NearMeSharp, - } from '@material-ui/icons/NearMeSharp'; - declare export { - default as NearMeTwoTone, - } from '@material-ui/icons/NearMeTwoTone'; - declare export { - default as NetworkCell, - } from '@material-ui/icons/NetworkCell'; - declare export { - default as NetworkCellOutlined, - } from '@material-ui/icons/NetworkCellOutlined'; - declare export { - default as NetworkCellRounded, - } from '@material-ui/icons/NetworkCellRounded'; - declare export { - default as NetworkCellSharp, - } from '@material-ui/icons/NetworkCellSharp'; - declare export { - default as NetworkCellTwoTone, - } from '@material-ui/icons/NetworkCellTwoTone'; - declare export { - default as NetworkCheck, - } from '@material-ui/icons/NetworkCheck'; - declare export { - default as NetworkCheckOutlined, - } from '@material-ui/icons/NetworkCheckOutlined'; - declare export { - default as NetworkCheckRounded, - } from '@material-ui/icons/NetworkCheckRounded'; - declare export { - default as NetworkCheckSharp, - } from '@material-ui/icons/NetworkCheckSharp'; - declare export { - default as NetworkCheckTwoTone, - } from '@material-ui/icons/NetworkCheckTwoTone'; - declare export { - default as NetworkLocked, - } from '@material-ui/icons/NetworkLocked'; - declare export { - default as NetworkLockedOutlined, - } from '@material-ui/icons/NetworkLockedOutlined'; - declare export { - default as NetworkLockedRounded, - } from '@material-ui/icons/NetworkLockedRounded'; - declare export { - default as NetworkLockedSharp, - } from '@material-ui/icons/NetworkLockedSharp'; - declare export { - default as NetworkLockedTwoTone, - } from '@material-ui/icons/NetworkLockedTwoTone'; - declare export { - default as NetworkWifi, - } from '@material-ui/icons/NetworkWifi'; - declare export { - default as NetworkWifiOutlined, - } from '@material-ui/icons/NetworkWifiOutlined'; - declare export { - default as NetworkWifiRounded, - } from '@material-ui/icons/NetworkWifiRounded'; - declare export { - default as NetworkWifiSharp, - } from '@material-ui/icons/NetworkWifiSharp'; - declare export { - default as NetworkWifiTwoTone, - } from '@material-ui/icons/NetworkWifiTwoTone'; - declare export { - default as NewReleases, - } from '@material-ui/icons/NewReleases'; - declare export { - default as NewReleasesOutlined, - } from '@material-ui/icons/NewReleasesOutlined'; - declare export { - default as NewReleasesRounded, - } from '@material-ui/icons/NewReleasesRounded'; - declare export { - default as NewReleasesSharp, - } from '@material-ui/icons/NewReleasesSharp'; - declare export { - default as NewReleasesTwoTone, - } from '@material-ui/icons/NewReleasesTwoTone'; - declare export { default as NextWeek } from '@material-ui/icons/NextWeek'; - declare export { - default as NextWeekOutlined, - } from '@material-ui/icons/NextWeekOutlined'; - declare export { - default as NextWeekRounded, - } from '@material-ui/icons/NextWeekRounded'; - declare export { - default as NextWeekSharp, - } from '@material-ui/icons/NextWeekSharp'; - declare export { - default as NextWeekTwoTone, - } from '@material-ui/icons/NextWeekTwoTone'; - declare export { default as Nfc } from '@material-ui/icons/Nfc'; - declare export { - default as NfcOutlined, - } from '@material-ui/icons/NfcOutlined'; - declare export { default as NfcRounded } from '@material-ui/icons/NfcRounded'; - declare export { default as NfcSharp } from '@material-ui/icons/NfcSharp'; - declare export { default as NfcTwoTone } from '@material-ui/icons/NfcTwoTone'; - declare export { - default as NoEncryption, - } from '@material-ui/icons/NoEncryption'; - declare export { - default as NoEncryptionOutlined, - } from '@material-ui/icons/NoEncryptionOutlined'; - declare export { - default as NoEncryptionRounded, - } from '@material-ui/icons/NoEncryptionRounded'; - declare export { - default as NoEncryptionSharp, - } from '@material-ui/icons/NoEncryptionSharp'; - declare export { - default as NoEncryptionTwoTone, - } from '@material-ui/icons/NoEncryptionTwoTone'; - declare export { - default as NoMeetingRoom, - } from '@material-ui/icons/NoMeetingRoom'; - declare export { - default as NoMeetingRoomOutlined, - } from '@material-ui/icons/NoMeetingRoomOutlined'; - declare export { - default as NoMeetingRoomRounded, - } from '@material-ui/icons/NoMeetingRoomRounded'; - declare export { - default as NoMeetingRoomSharp, - } from '@material-ui/icons/NoMeetingRoomSharp'; - declare export { - default as NoMeetingRoomTwoTone, - } from '@material-ui/icons/NoMeetingRoomTwoTone'; - declare export { default as NoSim } from '@material-ui/icons/NoSim'; - declare export { - default as NoSimOutlined, - } from '@material-ui/icons/NoSimOutlined'; - declare export { - default as NoSimRounded, - } from '@material-ui/icons/NoSimRounded'; - declare export { default as NoSimSharp } from '@material-ui/icons/NoSimSharp'; - declare export { - default as NoSimTwoTone, - } from '@material-ui/icons/NoSimTwoTone'; - declare export { default as NoteAdd } from '@material-ui/icons/NoteAdd'; - declare export { - default as NoteAddOutlined, - } from '@material-ui/icons/NoteAddOutlined'; - declare export { - default as NoteAddRounded, - } from '@material-ui/icons/NoteAddRounded'; - declare export { - default as NoteAddSharp, - } from '@material-ui/icons/NoteAddSharp'; - declare export { - default as NoteAddTwoTone, - } from '@material-ui/icons/NoteAddTwoTone'; - declare export { default as Note } from '@material-ui/icons/Note'; - declare export { - default as NoteOutlined, - } from '@material-ui/icons/NoteOutlined'; - declare export { - default as NoteRounded, - } from '@material-ui/icons/NoteRounded'; - declare export { default as NoteSharp } from '@material-ui/icons/NoteSharp'; - declare export { default as Notes } from '@material-ui/icons/Notes'; - declare export { - default as NotesOutlined, - } from '@material-ui/icons/NotesOutlined'; - declare export { - default as NotesRounded, - } from '@material-ui/icons/NotesRounded'; - declare export { default as NotesSharp } from '@material-ui/icons/NotesSharp'; - declare export { - default as NotesTwoTone, - } from '@material-ui/icons/NotesTwoTone'; - declare export { - default as NoteTwoTone, - } from '@material-ui/icons/NoteTwoTone'; - declare export { - default as NotificationImportant, - } from '@material-ui/icons/NotificationImportant'; - declare export { - default as NotificationImportantOutlined, - } from '@material-ui/icons/NotificationImportantOutlined'; - declare export { - default as NotificationImportantRounded, - } from '@material-ui/icons/NotificationImportantRounded'; - declare export { - default as NotificationImportantSharp, - } from '@material-ui/icons/NotificationImportantSharp'; - declare export { - default as NotificationImportantTwoTone, - } from '@material-ui/icons/NotificationImportantTwoTone'; - declare export { - default as NotificationsActive, - } from '@material-ui/icons/NotificationsActive'; - declare export { - default as NotificationsActiveOutlined, - } from '@material-ui/icons/NotificationsActiveOutlined'; - declare export { - default as NotificationsActiveRounded, - } from '@material-ui/icons/NotificationsActiveRounded'; - declare export { - default as NotificationsActiveSharp, - } from '@material-ui/icons/NotificationsActiveSharp'; - declare export { - default as NotificationsActiveTwoTone, - } from '@material-ui/icons/NotificationsActiveTwoTone'; - declare export { - default as Notifications, - } from '@material-ui/icons/Notifications'; - declare export { - default as NotificationsNone, - } from '@material-ui/icons/NotificationsNone'; - declare export { - default as NotificationsNoneOutlined, - } from '@material-ui/icons/NotificationsNoneOutlined'; - declare export { - default as NotificationsNoneRounded, - } from '@material-ui/icons/NotificationsNoneRounded'; - declare export { - default as NotificationsNoneSharp, - } from '@material-ui/icons/NotificationsNoneSharp'; - declare export { - default as NotificationsNoneTwoTone, - } from '@material-ui/icons/NotificationsNoneTwoTone'; - declare export { - default as NotificationsOff, - } from '@material-ui/icons/NotificationsOff'; - declare export { - default as NotificationsOffOutlined, - } from '@material-ui/icons/NotificationsOffOutlined'; - declare export { - default as NotificationsOffRounded, - } from '@material-ui/icons/NotificationsOffRounded'; - declare export { - default as NotificationsOffSharp, - } from '@material-ui/icons/NotificationsOffSharp'; - declare export { - default as NotificationsOffTwoTone, - } from '@material-ui/icons/NotificationsOffTwoTone'; - declare export { - default as NotificationsOutlined, - } from '@material-ui/icons/NotificationsOutlined'; - declare export { - default as NotificationsPaused, - } from '@material-ui/icons/NotificationsPaused'; - declare export { - default as NotificationsPausedOutlined, - } from '@material-ui/icons/NotificationsPausedOutlined'; - declare export { - default as NotificationsPausedRounded, - } from '@material-ui/icons/NotificationsPausedRounded'; - declare export { - default as NotificationsPausedSharp, - } from '@material-ui/icons/NotificationsPausedSharp'; - declare export { - default as NotificationsPausedTwoTone, - } from '@material-ui/icons/NotificationsPausedTwoTone'; - declare export { - default as NotificationsRounded, - } from '@material-ui/icons/NotificationsRounded'; - declare export { - default as NotificationsSharp, - } from '@material-ui/icons/NotificationsSharp'; - declare export { - default as NotificationsTwoTone, - } from '@material-ui/icons/NotificationsTwoTone'; - declare export { - default as NotInterested, - } from '@material-ui/icons/NotInterested'; - declare export { - default as NotInterestedOutlined, - } from '@material-ui/icons/NotInterestedOutlined'; - declare export { - default as NotInterestedRounded, - } from '@material-ui/icons/NotInterestedRounded'; - declare export { - default as NotInterestedSharp, - } from '@material-ui/icons/NotInterestedSharp'; - declare export { - default as NotInterestedTwoTone, - } from '@material-ui/icons/NotInterestedTwoTone'; - declare export { - default as NotListedLocation, - } from '@material-ui/icons/NotListedLocation'; - declare export { - default as NotListedLocationOutlined, - } from '@material-ui/icons/NotListedLocationOutlined'; - declare export { - default as NotListedLocationRounded, - } from '@material-ui/icons/NotListedLocationRounded'; - declare export { - default as NotListedLocationSharp, - } from '@material-ui/icons/NotListedLocationSharp'; - declare export { - default as NotListedLocationTwoTone, - } from '@material-ui/icons/NotListedLocationTwoTone'; - declare export { - default as OfflineBolt, - } from '@material-ui/icons/OfflineBolt'; - declare export { - default as OfflineBoltOutlined, - } from '@material-ui/icons/OfflineBoltOutlined'; - declare export { - default as OfflineBoltRounded, - } from '@material-ui/icons/OfflineBoltRounded'; - declare export { - default as OfflineBoltSharp, - } from '@material-ui/icons/OfflineBoltSharp'; - declare export { - default as OfflineBoltTwoTone, - } from '@material-ui/icons/OfflineBoltTwoTone'; - declare export { default as OfflinePin } from '@material-ui/icons/OfflinePin'; - declare export { - default as OfflinePinOutlined, - } from '@material-ui/icons/OfflinePinOutlined'; - declare export { - default as OfflinePinRounded, - } from '@material-ui/icons/OfflinePinRounded'; - declare export { - default as OfflinePinSharp, - } from '@material-ui/icons/OfflinePinSharp'; - declare export { - default as OfflinePinTwoTone, - } from '@material-ui/icons/OfflinePinTwoTone'; - declare export { - default as OndemandVideo, - } from '@material-ui/icons/OndemandVideo'; - declare export { - default as OndemandVideoOutlined, - } from '@material-ui/icons/OndemandVideoOutlined'; - declare export { - default as OndemandVideoRounded, - } from '@material-ui/icons/OndemandVideoRounded'; - declare export { - default as OndemandVideoSharp, - } from '@material-ui/icons/OndemandVideoSharp'; - declare export { - default as OndemandVideoTwoTone, - } from '@material-ui/icons/OndemandVideoTwoTone'; - declare export { default as Opacity } from '@material-ui/icons/Opacity'; - declare export { - default as OpacityOutlined, - } from '@material-ui/icons/OpacityOutlined'; - declare export { - default as OpacityRounded, - } from '@material-ui/icons/OpacityRounded'; - declare export { - default as OpacitySharp, - } from '@material-ui/icons/OpacitySharp'; - declare export { - default as OpacityTwoTone, - } from '@material-ui/icons/OpacityTwoTone'; - declare export { - default as OpenInBrowser, - } from '@material-ui/icons/OpenInBrowser'; - declare export { - default as OpenInBrowserOutlined, - } from '@material-ui/icons/OpenInBrowserOutlined'; - declare export { - default as OpenInBrowserRounded, - } from '@material-ui/icons/OpenInBrowserRounded'; - declare export { - default as OpenInBrowserSharp, - } from '@material-ui/icons/OpenInBrowserSharp'; - declare export { - default as OpenInBrowserTwoTone, - } from '@material-ui/icons/OpenInBrowserTwoTone'; - declare export { default as OpenInNew } from '@material-ui/icons/OpenInNew'; - declare export { - default as OpenInNewOutlined, - } from '@material-ui/icons/OpenInNewOutlined'; - declare export { - default as OpenInNewRounded, - } from '@material-ui/icons/OpenInNewRounded'; - declare export { - default as OpenInNewSharp, - } from '@material-ui/icons/OpenInNewSharp'; - declare export { - default as OpenInNewTwoTone, - } from '@material-ui/icons/OpenInNewTwoTone'; - declare export { default as OpenWith } from '@material-ui/icons/OpenWith'; - declare export { - default as OpenWithOutlined, - } from '@material-ui/icons/OpenWithOutlined'; - declare export { - default as OpenWithRounded, - } from '@material-ui/icons/OpenWithRounded'; - declare export { - default as OpenWithSharp, - } from '@material-ui/icons/OpenWithSharp'; - declare export { - default as OpenWithTwoTone, - } from '@material-ui/icons/OpenWithTwoTone'; - declare export { - default as OutlinedFlag, - } from '@material-ui/icons/OutlinedFlag'; - declare export { - default as OutlinedFlagOutlined, - } from '@material-ui/icons/OutlinedFlagOutlined'; - declare export { - default as OutlinedFlagRounded, - } from '@material-ui/icons/OutlinedFlagRounded'; - declare export { - default as OutlinedFlagSharp, - } from '@material-ui/icons/OutlinedFlagSharp'; - declare export { - default as OutlinedFlagTwoTone, - } from '@material-ui/icons/OutlinedFlagTwoTone'; - declare export { default as Pages } from '@material-ui/icons/Pages'; - declare export { - default as PagesOutlined, - } from '@material-ui/icons/PagesOutlined'; - declare export { - default as PagesRounded, - } from '@material-ui/icons/PagesRounded'; - declare export { default as PagesSharp } from '@material-ui/icons/PagesSharp'; - declare export { - default as PagesTwoTone, - } from '@material-ui/icons/PagesTwoTone'; - declare export { default as Pageview } from '@material-ui/icons/Pageview'; - declare export { - default as PageviewOutlined, - } from '@material-ui/icons/PageviewOutlined'; - declare export { - default as PageviewRounded, - } from '@material-ui/icons/PageviewRounded'; - declare export { - default as PageviewSharp, - } from '@material-ui/icons/PageviewSharp'; - declare export { - default as PageviewTwoTone, - } from '@material-ui/icons/PageviewTwoTone'; - declare export { default as Palette } from '@material-ui/icons/Palette'; - declare export { - default as PaletteOutlined, - } from '@material-ui/icons/PaletteOutlined'; - declare export { - default as PaletteRounded, - } from '@material-ui/icons/PaletteRounded'; - declare export { - default as PaletteSharp, - } from '@material-ui/icons/PaletteSharp'; - declare export { - default as PaletteTwoTone, - } from '@material-ui/icons/PaletteTwoTone'; - declare export { - default as PanoramaFishEye, - } from '@material-ui/icons/PanoramaFishEye'; - declare export { - default as PanoramaFishEyeOutlined, - } from '@material-ui/icons/PanoramaFishEyeOutlined'; - declare export { - default as PanoramaFishEyeRounded, - } from '@material-ui/icons/PanoramaFishEyeRounded'; - declare export { - default as PanoramaFishEyeSharp, - } from '@material-ui/icons/PanoramaFishEyeSharp'; - declare export { - default as PanoramaFishEyeTwoTone, - } from '@material-ui/icons/PanoramaFishEyeTwoTone'; - declare export { - default as PanoramaHorizontal, - } from '@material-ui/icons/PanoramaHorizontal'; - declare export { - default as PanoramaHorizontalOutlined, - } from '@material-ui/icons/PanoramaHorizontalOutlined'; - declare export { - default as PanoramaHorizontalRounded, - } from '@material-ui/icons/PanoramaHorizontalRounded'; - declare export { - default as PanoramaHorizontalSharp, - } from '@material-ui/icons/PanoramaHorizontalSharp'; - declare export { - default as PanoramaHorizontalTwoTone, - } from '@material-ui/icons/PanoramaHorizontalTwoTone'; - declare export { default as Panorama } from '@material-ui/icons/Panorama'; - declare export { - default as PanoramaOutlined, - } from '@material-ui/icons/PanoramaOutlined'; - declare export { - default as PanoramaRounded, - } from '@material-ui/icons/PanoramaRounded'; - declare export { - default as PanoramaSharp, - } from '@material-ui/icons/PanoramaSharp'; - declare export { - default as PanoramaTwoTone, - } from '@material-ui/icons/PanoramaTwoTone'; - declare export { - default as PanoramaVertical, - } from '@material-ui/icons/PanoramaVertical'; - declare export { - default as PanoramaVerticalOutlined, - } from '@material-ui/icons/PanoramaVerticalOutlined'; - declare export { - default as PanoramaVerticalRounded, - } from '@material-ui/icons/PanoramaVerticalRounded'; - declare export { - default as PanoramaVerticalSharp, - } from '@material-ui/icons/PanoramaVerticalSharp'; - declare export { - default as PanoramaVerticalTwoTone, - } from '@material-ui/icons/PanoramaVerticalTwoTone'; - declare export { - default as PanoramaWideAngle, - } from '@material-ui/icons/PanoramaWideAngle'; - declare export { - default as PanoramaWideAngleOutlined, - } from '@material-ui/icons/PanoramaWideAngleOutlined'; - declare export { - default as PanoramaWideAngleRounded, - } from '@material-ui/icons/PanoramaWideAngleRounded'; - declare export { - default as PanoramaWideAngleSharp, - } from '@material-ui/icons/PanoramaWideAngleSharp'; - declare export { - default as PanoramaWideAngleTwoTone, - } from '@material-ui/icons/PanoramaWideAngleTwoTone'; - declare export { default as PanTool } from '@material-ui/icons/PanTool'; - declare export { - default as PanToolOutlined, - } from '@material-ui/icons/PanToolOutlined'; - declare export { - default as PanToolRounded, - } from '@material-ui/icons/PanToolRounded'; - declare export { - default as PanToolSharp, - } from '@material-ui/icons/PanToolSharp'; - declare export { - default as PanToolTwoTone, - } from '@material-ui/icons/PanToolTwoTone'; - declare export { default as PartyMode } from '@material-ui/icons/PartyMode'; - declare export { - default as PartyModeOutlined, - } from '@material-ui/icons/PartyModeOutlined'; - declare export { - default as PartyModeRounded, - } from '@material-ui/icons/PartyModeRounded'; - declare export { - default as PartyModeSharp, - } from '@material-ui/icons/PartyModeSharp'; - declare export { - default as PartyModeTwoTone, - } from '@material-ui/icons/PartyModeTwoTone'; - declare export { - default as PauseCircleFilled, - } from '@material-ui/icons/PauseCircleFilled'; - declare export { - default as PauseCircleFilledOutlined, - } from '@material-ui/icons/PauseCircleFilledOutlined'; - declare export { - default as PauseCircleFilledRounded, - } from '@material-ui/icons/PauseCircleFilledRounded'; - declare export { - default as PauseCircleFilledSharp, - } from '@material-ui/icons/PauseCircleFilledSharp'; - declare export { - default as PauseCircleFilledTwoTone, - } from '@material-ui/icons/PauseCircleFilledTwoTone'; - declare export { - default as PauseCircleOutline, - } from '@material-ui/icons/PauseCircleOutline'; - declare export { - default as PauseCircleOutlineOutlined, - } from '@material-ui/icons/PauseCircleOutlineOutlined'; - declare export { - default as PauseCircleOutlineRounded, - } from '@material-ui/icons/PauseCircleOutlineRounded'; - declare export { - default as PauseCircleOutlineSharp, - } from '@material-ui/icons/PauseCircleOutlineSharp'; - declare export { - default as PauseCircleOutlineTwoTone, - } from '@material-ui/icons/PauseCircleOutlineTwoTone'; - declare export { default as Pause } from '@material-ui/icons/Pause'; - declare export { - default as PauseOutlined, - } from '@material-ui/icons/PauseOutlined'; - declare export { - default as PausePresentation, - } from '@material-ui/icons/PausePresentation'; - declare export { - default as PausePresentationOutlined, - } from '@material-ui/icons/PausePresentationOutlined'; - declare export { - default as PausePresentationRounded, - } from '@material-ui/icons/PausePresentationRounded'; - declare export { - default as PausePresentationSharp, - } from '@material-ui/icons/PausePresentationSharp'; - declare export { - default as PausePresentationTwoTone, - } from '@material-ui/icons/PausePresentationTwoTone'; - declare export { - default as PauseRounded, - } from '@material-ui/icons/PauseRounded'; - declare export { default as PauseSharp } from '@material-ui/icons/PauseSharp'; - declare export { - default as PauseTwoTone, - } from '@material-ui/icons/PauseTwoTone'; - declare export { default as Payment } from '@material-ui/icons/Payment'; - declare export { - default as PaymentOutlined, - } from '@material-ui/icons/PaymentOutlined'; - declare export { - default as PaymentRounded, - } from '@material-ui/icons/PaymentRounded'; - declare export { - default as PaymentSharp, - } from '@material-ui/icons/PaymentSharp'; - declare export { - default as PaymentTwoTone, - } from '@material-ui/icons/PaymentTwoTone'; - declare export { default as People } from '@material-ui/icons/People'; - declare export { - default as PeopleOutlined, - } from '@material-ui/icons/PeopleOutlined'; - declare export { - default as PeopleOutline, - } from '@material-ui/icons/PeopleOutline'; - declare export { - default as PeopleOutlineOutlined, - } from '@material-ui/icons/PeopleOutlineOutlined'; - declare export { - default as PeopleOutlineRounded, - } from '@material-ui/icons/PeopleOutlineRounded'; - declare export { - default as PeopleOutlineSharp, - } from '@material-ui/icons/PeopleOutlineSharp'; - declare export { - default as PeopleOutlineTwoTone, - } from '@material-ui/icons/PeopleOutlineTwoTone'; - declare export { - default as PeopleRounded, - } from '@material-ui/icons/PeopleRounded'; - declare export { - default as PeopleSharp, - } from '@material-ui/icons/PeopleSharp'; - declare export { - default as PeopleTwoTone, - } from '@material-ui/icons/PeopleTwoTone'; - declare export { - default as PermCameraMic, - } from '@material-ui/icons/PermCameraMic'; - declare export { - default as PermCameraMicOutlined, - } from '@material-ui/icons/PermCameraMicOutlined'; - declare export { - default as PermCameraMicRounded, - } from '@material-ui/icons/PermCameraMicRounded'; - declare export { - default as PermCameraMicSharp, - } from '@material-ui/icons/PermCameraMicSharp'; - declare export { - default as PermCameraMicTwoTone, - } from '@material-ui/icons/PermCameraMicTwoTone'; - declare export { - default as PermContactCalendar, - } from '@material-ui/icons/PermContactCalendar'; - declare export { - default as PermContactCalendarOutlined, - } from '@material-ui/icons/PermContactCalendarOutlined'; - declare export { - default as PermContactCalendarRounded, - } from '@material-ui/icons/PermContactCalendarRounded'; - declare export { - default as PermContactCalendarSharp, - } from '@material-ui/icons/PermContactCalendarSharp'; - declare export { - default as PermContactCalendarTwoTone, - } from '@material-ui/icons/PermContactCalendarTwoTone'; - declare export { - default as PermDataSetting, - } from '@material-ui/icons/PermDataSetting'; - declare export { - default as PermDataSettingOutlined, - } from '@material-ui/icons/PermDataSettingOutlined'; - declare export { - default as PermDataSettingRounded, - } from '@material-ui/icons/PermDataSettingRounded'; - declare export { - default as PermDataSettingSharp, - } from '@material-ui/icons/PermDataSettingSharp'; - declare export { - default as PermDataSettingTwoTone, - } from '@material-ui/icons/PermDataSettingTwoTone'; - declare export { - default as PermDeviceInformation, - } from '@material-ui/icons/PermDeviceInformation'; - declare export { - default as PermDeviceInformationOutlined, - } from '@material-ui/icons/PermDeviceInformationOutlined'; - declare export { - default as PermDeviceInformationRounded, - } from '@material-ui/icons/PermDeviceInformationRounded'; - declare export { - default as PermDeviceInformationSharp, - } from '@material-ui/icons/PermDeviceInformationSharp'; - declare export { - default as PermDeviceInformationTwoTone, - } from '@material-ui/icons/PermDeviceInformationTwoTone'; - declare export { - default as PermIdentity, - } from '@material-ui/icons/PermIdentity'; - declare export { - default as PermIdentityOutlined, - } from '@material-ui/icons/PermIdentityOutlined'; - declare export { - default as PermIdentityRounded, - } from '@material-ui/icons/PermIdentityRounded'; - declare export { - default as PermIdentitySharp, - } from '@material-ui/icons/PermIdentitySharp'; - declare export { - default as PermIdentityTwoTone, - } from '@material-ui/icons/PermIdentityTwoTone'; - declare export { default as PermMedia } from '@material-ui/icons/PermMedia'; - declare export { - default as PermMediaOutlined, - } from '@material-ui/icons/PermMediaOutlined'; - declare export { - default as PermMediaRounded, - } from '@material-ui/icons/PermMediaRounded'; - declare export { - default as PermMediaSharp, - } from '@material-ui/icons/PermMediaSharp'; - declare export { - default as PermMediaTwoTone, - } from '@material-ui/icons/PermMediaTwoTone'; - declare export { - default as PermPhoneMsg, - } from '@material-ui/icons/PermPhoneMsg'; - declare export { - default as PermPhoneMsgOutlined, - } from '@material-ui/icons/PermPhoneMsgOutlined'; - declare export { - default as PermPhoneMsgRounded, - } from '@material-ui/icons/PermPhoneMsgRounded'; - declare export { - default as PermPhoneMsgSharp, - } from '@material-ui/icons/PermPhoneMsgSharp'; - declare export { - default as PermPhoneMsgTwoTone, - } from '@material-ui/icons/PermPhoneMsgTwoTone'; - declare export { - default as PermScanWifi, - } from '@material-ui/icons/PermScanWifi'; - declare export { - default as PermScanWifiOutlined, - } from '@material-ui/icons/PermScanWifiOutlined'; - declare export { - default as PermScanWifiRounded, - } from '@material-ui/icons/PermScanWifiRounded'; - declare export { - default as PermScanWifiSharp, - } from '@material-ui/icons/PermScanWifiSharp'; - declare export { - default as PermScanWifiTwoTone, - } from '@material-ui/icons/PermScanWifiTwoTone'; - declare export { - default as PersonAddDisabled, - } from '@material-ui/icons/PersonAddDisabled'; - declare export { - default as PersonAddDisabledOutlined, - } from '@material-ui/icons/PersonAddDisabledOutlined'; - declare export { - default as PersonAddDisabledRounded, - } from '@material-ui/icons/PersonAddDisabledRounded'; - declare export { - default as PersonAddDisabledSharp, - } from '@material-ui/icons/PersonAddDisabledSharp'; - declare export { - default as PersonAddDisabledTwoTone, - } from '@material-ui/icons/PersonAddDisabledTwoTone'; - declare export { default as PersonAdd } from '@material-ui/icons/PersonAdd'; - declare export { - default as PersonAddOutlined, - } from '@material-ui/icons/PersonAddOutlined'; - declare export { - default as PersonAddRounded, - } from '@material-ui/icons/PersonAddRounded'; - declare export { - default as PersonAddSharp, - } from '@material-ui/icons/PersonAddSharp'; - declare export { - default as PersonAddTwoTone, - } from '@material-ui/icons/PersonAddTwoTone'; - declare export { - default as PersonalVideo, - } from '@material-ui/icons/PersonalVideo'; - declare export { - default as PersonalVideoOutlined, - } from '@material-ui/icons/PersonalVideoOutlined'; - declare export { - default as PersonalVideoRounded, - } from '@material-ui/icons/PersonalVideoRounded'; - declare export { - default as PersonalVideoSharp, - } from '@material-ui/icons/PersonalVideoSharp'; - declare export { - default as PersonalVideoTwoTone, - } from '@material-ui/icons/PersonalVideoTwoTone'; - declare export { default as Person } from '@material-ui/icons/Person'; - declare export { - default as PersonOutlined, - } from '@material-ui/icons/PersonOutlined'; - declare export { - default as PersonOutline, - } from '@material-ui/icons/PersonOutline'; - declare export { - default as PersonOutlineOutlined, - } from '@material-ui/icons/PersonOutlineOutlined'; - declare export { - default as PersonOutlineRounded, - } from '@material-ui/icons/PersonOutlineRounded'; - declare export { - default as PersonOutlineSharp, - } from '@material-ui/icons/PersonOutlineSharp'; - declare export { - default as PersonOutlineTwoTone, - } from '@material-ui/icons/PersonOutlineTwoTone'; - declare export { - default as PersonPinCircle, - } from '@material-ui/icons/PersonPinCircle'; - declare export { - default as PersonPinCircleOutlined, - } from '@material-ui/icons/PersonPinCircleOutlined'; - declare export { - default as PersonPinCircleRounded, - } from '@material-ui/icons/PersonPinCircleRounded'; - declare export { - default as PersonPinCircleSharp, - } from '@material-ui/icons/PersonPinCircleSharp'; - declare export { - default as PersonPinCircleTwoTone, - } from '@material-ui/icons/PersonPinCircleTwoTone'; - declare export { default as PersonPin } from '@material-ui/icons/PersonPin'; - declare export { - default as PersonPinOutlined, - } from '@material-ui/icons/PersonPinOutlined'; - declare export { - default as PersonPinRounded, - } from '@material-ui/icons/PersonPinRounded'; - declare export { - default as PersonPinSharp, - } from '@material-ui/icons/PersonPinSharp'; - declare export { - default as PersonPinTwoTone, - } from '@material-ui/icons/PersonPinTwoTone'; - declare export { - default as PersonRounded, - } from '@material-ui/icons/PersonRounded'; - declare export { - default as PersonSharp, - } from '@material-ui/icons/PersonSharp'; - declare export { - default as PersonTwoTone, - } from '@material-ui/icons/PersonTwoTone'; - declare export { default as Pets } from '@material-ui/icons/Pets'; - declare export { - default as PetsOutlined, - } from '@material-ui/icons/PetsOutlined'; - declare export { - default as PetsRounded, - } from '@material-ui/icons/PetsRounded'; - declare export { default as PetsSharp } from '@material-ui/icons/PetsSharp'; - declare export { - default as PetsTwoTone, - } from '@material-ui/icons/PetsTwoTone'; - declare export { - default as PhoneAndroid, - } from '@material-ui/icons/PhoneAndroid'; - declare export { - default as PhoneAndroidOutlined, - } from '@material-ui/icons/PhoneAndroidOutlined'; - declare export { - default as PhoneAndroidRounded, - } from '@material-ui/icons/PhoneAndroidRounded'; - declare export { - default as PhoneAndroidSharp, - } from '@material-ui/icons/PhoneAndroidSharp'; - declare export { - default as PhoneAndroidTwoTone, - } from '@material-ui/icons/PhoneAndroidTwoTone'; - declare export { - default as PhoneBluetoothSpeaker, - } from '@material-ui/icons/PhoneBluetoothSpeaker'; - declare export { - default as PhoneBluetoothSpeakerOutlined, - } from '@material-ui/icons/PhoneBluetoothSpeakerOutlined'; - declare export { - default as PhoneBluetoothSpeakerRounded, - } from '@material-ui/icons/PhoneBluetoothSpeakerRounded'; - declare export { - default as PhoneBluetoothSpeakerSharp, - } from '@material-ui/icons/PhoneBluetoothSpeakerSharp'; - declare export { - default as PhoneBluetoothSpeakerTwoTone, - } from '@material-ui/icons/PhoneBluetoothSpeakerTwoTone'; - declare export { - default as PhoneCallback, - } from '@material-ui/icons/PhoneCallback'; - declare export { - default as PhoneCallbackOutlined, - } from '@material-ui/icons/PhoneCallbackOutlined'; - declare export { - default as PhoneCallbackRounded, - } from '@material-ui/icons/PhoneCallbackRounded'; - declare export { - default as PhoneCallbackSharp, - } from '@material-ui/icons/PhoneCallbackSharp'; - declare export { - default as PhoneCallbackTwoTone, - } from '@material-ui/icons/PhoneCallbackTwoTone'; - declare export { - default as PhoneForwarded, - } from '@material-ui/icons/PhoneForwarded'; - declare export { - default as PhoneForwardedOutlined, - } from '@material-ui/icons/PhoneForwardedOutlined'; - declare export { - default as PhoneForwardedRounded, - } from '@material-ui/icons/PhoneForwardedRounded'; - declare export { - default as PhoneForwardedSharp, - } from '@material-ui/icons/PhoneForwardedSharp'; - declare export { - default as PhoneForwardedTwoTone, - } from '@material-ui/icons/PhoneForwardedTwoTone'; - declare export { - default as PhoneInTalk, - } from '@material-ui/icons/PhoneInTalk'; - declare export { - default as PhoneInTalkOutlined, - } from '@material-ui/icons/PhoneInTalkOutlined'; - declare export { - default as PhoneInTalkRounded, - } from '@material-ui/icons/PhoneInTalkRounded'; - declare export { - default as PhoneInTalkSharp, - } from '@material-ui/icons/PhoneInTalkSharp'; - declare export { - default as PhoneInTalkTwoTone, - } from '@material-ui/icons/PhoneInTalkTwoTone'; - declare export { - default as PhoneIphone, - } from '@material-ui/icons/PhoneIphone'; - declare export { - default as PhoneIphoneOutlined, - } from '@material-ui/icons/PhoneIphoneOutlined'; - declare export { - default as PhoneIphoneRounded, - } from '@material-ui/icons/PhoneIphoneRounded'; - declare export { - default as PhoneIphoneSharp, - } from '@material-ui/icons/PhoneIphoneSharp'; - declare export { - default as PhoneIphoneTwoTone, - } from '@material-ui/icons/PhoneIphoneTwoTone'; - declare export { default as Phone } from '@material-ui/icons/Phone'; - declare export { - default as PhonelinkErase, - } from '@material-ui/icons/PhonelinkErase'; - declare export { - default as PhonelinkEraseOutlined, - } from '@material-ui/icons/PhonelinkEraseOutlined'; - declare export { - default as PhonelinkEraseRounded, - } from '@material-ui/icons/PhonelinkEraseRounded'; - declare export { - default as PhonelinkEraseSharp, - } from '@material-ui/icons/PhonelinkEraseSharp'; - declare export { - default as PhonelinkEraseTwoTone, - } from '@material-ui/icons/PhonelinkEraseTwoTone'; - declare export { default as Phonelink } from '@material-ui/icons/Phonelink'; - declare export { - default as PhonelinkLock, - } from '@material-ui/icons/PhonelinkLock'; - declare export { - default as PhonelinkLockOutlined, - } from '@material-ui/icons/PhonelinkLockOutlined'; - declare export { - default as PhonelinkLockRounded, - } from '@material-ui/icons/PhonelinkLockRounded'; - declare export { - default as PhonelinkLockSharp, - } from '@material-ui/icons/PhonelinkLockSharp'; - declare export { - default as PhonelinkLockTwoTone, - } from '@material-ui/icons/PhonelinkLockTwoTone'; - declare export { - default as PhonelinkOff, - } from '@material-ui/icons/PhonelinkOff'; - declare export { - default as PhonelinkOffOutlined, - } from '@material-ui/icons/PhonelinkOffOutlined'; - declare export { - default as PhonelinkOffRounded, - } from '@material-ui/icons/PhonelinkOffRounded'; - declare export { - default as PhonelinkOffSharp, - } from '@material-ui/icons/PhonelinkOffSharp'; - declare export { - default as PhonelinkOffTwoTone, - } from '@material-ui/icons/PhonelinkOffTwoTone'; - declare export { - default as PhonelinkOutlined, - } from '@material-ui/icons/PhonelinkOutlined'; - declare export { - default as PhonelinkRing, - } from '@material-ui/icons/PhonelinkRing'; - declare export { - default as PhonelinkRingOutlined, - } from '@material-ui/icons/PhonelinkRingOutlined'; - declare export { - default as PhonelinkRingRounded, - } from '@material-ui/icons/PhonelinkRingRounded'; - declare export { - default as PhonelinkRingSharp, - } from '@material-ui/icons/PhonelinkRingSharp'; - declare export { - default as PhonelinkRingTwoTone, - } from '@material-ui/icons/PhonelinkRingTwoTone'; - declare export { - default as PhonelinkRounded, - } from '@material-ui/icons/PhonelinkRounded'; - declare export { - default as PhonelinkSetup, - } from '@material-ui/icons/PhonelinkSetup'; - declare export { - default as PhonelinkSetupOutlined, - } from '@material-ui/icons/PhonelinkSetupOutlined'; - declare export { - default as PhonelinkSetupRounded, - } from '@material-ui/icons/PhonelinkSetupRounded'; - declare export { - default as PhonelinkSetupSharp, - } from '@material-ui/icons/PhonelinkSetupSharp'; - declare export { - default as PhonelinkSetupTwoTone, - } from '@material-ui/icons/PhonelinkSetupTwoTone'; - declare export { - default as PhonelinkSharp, - } from '@material-ui/icons/PhonelinkSharp'; - declare export { - default as PhonelinkTwoTone, - } from '@material-ui/icons/PhonelinkTwoTone'; - declare export { - default as PhoneLocked, - } from '@material-ui/icons/PhoneLocked'; - declare export { - default as PhoneLockedOutlined, - } from '@material-ui/icons/PhoneLockedOutlined'; - declare export { - default as PhoneLockedRounded, - } from '@material-ui/icons/PhoneLockedRounded'; - declare export { - default as PhoneLockedSharp, - } from '@material-ui/icons/PhoneLockedSharp'; - declare export { - default as PhoneLockedTwoTone, - } from '@material-ui/icons/PhoneLockedTwoTone'; - declare export { - default as PhoneMissed, - } from '@material-ui/icons/PhoneMissed'; - declare export { - default as PhoneMissedOutlined, - } from '@material-ui/icons/PhoneMissedOutlined'; - declare export { - default as PhoneMissedRounded, - } from '@material-ui/icons/PhoneMissedRounded'; - declare export { - default as PhoneMissedSharp, - } from '@material-ui/icons/PhoneMissedSharp'; - declare export { - default as PhoneMissedTwoTone, - } from '@material-ui/icons/PhoneMissedTwoTone'; - declare export { - default as PhoneOutlined, - } from '@material-ui/icons/PhoneOutlined'; - declare export { - default as PhonePaused, - } from '@material-ui/icons/PhonePaused'; - declare export { - default as PhonePausedOutlined, - } from '@material-ui/icons/PhonePausedOutlined'; - declare export { - default as PhonePausedRounded, - } from '@material-ui/icons/PhonePausedRounded'; - declare export { - default as PhonePausedSharp, - } from '@material-ui/icons/PhonePausedSharp'; - declare export { - default as PhonePausedTwoTone, - } from '@material-ui/icons/PhonePausedTwoTone'; - declare export { - default as PhoneRounded, - } from '@material-ui/icons/PhoneRounded'; - declare export { default as PhoneSharp } from '@material-ui/icons/PhoneSharp'; - declare export { - default as PhoneTwoTone, - } from '@material-ui/icons/PhoneTwoTone'; - declare export { default as PhotoAlbum } from '@material-ui/icons/PhotoAlbum'; - declare export { - default as PhotoAlbumOutlined, - } from '@material-ui/icons/PhotoAlbumOutlined'; - declare export { - default as PhotoAlbumRounded, - } from '@material-ui/icons/PhotoAlbumRounded'; - declare export { - default as PhotoAlbumSharp, - } from '@material-ui/icons/PhotoAlbumSharp'; - declare export { - default as PhotoAlbumTwoTone, - } from '@material-ui/icons/PhotoAlbumTwoTone'; - declare export { - default as PhotoCamera, - } from '@material-ui/icons/PhotoCamera'; - declare export { - default as PhotoCameraOutlined, - } from '@material-ui/icons/PhotoCameraOutlined'; - declare export { - default as PhotoCameraRounded, - } from '@material-ui/icons/PhotoCameraRounded'; - declare export { - default as PhotoCameraSharp, - } from '@material-ui/icons/PhotoCameraSharp'; - declare export { - default as PhotoCameraTwoTone, - } from '@material-ui/icons/PhotoCameraTwoTone'; - declare export { - default as PhotoFilter, - } from '@material-ui/icons/PhotoFilter'; - declare export { - default as PhotoFilterOutlined, - } from '@material-ui/icons/PhotoFilterOutlined'; - declare export { - default as PhotoFilterRounded, - } from '@material-ui/icons/PhotoFilterRounded'; - declare export { - default as PhotoFilterSharp, - } from '@material-ui/icons/PhotoFilterSharp'; - declare export { - default as PhotoFilterTwoTone, - } from '@material-ui/icons/PhotoFilterTwoTone'; - declare export { default as Photo } from '@material-ui/icons/Photo'; - declare export { - default as PhotoLibrary, - } from '@material-ui/icons/PhotoLibrary'; - declare export { - default as PhotoLibraryOutlined, - } from '@material-ui/icons/PhotoLibraryOutlined'; - declare export { - default as PhotoLibraryRounded, - } from '@material-ui/icons/PhotoLibraryRounded'; - declare export { - default as PhotoLibrarySharp, - } from '@material-ui/icons/PhotoLibrarySharp'; - declare export { - default as PhotoLibraryTwoTone, - } from '@material-ui/icons/PhotoLibraryTwoTone'; - declare export { - default as PhotoOutlined, - } from '@material-ui/icons/PhotoOutlined'; - declare export { - default as PhotoRounded, - } from '@material-ui/icons/PhotoRounded'; - declare export { default as PhotoSharp } from '@material-ui/icons/PhotoSharp'; - declare export { - default as PhotoSizeSelectActual, - } from '@material-ui/icons/PhotoSizeSelectActual'; - declare export { - default as PhotoSizeSelectActualOutlined, - } from '@material-ui/icons/PhotoSizeSelectActualOutlined'; - declare export { - default as PhotoSizeSelectActualRounded, - } from '@material-ui/icons/PhotoSizeSelectActualRounded'; - declare export { - default as PhotoSizeSelectActualSharp, - } from '@material-ui/icons/PhotoSizeSelectActualSharp'; - declare export { - default as PhotoSizeSelectActualTwoTone, - } from '@material-ui/icons/PhotoSizeSelectActualTwoTone'; - declare export { - default as PhotoSizeSelectLarge, - } from '@material-ui/icons/PhotoSizeSelectLarge'; - declare export { - default as PhotoSizeSelectLargeOutlined, - } from '@material-ui/icons/PhotoSizeSelectLargeOutlined'; - declare export { - default as PhotoSizeSelectLargeRounded, - } from '@material-ui/icons/PhotoSizeSelectLargeRounded'; - declare export { - default as PhotoSizeSelectLargeSharp, - } from '@material-ui/icons/PhotoSizeSelectLargeSharp'; - declare export { - default as PhotoSizeSelectLargeTwoTone, - } from '@material-ui/icons/PhotoSizeSelectLargeTwoTone'; - declare export { - default as PhotoSizeSelectSmall, - } from '@material-ui/icons/PhotoSizeSelectSmall'; - declare export { - default as PhotoSizeSelectSmallOutlined, - } from '@material-ui/icons/PhotoSizeSelectSmallOutlined'; - declare export { - default as PhotoSizeSelectSmallRounded, - } from '@material-ui/icons/PhotoSizeSelectSmallRounded'; - declare export { - default as PhotoSizeSelectSmallSharp, - } from '@material-ui/icons/PhotoSizeSelectSmallSharp'; - declare export { - default as PhotoSizeSelectSmallTwoTone, - } from '@material-ui/icons/PhotoSizeSelectSmallTwoTone'; - declare export { - default as PhotoTwoTone, - } from '@material-ui/icons/PhotoTwoTone'; - declare export { - default as PictureAsPdf, - } from '@material-ui/icons/PictureAsPdf'; - declare export { - default as PictureAsPdfOutlined, - } from '@material-ui/icons/PictureAsPdfOutlined'; - declare export { - default as PictureAsPdfRounded, - } from '@material-ui/icons/PictureAsPdfRounded'; - declare export { - default as PictureAsPdfSharp, - } from '@material-ui/icons/PictureAsPdfSharp'; - declare export { - default as PictureAsPdfTwoTone, - } from '@material-ui/icons/PictureAsPdfTwoTone'; - declare export { - default as PictureInPictureAlt, - } from '@material-ui/icons/PictureInPictureAlt'; - declare export { - default as PictureInPictureAltOutlined, - } from '@material-ui/icons/PictureInPictureAltOutlined'; - declare export { - default as PictureInPictureAltRounded, - } from '@material-ui/icons/PictureInPictureAltRounded'; - declare export { - default as PictureInPictureAltSharp, - } from '@material-ui/icons/PictureInPictureAltSharp'; - declare export { - default as PictureInPictureAltTwoTone, - } from '@material-ui/icons/PictureInPictureAltTwoTone'; - declare export { - default as PictureInPicture, - } from '@material-ui/icons/PictureInPicture'; - declare export { - default as PictureInPictureOutlined, - } from '@material-ui/icons/PictureInPictureOutlined'; - declare export { - default as PictureInPictureRounded, - } from '@material-ui/icons/PictureInPictureRounded'; - declare export { - default as PictureInPictureSharp, - } from '@material-ui/icons/PictureInPictureSharp'; - declare export { - default as PictureInPictureTwoTone, - } from '@material-ui/icons/PictureInPictureTwoTone'; - declare export { default as PieChart } from '@material-ui/icons/PieChart'; - declare export { - default as PieChartOutlined, - } from '@material-ui/icons/PieChartOutlined'; - declare export { - default as PieChartRounded, - } from '@material-ui/icons/PieChartRounded'; - declare export { - default as PieChartSharp, - } from '@material-ui/icons/PieChartSharp'; - declare export { - default as PieChartTwoTone, - } from '@material-ui/icons/PieChartTwoTone'; - declare export { default as PinDrop } from '@material-ui/icons/PinDrop'; - declare export { - default as PinDropOutlined, - } from '@material-ui/icons/PinDropOutlined'; - declare export { - default as PinDropRounded, - } from '@material-ui/icons/PinDropRounded'; - declare export { - default as PinDropSharp, - } from '@material-ui/icons/PinDropSharp'; - declare export { - default as PinDropTwoTone, - } from '@material-ui/icons/PinDropTwoTone'; - declare export { default as Place } from '@material-ui/icons/Place'; - declare export { - default as PlaceOutlined, - } from '@material-ui/icons/PlaceOutlined'; - declare export { - default as PlaceRounded, - } from '@material-ui/icons/PlaceRounded'; - declare export { default as PlaceSharp } from '@material-ui/icons/PlaceSharp'; - declare export { - default as PlaceTwoTone, - } from '@material-ui/icons/PlaceTwoTone'; - declare export { default as PlayArrow } from '@material-ui/icons/PlayArrow'; - declare export { - default as PlayArrowOutlined, - } from '@material-ui/icons/PlayArrowOutlined'; - declare export { - default as PlayArrowRounded, - } from '@material-ui/icons/PlayArrowRounded'; - declare export { - default as PlayArrowSharp, - } from '@material-ui/icons/PlayArrowSharp'; - declare export { - default as PlayArrowTwoTone, - } from '@material-ui/icons/PlayArrowTwoTone'; - declare export { - default as PlayCircleFilled, - } from '@material-ui/icons/PlayCircleFilled'; - declare export { - default as PlayCircleFilledOutlined, - } from '@material-ui/icons/PlayCircleFilledOutlined'; - declare export { - default as PlayCircleFilledRounded, - } from '@material-ui/icons/PlayCircleFilledRounded'; - declare export { - default as PlayCircleFilledSharp, - } from '@material-ui/icons/PlayCircleFilledSharp'; - declare export { - default as PlayCircleFilledTwoTone, - } from '@material-ui/icons/PlayCircleFilledTwoTone'; - declare export { - default as PlayCircleFilledWhite, - } from '@material-ui/icons/PlayCircleFilledWhite'; - declare export { - default as PlayCircleFilledWhiteOutlined, - } from '@material-ui/icons/PlayCircleFilledWhiteOutlined'; - declare export { - default as PlayCircleFilledWhiteRounded, - } from '@material-ui/icons/PlayCircleFilledWhiteRounded'; - declare export { - default as PlayCircleFilledWhiteSharp, - } from '@material-ui/icons/PlayCircleFilledWhiteSharp'; - declare export { - default as PlayCircleFilledWhiteTwoTone, - } from '@material-ui/icons/PlayCircleFilledWhiteTwoTone'; - declare export { - default as PlayCircleOutline, - } from '@material-ui/icons/PlayCircleOutline'; - declare export { - default as PlayCircleOutlineOutlined, - } from '@material-ui/icons/PlayCircleOutlineOutlined'; - declare export { - default as PlayCircleOutlineRounded, - } from '@material-ui/icons/PlayCircleOutlineRounded'; - declare export { - default as PlayCircleOutlineSharp, - } from '@material-ui/icons/PlayCircleOutlineSharp'; - declare export { - default as PlayCircleOutlineTwoTone, - } from '@material-ui/icons/PlayCircleOutlineTwoTone'; - declare export { - default as PlayForWork, - } from '@material-ui/icons/PlayForWork'; - declare export { - default as PlayForWorkOutlined, - } from '@material-ui/icons/PlayForWorkOutlined'; - declare export { - default as PlayForWorkRounded, - } from '@material-ui/icons/PlayForWorkRounded'; - declare export { - default as PlayForWorkSharp, - } from '@material-ui/icons/PlayForWorkSharp'; - declare export { - default as PlayForWorkTwoTone, - } from '@material-ui/icons/PlayForWorkTwoTone'; - declare export { - default as PlaylistAddCheck, - } from '@material-ui/icons/PlaylistAddCheck'; - declare export { - default as PlaylistAddCheckOutlined, - } from '@material-ui/icons/PlaylistAddCheckOutlined'; - declare export { - default as PlaylistAddCheckRounded, - } from '@material-ui/icons/PlaylistAddCheckRounded'; - declare export { - default as PlaylistAddCheckSharp, - } from '@material-ui/icons/PlaylistAddCheckSharp'; - declare export { - default as PlaylistAddCheckTwoTone, - } from '@material-ui/icons/PlaylistAddCheckTwoTone'; - declare export { - default as PlaylistAdd, - } from '@material-ui/icons/PlaylistAdd'; - declare export { - default as PlaylistAddOutlined, - } from '@material-ui/icons/PlaylistAddOutlined'; - declare export { - default as PlaylistAddRounded, - } from '@material-ui/icons/PlaylistAddRounded'; - declare export { - default as PlaylistAddSharp, - } from '@material-ui/icons/PlaylistAddSharp'; - declare export { - default as PlaylistAddTwoTone, - } from '@material-ui/icons/PlaylistAddTwoTone'; - declare export { - default as PlaylistPlay, - } from '@material-ui/icons/PlaylistPlay'; - declare export { - default as PlaylistPlayOutlined, - } from '@material-ui/icons/PlaylistPlayOutlined'; - declare export { - default as PlaylistPlayRounded, - } from '@material-ui/icons/PlaylistPlayRounded'; - declare export { - default as PlaylistPlaySharp, - } from '@material-ui/icons/PlaylistPlaySharp'; - declare export { - default as PlaylistPlayTwoTone, - } from '@material-ui/icons/PlaylistPlayTwoTone'; - declare export { default as PlusOne } from '@material-ui/icons/PlusOne'; - declare export { - default as PlusOneOutlined, - } from '@material-ui/icons/PlusOneOutlined'; - declare export { - default as PlusOneRounded, - } from '@material-ui/icons/PlusOneRounded'; - declare export { - default as PlusOneSharp, - } from '@material-ui/icons/PlusOneSharp'; - declare export { - default as PlusOneTwoTone, - } from '@material-ui/icons/PlusOneTwoTone'; - declare export { default as Poll } from '@material-ui/icons/Poll'; - declare export { - default as PollOutlined, - } from '@material-ui/icons/PollOutlined'; - declare export { - default as PollRounded, - } from '@material-ui/icons/PollRounded'; - declare export { default as PollSharp } from '@material-ui/icons/PollSharp'; - declare export { - default as PollTwoTone, - } from '@material-ui/icons/PollTwoTone'; - declare export { default as Polymer } from '@material-ui/icons/Polymer'; - declare export { - default as PolymerOutlined, - } from '@material-ui/icons/PolymerOutlined'; - declare export { - default as PolymerRounded, - } from '@material-ui/icons/PolymerRounded'; - declare export { - default as PolymerSharp, - } from '@material-ui/icons/PolymerSharp'; - declare export { - default as PolymerTwoTone, - } from '@material-ui/icons/PolymerTwoTone'; - declare export { default as Pool } from '@material-ui/icons/Pool'; - declare export { - default as PoolOutlined, - } from '@material-ui/icons/PoolOutlined'; - declare export { - default as PoolRounded, - } from '@material-ui/icons/PoolRounded'; - declare export { default as PoolSharp } from '@material-ui/icons/PoolSharp'; - declare export { - default as PoolTwoTone, - } from '@material-ui/icons/PoolTwoTone'; - declare export { - default as PortableWifiOff, - } from '@material-ui/icons/PortableWifiOff'; - declare export { - default as PortableWifiOffOutlined, - } from '@material-ui/icons/PortableWifiOffOutlined'; - declare export { - default as PortableWifiOffRounded, - } from '@material-ui/icons/PortableWifiOffRounded'; - declare export { - default as PortableWifiOffSharp, - } from '@material-ui/icons/PortableWifiOffSharp'; - declare export { - default as PortableWifiOffTwoTone, - } from '@material-ui/icons/PortableWifiOffTwoTone'; - declare export { default as Portrait } from '@material-ui/icons/Portrait'; - declare export { - default as PortraitOutlined, - } from '@material-ui/icons/PortraitOutlined'; - declare export { - default as PortraitRounded, - } from '@material-ui/icons/PortraitRounded'; - declare export { - default as PortraitSharp, - } from '@material-ui/icons/PortraitSharp'; - declare export { - default as PortraitTwoTone, - } from '@material-ui/icons/PortraitTwoTone'; - declare export { default as PowerInput } from '@material-ui/icons/PowerInput'; - declare export { - default as PowerInputOutlined, - } from '@material-ui/icons/PowerInputOutlined'; - declare export { - default as PowerInputRounded, - } from '@material-ui/icons/PowerInputRounded'; - declare export { - default as PowerInputSharp, - } from '@material-ui/icons/PowerInputSharp'; - declare export { - default as PowerInputTwoTone, - } from '@material-ui/icons/PowerInputTwoTone'; - declare export { default as Power } from '@material-ui/icons/Power'; - declare export { default as PowerOff } from '@material-ui/icons/PowerOff'; - declare export { - default as PowerOffOutlined, - } from '@material-ui/icons/PowerOffOutlined'; - declare export { - default as PowerOffRounded, - } from '@material-ui/icons/PowerOffRounded'; - declare export { - default as PowerOffSharp, - } from '@material-ui/icons/PowerOffSharp'; - declare export { - default as PowerOffTwoTone, - } from '@material-ui/icons/PowerOffTwoTone'; - declare export { - default as PowerOutlined, - } from '@material-ui/icons/PowerOutlined'; - declare export { - default as PowerRounded, - } from '@material-ui/icons/PowerRounded'; - declare export { - default as PowerSettingsNew, - } from '@material-ui/icons/PowerSettingsNew'; - declare export { - default as PowerSettingsNewOutlined, - } from '@material-ui/icons/PowerSettingsNewOutlined'; - declare export { - default as PowerSettingsNewRounded, - } from '@material-ui/icons/PowerSettingsNewRounded'; - declare export { - default as PowerSettingsNewSharp, - } from '@material-ui/icons/PowerSettingsNewSharp'; - declare export { - default as PowerSettingsNewTwoTone, - } from '@material-ui/icons/PowerSettingsNewTwoTone'; - declare export { default as PowerSharp } from '@material-ui/icons/PowerSharp'; - declare export { - default as PowerTwoTone, - } from '@material-ui/icons/PowerTwoTone'; - declare export { - default as PregnantWoman, - } from '@material-ui/icons/PregnantWoman'; - declare export { - default as PregnantWomanOutlined, - } from '@material-ui/icons/PregnantWomanOutlined'; - declare export { - default as PregnantWomanRounded, - } from '@material-ui/icons/PregnantWomanRounded'; - declare export { - default as PregnantWomanSharp, - } from '@material-ui/icons/PregnantWomanSharp'; - declare export { - default as PregnantWomanTwoTone, - } from '@material-ui/icons/PregnantWomanTwoTone'; - declare export { - default as PresentToAll, - } from '@material-ui/icons/PresentToAll'; - declare export { - default as PresentToAllOutlined, - } from '@material-ui/icons/PresentToAllOutlined'; - declare export { - default as PresentToAllRounded, - } from '@material-ui/icons/PresentToAllRounded'; - declare export { - default as PresentToAllSharp, - } from '@material-ui/icons/PresentToAllSharp'; - declare export { - default as PresentToAllTwoTone, - } from '@material-ui/icons/PresentToAllTwoTone'; - declare export { - default as PrintDisabled, - } from '@material-ui/icons/PrintDisabled'; - declare export { - default as PrintDisabledOutlined, - } from '@material-ui/icons/PrintDisabledOutlined'; - declare export { - default as PrintDisabledRounded, - } from '@material-ui/icons/PrintDisabledRounded'; - declare export { - default as PrintDisabledSharp, - } from '@material-ui/icons/PrintDisabledSharp'; - declare export { - default as PrintDisabledTwoTone, - } from '@material-ui/icons/PrintDisabledTwoTone'; - declare export { default as Print } from '@material-ui/icons/Print'; - declare export { - default as PrintOutlined, - } from '@material-ui/icons/PrintOutlined'; - declare export { - default as PrintRounded, - } from '@material-ui/icons/PrintRounded'; - declare export { default as PrintSharp } from '@material-ui/icons/PrintSharp'; - declare export { - default as PrintTwoTone, - } from '@material-ui/icons/PrintTwoTone'; - declare export { - default as PriorityHigh, - } from '@material-ui/icons/PriorityHigh'; - declare export { - default as PriorityHighOutlined, - } from '@material-ui/icons/PriorityHighOutlined'; - declare export { - default as PriorityHighRounded, - } from '@material-ui/icons/PriorityHighRounded'; - declare export { - default as PriorityHighSharp, - } from '@material-ui/icons/PriorityHighSharp'; - declare export { - default as PriorityHighTwoTone, - } from '@material-ui/icons/PriorityHighTwoTone'; - declare export { default as Public } from '@material-ui/icons/Public'; - declare export { - default as PublicOutlined, - } from '@material-ui/icons/PublicOutlined'; - declare export { - default as PublicRounded, - } from '@material-ui/icons/PublicRounded'; - declare export { - default as PublicSharp, - } from '@material-ui/icons/PublicSharp'; - declare export { - default as PublicTwoTone, - } from '@material-ui/icons/PublicTwoTone'; - declare export { default as Publish } from '@material-ui/icons/Publish'; - declare export { - default as PublishOutlined, - } from '@material-ui/icons/PublishOutlined'; - declare export { - default as PublishRounded, - } from '@material-ui/icons/PublishRounded'; - declare export { - default as PublishSharp, - } from '@material-ui/icons/PublishSharp'; - declare export { - default as PublishTwoTone, - } from '@material-ui/icons/PublishTwoTone'; - declare export { - default as QueryBuilder, - } from '@material-ui/icons/QueryBuilder'; - declare export { - default as QueryBuilderOutlined, - } from '@material-ui/icons/QueryBuilderOutlined'; - declare export { - default as QueryBuilderRounded, - } from '@material-ui/icons/QueryBuilderRounded'; - declare export { - default as QueryBuilderSharp, - } from '@material-ui/icons/QueryBuilderSharp'; - declare export { - default as QueryBuilderTwoTone, - } from '@material-ui/icons/QueryBuilderTwoTone'; - declare export { - default as QuestionAnswer, - } from '@material-ui/icons/QuestionAnswer'; - declare export { - default as QuestionAnswerOutlined, - } from '@material-ui/icons/QuestionAnswerOutlined'; - declare export { - default as QuestionAnswerRounded, - } from '@material-ui/icons/QuestionAnswerRounded'; - declare export { - default as QuestionAnswerSharp, - } from '@material-ui/icons/QuestionAnswerSharp'; - declare export { - default as QuestionAnswerTwoTone, - } from '@material-ui/icons/QuestionAnswerTwoTone'; - declare export { default as Queue } from '@material-ui/icons/Queue'; - declare export { default as QueueMusic } from '@material-ui/icons/QueueMusic'; - declare export { - default as QueueMusicOutlined, - } from '@material-ui/icons/QueueMusicOutlined'; - declare export { - default as QueueMusicRounded, - } from '@material-ui/icons/QueueMusicRounded'; - declare export { - default as QueueMusicSharp, - } from '@material-ui/icons/QueueMusicSharp'; - declare export { - default as QueueMusicTwoTone, - } from '@material-ui/icons/QueueMusicTwoTone'; - declare export { - default as QueueOutlined, - } from '@material-ui/icons/QueueOutlined'; - declare export { - default as QueuePlayNext, - } from '@material-ui/icons/QueuePlayNext'; - declare export { - default as QueuePlayNextOutlined, - } from '@material-ui/icons/QueuePlayNextOutlined'; - declare export { - default as QueuePlayNextRounded, - } from '@material-ui/icons/QueuePlayNextRounded'; - declare export { - default as QueuePlayNextSharp, - } from '@material-ui/icons/QueuePlayNextSharp'; - declare export { - default as QueuePlayNextTwoTone, - } from '@material-ui/icons/QueuePlayNextTwoTone'; - declare export { - default as QueueRounded, - } from '@material-ui/icons/QueueRounded'; - declare export { default as QueueSharp } from '@material-ui/icons/QueueSharp'; - declare export { - default as QueueTwoTone, - } from '@material-ui/icons/QueueTwoTone'; - declare export { - default as RadioButtonChecked, - } from '@material-ui/icons/RadioButtonChecked'; - declare export { - default as RadioButtonCheckedOutlined, - } from '@material-ui/icons/RadioButtonCheckedOutlined'; - declare export { - default as RadioButtonCheckedRounded, - } from '@material-ui/icons/RadioButtonCheckedRounded'; - declare export { - default as RadioButtonCheckedSharp, - } from '@material-ui/icons/RadioButtonCheckedSharp'; - declare export { - default as RadioButtonCheckedTwoTone, - } from '@material-ui/icons/RadioButtonCheckedTwoTone'; - declare export { - default as RadioButtonUnchecked, - } from '@material-ui/icons/RadioButtonUnchecked'; - declare export { - default as RadioButtonUncheckedOutlined, - } from '@material-ui/icons/RadioButtonUncheckedOutlined'; - declare export { - default as RadioButtonUncheckedRounded, - } from '@material-ui/icons/RadioButtonUncheckedRounded'; - declare export { - default as RadioButtonUncheckedSharp, - } from '@material-ui/icons/RadioButtonUncheckedSharp'; - declare export { - default as RadioButtonUncheckedTwoTone, - } from '@material-ui/icons/RadioButtonUncheckedTwoTone'; - declare export { default as Radio } from '@material-ui/icons/Radio'; - declare export { - default as RadioOutlined, - } from '@material-ui/icons/RadioOutlined'; - declare export { - default as RadioRounded, - } from '@material-ui/icons/RadioRounded'; - declare export { default as RadioSharp } from '@material-ui/icons/RadioSharp'; - declare export { - default as RadioTwoTone, - } from '@material-ui/icons/RadioTwoTone'; - declare export { default as RateReview } from '@material-ui/icons/RateReview'; - declare export { - default as RateReviewOutlined, - } from '@material-ui/icons/RateReviewOutlined'; - declare export { - default as RateReviewRounded, - } from '@material-ui/icons/RateReviewRounded'; - declare export { - default as RateReviewSharp, - } from '@material-ui/icons/RateReviewSharp'; - declare export { - default as RateReviewTwoTone, - } from '@material-ui/icons/RateReviewTwoTone'; - declare export { default as Receipt } from '@material-ui/icons/Receipt'; - declare export { - default as ReceiptOutlined, - } from '@material-ui/icons/ReceiptOutlined'; - declare export { - default as ReceiptRounded, - } from '@material-ui/icons/ReceiptRounded'; - declare export { - default as ReceiptSharp, - } from '@material-ui/icons/ReceiptSharp'; - declare export { - default as ReceiptTwoTone, - } from '@material-ui/icons/ReceiptTwoTone'; - declare export { - default as RecentActors, - } from '@material-ui/icons/RecentActors'; - declare export { - default as RecentActorsOutlined, - } from '@material-ui/icons/RecentActorsOutlined'; - declare export { - default as RecentActorsRounded, - } from '@material-ui/icons/RecentActorsRounded'; - declare export { - default as RecentActorsSharp, - } from '@material-ui/icons/RecentActorsSharp'; - declare export { - default as RecentActorsTwoTone, - } from '@material-ui/icons/RecentActorsTwoTone'; - declare export { - default as RecordVoiceOver, - } from '@material-ui/icons/RecordVoiceOver'; - declare export { - default as RecordVoiceOverOutlined, - } from '@material-ui/icons/RecordVoiceOverOutlined'; - declare export { - default as RecordVoiceOverRounded, - } from '@material-ui/icons/RecordVoiceOverRounded'; - declare export { - default as RecordVoiceOverSharp, - } from '@material-ui/icons/RecordVoiceOverSharp'; - declare export { - default as RecordVoiceOverTwoTone, - } from '@material-ui/icons/RecordVoiceOverTwoTone'; - declare export { default as Redeem } from '@material-ui/icons/Redeem'; - declare export { - default as RedeemOutlined, - } from '@material-ui/icons/RedeemOutlined'; - declare export { - default as RedeemRounded, - } from '@material-ui/icons/RedeemRounded'; - declare export { - default as RedeemSharp, - } from '@material-ui/icons/RedeemSharp'; - declare export { - default as RedeemTwoTone, - } from '@material-ui/icons/RedeemTwoTone'; - declare export { default as Redo } from '@material-ui/icons/Redo'; - declare export { - default as RedoOutlined, - } from '@material-ui/icons/RedoOutlined'; - declare export { - default as RedoRounded, - } from '@material-ui/icons/RedoRounded'; - declare export { default as RedoSharp } from '@material-ui/icons/RedoSharp'; - declare export { - default as RedoTwoTone, - } from '@material-ui/icons/RedoTwoTone'; - declare export { default as Refresh } from '@material-ui/icons/Refresh'; - declare export { - default as RefreshOutlined, - } from '@material-ui/icons/RefreshOutlined'; - declare export { - default as RefreshRounded, - } from '@material-ui/icons/RefreshRounded'; - declare export { - default as RefreshSharp, - } from '@material-ui/icons/RefreshSharp'; - declare export { - default as RefreshTwoTone, - } from '@material-ui/icons/RefreshTwoTone'; - declare export { - default as RemoveCircle, - } from '@material-ui/icons/RemoveCircle'; - declare export { - default as RemoveCircleOutlined, - } from '@material-ui/icons/RemoveCircleOutlined'; - declare export { - default as RemoveCircleOutline, - } from '@material-ui/icons/RemoveCircleOutline'; - declare export { - default as RemoveCircleOutlineOutlined, - } from '@material-ui/icons/RemoveCircleOutlineOutlined'; - declare export { - default as RemoveCircleOutlineRounded, - } from '@material-ui/icons/RemoveCircleOutlineRounded'; - declare export { - default as RemoveCircleOutlineSharp, - } from '@material-ui/icons/RemoveCircleOutlineSharp'; - declare export { - default as RemoveCircleOutlineTwoTone, - } from '@material-ui/icons/RemoveCircleOutlineTwoTone'; - declare export { - default as RemoveCircleRounded, - } from '@material-ui/icons/RemoveCircleRounded'; - declare export { - default as RemoveCircleSharp, - } from '@material-ui/icons/RemoveCircleSharp'; - declare export { - default as RemoveCircleTwoTone, - } from '@material-ui/icons/RemoveCircleTwoTone'; - declare export { - default as RemoveFromQueue, - } from '@material-ui/icons/RemoveFromQueue'; - declare export { - default as RemoveFromQueueOutlined, - } from '@material-ui/icons/RemoveFromQueueOutlined'; - declare export { - default as RemoveFromQueueRounded, - } from '@material-ui/icons/RemoveFromQueueRounded'; - declare export { - default as RemoveFromQueueSharp, - } from '@material-ui/icons/RemoveFromQueueSharp'; - declare export { - default as RemoveFromQueueTwoTone, - } from '@material-ui/icons/RemoveFromQueueTwoTone'; - declare export { default as Remove } from '@material-ui/icons/Remove'; - declare export { - default as RemoveOutlined, - } from '@material-ui/icons/RemoveOutlined'; - declare export { - default as RemoveRedEye, - } from '@material-ui/icons/RemoveRedEye'; - declare export { - default as RemoveRedEyeOutlined, - } from '@material-ui/icons/RemoveRedEyeOutlined'; - declare export { - default as RemoveRedEyeRounded, - } from '@material-ui/icons/RemoveRedEyeRounded'; - declare export { - default as RemoveRedEyeSharp, - } from '@material-ui/icons/RemoveRedEyeSharp'; - declare export { - default as RemoveRedEyeTwoTone, - } from '@material-ui/icons/RemoveRedEyeTwoTone'; - declare export { - default as RemoveRounded, - } from '@material-ui/icons/RemoveRounded'; - declare export { - default as RemoveSharp, - } from '@material-ui/icons/RemoveSharp'; - declare export { - default as RemoveShoppingCart, - } from '@material-ui/icons/RemoveShoppingCart'; - declare export { - default as RemoveShoppingCartOutlined, - } from '@material-ui/icons/RemoveShoppingCartOutlined'; - declare export { - default as RemoveShoppingCartRounded, - } from '@material-ui/icons/RemoveShoppingCartRounded'; - declare export { - default as RemoveShoppingCartSharp, - } from '@material-ui/icons/RemoveShoppingCartSharp'; - declare export { - default as RemoveShoppingCartTwoTone, - } from '@material-ui/icons/RemoveShoppingCartTwoTone'; - declare export { - default as RemoveTwoTone, - } from '@material-ui/icons/RemoveTwoTone'; - declare export { default as Reorder } from '@material-ui/icons/Reorder'; - declare export { - default as ReorderOutlined, - } from '@material-ui/icons/ReorderOutlined'; - declare export { - default as ReorderRounded, - } from '@material-ui/icons/ReorderRounded'; - declare export { - default as ReorderSharp, - } from '@material-ui/icons/ReorderSharp'; - declare export { - default as ReorderTwoTone, - } from '@material-ui/icons/ReorderTwoTone'; - declare export { default as Repeat } from '@material-ui/icons/Repeat'; - declare export { default as RepeatOne } from '@material-ui/icons/RepeatOne'; - declare export { - default as RepeatOneOutlined, - } from '@material-ui/icons/RepeatOneOutlined'; - declare export { - default as RepeatOneRounded, - } from '@material-ui/icons/RepeatOneRounded'; - declare export { - default as RepeatOneSharp, - } from '@material-ui/icons/RepeatOneSharp'; - declare export { - default as RepeatOneTwoTone, - } from '@material-ui/icons/RepeatOneTwoTone'; - declare export { - default as RepeatOutlined, - } from '@material-ui/icons/RepeatOutlined'; - declare export { - default as RepeatRounded, - } from '@material-ui/icons/RepeatRounded'; - declare export { - default as RepeatSharp, - } from '@material-ui/icons/RepeatSharp'; - declare export { - default as RepeatTwoTone, - } from '@material-ui/icons/RepeatTwoTone'; - declare export { default as Replay10 } from '@material-ui/icons/Replay10'; - declare export { - default as Replay10Outlined, - } from '@material-ui/icons/Replay10Outlined'; - declare export { - default as Replay10Rounded, - } from '@material-ui/icons/Replay10Rounded'; - declare export { - default as Replay10Sharp, - } from '@material-ui/icons/Replay10Sharp'; - declare export { - default as Replay10TwoTone, - } from '@material-ui/icons/Replay10TwoTone'; - declare export { default as Replay30 } from '@material-ui/icons/Replay30'; - declare export { - default as Replay30Outlined, - } from '@material-ui/icons/Replay30Outlined'; - declare export { - default as Replay30Rounded, - } from '@material-ui/icons/Replay30Rounded'; - declare export { - default as Replay30Sharp, - } from '@material-ui/icons/Replay30Sharp'; - declare export { - default as Replay30TwoTone, - } from '@material-ui/icons/Replay30TwoTone'; - declare export { default as Replay5 } from '@material-ui/icons/Replay5'; - declare export { - default as Replay5Outlined, - } from '@material-ui/icons/Replay5Outlined'; - declare export { - default as Replay5Rounded, - } from '@material-ui/icons/Replay5Rounded'; - declare export { - default as Replay5Sharp, - } from '@material-ui/icons/Replay5Sharp'; - declare export { - default as Replay5TwoTone, - } from '@material-ui/icons/Replay5TwoTone'; - declare export { default as Replay } from '@material-ui/icons/Replay'; - declare export { - default as ReplayOutlined, - } from '@material-ui/icons/ReplayOutlined'; - declare export { - default as ReplayRounded, - } from '@material-ui/icons/ReplayRounded'; - declare export { - default as ReplaySharp, - } from '@material-ui/icons/ReplaySharp'; - declare export { - default as ReplayTwoTone, - } from '@material-ui/icons/ReplayTwoTone'; - declare export { default as ReplyAll } from '@material-ui/icons/ReplyAll'; - declare export { - default as ReplyAllOutlined, - } from '@material-ui/icons/ReplyAllOutlined'; - declare export { - default as ReplyAllRounded, - } from '@material-ui/icons/ReplyAllRounded'; - declare export { - default as ReplyAllSharp, - } from '@material-ui/icons/ReplyAllSharp'; - declare export { - default as ReplyAllTwoTone, - } from '@material-ui/icons/ReplyAllTwoTone'; - declare export { default as Reply } from '@material-ui/icons/Reply'; - declare export { - default as ReplyOutlined, - } from '@material-ui/icons/ReplyOutlined'; - declare export { - default as ReplyRounded, - } from '@material-ui/icons/ReplyRounded'; - declare export { default as ReplySharp } from '@material-ui/icons/ReplySharp'; - declare export { - default as ReplyTwoTone, - } from '@material-ui/icons/ReplyTwoTone'; - declare export { default as Report } from '@material-ui/icons/Report'; - declare export { default as ReportOff } from '@material-ui/icons/ReportOff'; - declare export { - default as ReportOffOutlined, - } from '@material-ui/icons/ReportOffOutlined'; - declare export { - default as ReportOffRounded, - } from '@material-ui/icons/ReportOffRounded'; - declare export { - default as ReportOffSharp, - } from '@material-ui/icons/ReportOffSharp'; - declare export { - default as ReportOffTwoTone, - } from '@material-ui/icons/ReportOffTwoTone'; - declare export { - default as ReportOutlined, - } from '@material-ui/icons/ReportOutlined'; - declare export { - default as ReportProblem, - } from '@material-ui/icons/ReportProblem'; - declare export { - default as ReportProblemOutlined, - } from '@material-ui/icons/ReportProblemOutlined'; - declare export { - default as ReportProblemRounded, - } from '@material-ui/icons/ReportProblemRounded'; - declare export { - default as ReportProblemSharp, - } from '@material-ui/icons/ReportProblemSharp'; - declare export { - default as ReportProblemTwoTone, - } from '@material-ui/icons/ReportProblemTwoTone'; - declare export { - default as ReportRounded, - } from '@material-ui/icons/ReportRounded'; - declare export { - default as ReportSharp, - } from '@material-ui/icons/ReportSharp'; - declare export { - default as ReportTwoTone, - } from '@material-ui/icons/ReportTwoTone'; - declare export { default as Restaurant } from '@material-ui/icons/Restaurant'; - declare export { - default as RestaurantMenu, - } from '@material-ui/icons/RestaurantMenu'; - declare export { - default as RestaurantMenuOutlined, - } from '@material-ui/icons/RestaurantMenuOutlined'; - declare export { - default as RestaurantMenuRounded, - } from '@material-ui/icons/RestaurantMenuRounded'; - declare export { - default as RestaurantMenuSharp, - } from '@material-ui/icons/RestaurantMenuSharp'; - declare export { - default as RestaurantMenuTwoTone, - } from '@material-ui/icons/RestaurantMenuTwoTone'; - declare export { - default as RestaurantOutlined, - } from '@material-ui/icons/RestaurantOutlined'; - declare export { - default as RestaurantRounded, - } from '@material-ui/icons/RestaurantRounded'; - declare export { - default as RestaurantSharp, - } from '@material-ui/icons/RestaurantSharp'; - declare export { - default as RestaurantTwoTone, - } from '@material-ui/icons/RestaurantTwoTone'; - declare export { - default as RestoreFromTrash, - } from '@material-ui/icons/RestoreFromTrash'; - declare export { - default as RestoreFromTrashOutlined, - } from '@material-ui/icons/RestoreFromTrashOutlined'; - declare export { - default as RestoreFromTrashRounded, - } from '@material-ui/icons/RestoreFromTrashRounded'; - declare export { - default as RestoreFromTrashSharp, - } from '@material-ui/icons/RestoreFromTrashSharp'; - declare export { - default as RestoreFromTrashTwoTone, - } from '@material-ui/icons/RestoreFromTrashTwoTone'; - declare export { default as Restore } from '@material-ui/icons/Restore'; - declare export { - default as RestoreOutlined, - } from '@material-ui/icons/RestoreOutlined'; - declare export { - default as RestorePage, - } from '@material-ui/icons/RestorePage'; - declare export { - default as RestorePageOutlined, - } from '@material-ui/icons/RestorePageOutlined'; - declare export { - default as RestorePageRounded, - } from '@material-ui/icons/RestorePageRounded'; - declare export { - default as RestorePageSharp, - } from '@material-ui/icons/RestorePageSharp'; - declare export { - default as RestorePageTwoTone, - } from '@material-ui/icons/RestorePageTwoTone'; - declare export { - default as RestoreRounded, - } from '@material-ui/icons/RestoreRounded'; - declare export { - default as RestoreSharp, - } from '@material-ui/icons/RestoreSharp'; - declare export { - default as RestoreTwoTone, - } from '@material-ui/icons/RestoreTwoTone'; - declare export { default as RingVolume } from '@material-ui/icons/RingVolume'; - declare export { - default as RingVolumeOutlined, - } from '@material-ui/icons/RingVolumeOutlined'; - declare export { - default as RingVolumeRounded, - } from '@material-ui/icons/RingVolumeRounded'; - declare export { - default as RingVolumeSharp, - } from '@material-ui/icons/RingVolumeSharp'; - declare export { - default as RingVolumeTwoTone, - } from '@material-ui/icons/RingVolumeTwoTone'; - declare export { default as Room } from '@material-ui/icons/Room'; - declare export { - default as RoomOutlined, - } from '@material-ui/icons/RoomOutlined'; - declare export { - default as RoomRounded, - } from '@material-ui/icons/RoomRounded'; - declare export { - default as RoomService, - } from '@material-ui/icons/RoomService'; - declare export { - default as RoomServiceOutlined, - } from '@material-ui/icons/RoomServiceOutlined'; - declare export { - default as RoomServiceRounded, - } from '@material-ui/icons/RoomServiceRounded'; - declare export { - default as RoomServiceSharp, - } from '@material-ui/icons/RoomServiceSharp'; - declare export { - default as RoomServiceTwoTone, - } from '@material-ui/icons/RoomServiceTwoTone'; - declare export { default as RoomSharp } from '@material-ui/icons/RoomSharp'; - declare export { - default as RoomTwoTone, - } from '@material-ui/icons/RoomTwoTone'; - declare export { - default as Rotate90DegreesCcw, - } from '@material-ui/icons/Rotate90DegreesCcw'; - declare export { - default as Rotate90DegreesCcwOutlined, - } from '@material-ui/icons/Rotate90DegreesCcwOutlined'; - declare export { - default as Rotate90DegreesCcwRounded, - } from '@material-ui/icons/Rotate90DegreesCcwRounded'; - declare export { - default as Rotate90DegreesCcwSharp, - } from '@material-ui/icons/Rotate90DegreesCcwSharp'; - declare export { - default as Rotate90DegreesCcwTwoTone, - } from '@material-ui/icons/Rotate90DegreesCcwTwoTone'; - declare export { default as RotateLeft } from '@material-ui/icons/RotateLeft'; - declare export { - default as RotateLeftOutlined, - } from '@material-ui/icons/RotateLeftOutlined'; - declare export { - default as RotateLeftRounded, - } from '@material-ui/icons/RotateLeftRounded'; - declare export { - default as RotateLeftSharp, - } from '@material-ui/icons/RotateLeftSharp'; - declare export { - default as RotateLeftTwoTone, - } from '@material-ui/icons/RotateLeftTwoTone'; - declare export { - default as RotateRight, - } from '@material-ui/icons/RotateRight'; - declare export { - default as RotateRightOutlined, - } from '@material-ui/icons/RotateRightOutlined'; - declare export { - default as RotateRightRounded, - } from '@material-ui/icons/RotateRightRounded'; - declare export { - default as RotateRightSharp, - } from '@material-ui/icons/RotateRightSharp'; - declare export { - default as RotateRightTwoTone, - } from '@material-ui/icons/RotateRightTwoTone'; - declare export { - default as RoundedCorner, - } from '@material-ui/icons/RoundedCorner'; - declare export { - default as RoundedCornerOutlined, - } from '@material-ui/icons/RoundedCornerOutlined'; - declare export { - default as RoundedCornerRounded, - } from '@material-ui/icons/RoundedCornerRounded'; - declare export { - default as RoundedCornerSharp, - } from '@material-ui/icons/RoundedCornerSharp'; - declare export { - default as RoundedCornerTwoTone, - } from '@material-ui/icons/RoundedCornerTwoTone'; - declare export { default as Router } from '@material-ui/icons/Router'; - declare export { - default as RouterOutlined, - } from '@material-ui/icons/RouterOutlined'; - declare export { - default as RouterRounded, - } from '@material-ui/icons/RouterRounded'; - declare export { - default as RouterSharp, - } from '@material-ui/icons/RouterSharp'; - declare export { - default as RouterTwoTone, - } from '@material-ui/icons/RouterTwoTone'; - declare export { default as Rowing } from '@material-ui/icons/Rowing'; - declare export { - default as RowingOutlined, - } from '@material-ui/icons/RowingOutlined'; - declare export { - default as RowingRounded, - } from '@material-ui/icons/RowingRounded'; - declare export { - default as RowingSharp, - } from '@material-ui/icons/RowingSharp'; - declare export { - default as RowingTwoTone, - } from '@material-ui/icons/RowingTwoTone'; - declare export { default as RssFeed } from '@material-ui/icons/RssFeed'; - declare export { - default as RssFeedOutlined, - } from '@material-ui/icons/RssFeedOutlined'; - declare export { - default as RssFeedRounded, - } from '@material-ui/icons/RssFeedRounded'; - declare export { - default as RssFeedSharp, - } from '@material-ui/icons/RssFeedSharp'; - declare export { - default as RssFeedTwoTone, - } from '@material-ui/icons/RssFeedTwoTone'; - declare export { default as RvHookup } from '@material-ui/icons/RvHookup'; - declare export { - default as RvHookupOutlined, - } from '@material-ui/icons/RvHookupOutlined'; - declare export { - default as RvHookupRounded, - } from '@material-ui/icons/RvHookupRounded'; - declare export { - default as RvHookupSharp, - } from '@material-ui/icons/RvHookupSharp'; - declare export { - default as RvHookupTwoTone, - } from '@material-ui/icons/RvHookupTwoTone'; - declare export { default as Satellite } from '@material-ui/icons/Satellite'; - declare export { - default as SatelliteOutlined, - } from '@material-ui/icons/SatelliteOutlined'; - declare export { - default as SatelliteRounded, - } from '@material-ui/icons/SatelliteRounded'; - declare export { - default as SatelliteSharp, - } from '@material-ui/icons/SatelliteSharp'; - declare export { - default as SatelliteTwoTone, - } from '@material-ui/icons/SatelliteTwoTone'; - declare export { default as SaveAlt } from '@material-ui/icons/SaveAlt'; - declare export { - default as SaveAltOutlined, - } from '@material-ui/icons/SaveAltOutlined'; - declare export { - default as SaveAltRounded, - } from '@material-ui/icons/SaveAltRounded'; - declare export { - default as SaveAltSharp, - } from '@material-ui/icons/SaveAltSharp'; - declare export { - default as SaveAltTwoTone, - } from '@material-ui/icons/SaveAltTwoTone'; - declare export { default as Save } from '@material-ui/icons/Save'; - declare export { - default as SaveOutlined, - } from '@material-ui/icons/SaveOutlined'; - declare export { - default as SaveRounded, - } from '@material-ui/icons/SaveRounded'; - declare export { default as SaveSharp } from '@material-ui/icons/SaveSharp'; - declare export { - default as SaveTwoTone, - } from '@material-ui/icons/SaveTwoTone'; - declare export { default as Scanner } from '@material-ui/icons/Scanner'; - declare export { - default as ScannerOutlined, - } from '@material-ui/icons/ScannerOutlined'; - declare export { - default as ScannerRounded, - } from '@material-ui/icons/ScannerRounded'; - declare export { - default as ScannerSharp, - } from '@material-ui/icons/ScannerSharp'; - declare export { - default as ScannerTwoTone, - } from '@material-ui/icons/ScannerTwoTone'; - declare export { - default as ScatterPlot, - } from '@material-ui/icons/ScatterPlot'; - declare export { - default as ScatterPlotOutlined, - } from '@material-ui/icons/ScatterPlotOutlined'; - declare export { - default as ScatterPlotRounded, - } from '@material-ui/icons/ScatterPlotRounded'; - declare export { - default as ScatterPlotSharp, - } from '@material-ui/icons/ScatterPlotSharp'; - declare export { - default as ScatterPlotTwoTone, - } from '@material-ui/icons/ScatterPlotTwoTone'; - declare export { default as Schedule } from '@material-ui/icons/Schedule'; - declare export { - default as ScheduleOutlined, - } from '@material-ui/icons/ScheduleOutlined'; - declare export { - default as ScheduleRounded, - } from '@material-ui/icons/ScheduleRounded'; - declare export { - default as ScheduleSharp, - } from '@material-ui/icons/ScheduleSharp'; - declare export { - default as ScheduleTwoTone, - } from '@material-ui/icons/ScheduleTwoTone'; - declare export { default as School } from '@material-ui/icons/School'; - declare export { - default as SchoolOutlined, - } from '@material-ui/icons/SchoolOutlined'; - declare export { - default as SchoolRounded, - } from '@material-ui/icons/SchoolRounded'; - declare export { - default as SchoolSharp, - } from '@material-ui/icons/SchoolSharp'; - declare export { - default as SchoolTwoTone, - } from '@material-ui/icons/SchoolTwoTone'; - declare export { default as Score } from '@material-ui/icons/Score'; - declare export { - default as ScoreOutlined, - } from '@material-ui/icons/ScoreOutlined'; - declare export { - default as ScoreRounded, - } from '@material-ui/icons/ScoreRounded'; - declare export { default as ScoreSharp } from '@material-ui/icons/ScoreSharp'; - declare export { - default as ScoreTwoTone, - } from '@material-ui/icons/ScoreTwoTone'; - declare export { - default as ScreenLockLandscape, - } from '@material-ui/icons/ScreenLockLandscape'; - declare export { - default as ScreenLockLandscapeOutlined, - } from '@material-ui/icons/ScreenLockLandscapeOutlined'; - declare export { - default as ScreenLockLandscapeRounded, - } from '@material-ui/icons/ScreenLockLandscapeRounded'; - declare export { - default as ScreenLockLandscapeSharp, - } from '@material-ui/icons/ScreenLockLandscapeSharp'; - declare export { - default as ScreenLockLandscapeTwoTone, - } from '@material-ui/icons/ScreenLockLandscapeTwoTone'; - declare export { - default as ScreenLockPortrait, - } from '@material-ui/icons/ScreenLockPortrait'; - declare export { - default as ScreenLockPortraitOutlined, - } from '@material-ui/icons/ScreenLockPortraitOutlined'; - declare export { - default as ScreenLockPortraitRounded, - } from '@material-ui/icons/ScreenLockPortraitRounded'; - declare export { - default as ScreenLockPortraitSharp, - } from '@material-ui/icons/ScreenLockPortraitSharp'; - declare export { - default as ScreenLockPortraitTwoTone, - } from '@material-ui/icons/ScreenLockPortraitTwoTone'; - declare export { - default as ScreenLockRotation, - } from '@material-ui/icons/ScreenLockRotation'; - declare export { - default as ScreenLockRotationOutlined, - } from '@material-ui/icons/ScreenLockRotationOutlined'; - declare export { - default as ScreenLockRotationRounded, - } from '@material-ui/icons/ScreenLockRotationRounded'; - declare export { - default as ScreenLockRotationSharp, - } from '@material-ui/icons/ScreenLockRotationSharp'; - declare export { - default as ScreenLockRotationTwoTone, - } from '@material-ui/icons/ScreenLockRotationTwoTone'; - declare export { - default as ScreenRotation, - } from '@material-ui/icons/ScreenRotation'; - declare export { - default as ScreenRotationOutlined, - } from '@material-ui/icons/ScreenRotationOutlined'; - declare export { - default as ScreenRotationRounded, - } from '@material-ui/icons/ScreenRotationRounded'; - declare export { - default as ScreenRotationSharp, - } from '@material-ui/icons/ScreenRotationSharp'; - declare export { - default as ScreenRotationTwoTone, - } from '@material-ui/icons/ScreenRotationTwoTone'; - declare export { - default as ScreenShare, - } from '@material-ui/icons/ScreenShare'; - declare export { - default as ScreenShareOutlined, - } from '@material-ui/icons/ScreenShareOutlined'; - declare export { - default as ScreenShareRounded, - } from '@material-ui/icons/ScreenShareRounded'; - declare export { - default as ScreenShareSharp, - } from '@material-ui/icons/ScreenShareSharp'; - declare export { - default as ScreenShareTwoTone, - } from '@material-ui/icons/ScreenShareTwoTone'; - declare export { default as SdCard } from '@material-ui/icons/SdCard'; - declare export { - default as SdCardOutlined, - } from '@material-ui/icons/SdCardOutlined'; - declare export { - default as SdCardRounded, - } from '@material-ui/icons/SdCardRounded'; - declare export { - default as SdCardSharp, - } from '@material-ui/icons/SdCardSharp'; - declare export { - default as SdCardTwoTone, - } from '@material-ui/icons/SdCardTwoTone'; - declare export { default as SdStorage } from '@material-ui/icons/SdStorage'; - declare export { - default as SdStorageOutlined, - } from '@material-ui/icons/SdStorageOutlined'; - declare export { - default as SdStorageRounded, - } from '@material-ui/icons/SdStorageRounded'; - declare export { - default as SdStorageSharp, - } from '@material-ui/icons/SdStorageSharp'; - declare export { - default as SdStorageTwoTone, - } from '@material-ui/icons/SdStorageTwoTone'; - declare export { default as Search } from '@material-ui/icons/Search'; - declare export { - default as SearchOutlined, - } from '@material-ui/icons/SearchOutlined'; - declare export { - default as SearchRounded, - } from '@material-ui/icons/SearchRounded'; - declare export { - default as SearchSharp, - } from '@material-ui/icons/SearchSharp'; - declare export { - default as SearchTwoTone, - } from '@material-ui/icons/SearchTwoTone'; - declare export { default as Security } from '@material-ui/icons/Security'; - declare export { - default as SecurityOutlined, - } from '@material-ui/icons/SecurityOutlined'; - declare export { - default as SecurityRounded, - } from '@material-ui/icons/SecurityRounded'; - declare export { - default as SecuritySharp, - } from '@material-ui/icons/SecuritySharp'; - declare export { - default as SecurityTwoTone, - } from '@material-ui/icons/SecurityTwoTone'; - declare export { default as SelectAll } from '@material-ui/icons/SelectAll'; - declare export { - default as SelectAllOutlined, - } from '@material-ui/icons/SelectAllOutlined'; - declare export { - default as SelectAllRounded, - } from '@material-ui/icons/SelectAllRounded'; - declare export { - default as SelectAllSharp, - } from '@material-ui/icons/SelectAllSharp'; - declare export { - default as SelectAllTwoTone, - } from '@material-ui/icons/SelectAllTwoTone'; - declare export { default as Send } from '@material-ui/icons/Send'; - declare export { - default as SendOutlined, - } from '@material-ui/icons/SendOutlined'; - declare export { - default as SendRounded, - } from '@material-ui/icons/SendRounded'; - declare export { default as SendSharp } from '@material-ui/icons/SendSharp'; - declare export { - default as SendTwoTone, - } from '@material-ui/icons/SendTwoTone'; - declare export { - default as SentimentDissatisfied, - } from '@material-ui/icons/SentimentDissatisfied'; - declare export { - default as SentimentDissatisfiedOutlined, - } from '@material-ui/icons/SentimentDissatisfiedOutlined'; - declare export { - default as SentimentDissatisfiedRounded, - } from '@material-ui/icons/SentimentDissatisfiedRounded'; - declare export { - default as SentimentDissatisfiedSharp, - } from '@material-ui/icons/SentimentDissatisfiedSharp'; - declare export { - default as SentimentDissatisfiedTwoTone, - } from '@material-ui/icons/SentimentDissatisfiedTwoTone'; - declare export { - default as SentimentSatisfiedAlt, - } from '@material-ui/icons/SentimentSatisfiedAlt'; - declare export { - default as SentimentSatisfiedAltOutlined, - } from '@material-ui/icons/SentimentSatisfiedAltOutlined'; - declare export { - default as SentimentSatisfiedAltRounded, - } from '@material-ui/icons/SentimentSatisfiedAltRounded'; - declare export { - default as SentimentSatisfiedAltSharp, - } from '@material-ui/icons/SentimentSatisfiedAltSharp'; - declare export { - default as SentimentSatisfiedAltTwoTone, - } from '@material-ui/icons/SentimentSatisfiedAltTwoTone'; - declare export { - default as SentimentSatisfied, - } from '@material-ui/icons/SentimentSatisfied'; - declare export { - default as SentimentSatisfiedOutlined, - } from '@material-ui/icons/SentimentSatisfiedOutlined'; - declare export { - default as SentimentSatisfiedRounded, - } from '@material-ui/icons/SentimentSatisfiedRounded'; - declare export { - default as SentimentSatisfiedSharp, - } from '@material-ui/icons/SentimentSatisfiedSharp'; - declare export { - default as SentimentSatisfiedTwoTone, - } from '@material-ui/icons/SentimentSatisfiedTwoTone'; - declare export { - default as SentimentVeryDissatisfied, - } from '@material-ui/icons/SentimentVeryDissatisfied'; - declare export { - default as SentimentVeryDissatisfiedOutlined, - } from '@material-ui/icons/SentimentVeryDissatisfiedOutlined'; - declare export { - default as SentimentVeryDissatisfiedRounded, - } from '@material-ui/icons/SentimentVeryDissatisfiedRounded'; - declare export { - default as SentimentVeryDissatisfiedSharp, - } from '@material-ui/icons/SentimentVeryDissatisfiedSharp'; - declare export { - default as SentimentVeryDissatisfiedTwoTone, - } from '@material-ui/icons/SentimentVeryDissatisfiedTwoTone'; - declare export { - default as SentimentVerySatisfied, - } from '@material-ui/icons/SentimentVerySatisfied'; - declare export { - default as SentimentVerySatisfiedOutlined, - } from '@material-ui/icons/SentimentVerySatisfiedOutlined'; - declare export { - default as SentimentVerySatisfiedRounded, - } from '@material-ui/icons/SentimentVerySatisfiedRounded'; - declare export { - default as SentimentVerySatisfiedSharp, - } from '@material-ui/icons/SentimentVerySatisfiedSharp'; - declare export { - default as SentimentVerySatisfiedTwoTone, - } from '@material-ui/icons/SentimentVerySatisfiedTwoTone'; - declare export { - default as SettingsApplications, - } from '@material-ui/icons/SettingsApplications'; - declare export { - default as SettingsApplicationsOutlined, - } from '@material-ui/icons/SettingsApplicationsOutlined'; - declare export { - default as SettingsApplicationsRounded, - } from '@material-ui/icons/SettingsApplicationsRounded'; - declare export { - default as SettingsApplicationsSharp, - } from '@material-ui/icons/SettingsApplicationsSharp'; - declare export { - default as SettingsApplicationsTwoTone, - } from '@material-ui/icons/SettingsApplicationsTwoTone'; - declare export { - default as SettingsBackupRestore, - } from '@material-ui/icons/SettingsBackupRestore'; - declare export { - default as SettingsBackupRestoreOutlined, - } from '@material-ui/icons/SettingsBackupRestoreOutlined'; - declare export { - default as SettingsBackupRestoreRounded, - } from '@material-ui/icons/SettingsBackupRestoreRounded'; - declare export { - default as SettingsBackupRestoreSharp, - } from '@material-ui/icons/SettingsBackupRestoreSharp'; - declare export { - default as SettingsBackupRestoreTwoTone, - } from '@material-ui/icons/SettingsBackupRestoreTwoTone'; - declare export { - default as SettingsBluetooth, - } from '@material-ui/icons/SettingsBluetooth'; - declare export { - default as SettingsBluetoothOutlined, - } from '@material-ui/icons/SettingsBluetoothOutlined'; - declare export { - default as SettingsBluetoothRounded, - } from '@material-ui/icons/SettingsBluetoothRounded'; - declare export { - default as SettingsBluetoothSharp, - } from '@material-ui/icons/SettingsBluetoothSharp'; - declare export { - default as SettingsBluetoothTwoTone, - } from '@material-ui/icons/SettingsBluetoothTwoTone'; - declare export { - default as SettingsBrightness, - } from '@material-ui/icons/SettingsBrightness'; - declare export { - default as SettingsBrightnessOutlined, - } from '@material-ui/icons/SettingsBrightnessOutlined'; - declare export { - default as SettingsBrightnessRounded, - } from '@material-ui/icons/SettingsBrightnessRounded'; - declare export { - default as SettingsBrightnessSharp, - } from '@material-ui/icons/SettingsBrightnessSharp'; - declare export { - default as SettingsBrightnessTwoTone, - } from '@material-ui/icons/SettingsBrightnessTwoTone'; - declare export { - default as SettingsCell, - } from '@material-ui/icons/SettingsCell'; - declare export { - default as SettingsCellOutlined, - } from '@material-ui/icons/SettingsCellOutlined'; - declare export { - default as SettingsCellRounded, - } from '@material-ui/icons/SettingsCellRounded'; - declare export { - default as SettingsCellSharp, - } from '@material-ui/icons/SettingsCellSharp'; - declare export { - default as SettingsCellTwoTone, - } from '@material-ui/icons/SettingsCellTwoTone'; - declare export { - default as SettingsEthernet, - } from '@material-ui/icons/SettingsEthernet'; - declare export { - default as SettingsEthernetOutlined, - } from '@material-ui/icons/SettingsEthernetOutlined'; - declare export { - default as SettingsEthernetRounded, - } from '@material-ui/icons/SettingsEthernetRounded'; - declare export { - default as SettingsEthernetSharp, - } from '@material-ui/icons/SettingsEthernetSharp'; - declare export { - default as SettingsEthernetTwoTone, - } from '@material-ui/icons/SettingsEthernetTwoTone'; - declare export { - default as SettingsInputAntenna, - } from '@material-ui/icons/SettingsInputAntenna'; - declare export { - default as SettingsInputAntennaOutlined, - } from '@material-ui/icons/SettingsInputAntennaOutlined'; - declare export { - default as SettingsInputAntennaRounded, - } from '@material-ui/icons/SettingsInputAntennaRounded'; - declare export { - default as SettingsInputAntennaSharp, - } from '@material-ui/icons/SettingsInputAntennaSharp'; - declare export { - default as SettingsInputAntennaTwoTone, - } from '@material-ui/icons/SettingsInputAntennaTwoTone'; - declare export { - default as SettingsInputComponent, - } from '@material-ui/icons/SettingsInputComponent'; - declare export { - default as SettingsInputComponentOutlined, - } from '@material-ui/icons/SettingsInputComponentOutlined'; - declare export { - default as SettingsInputComponentRounded, - } from '@material-ui/icons/SettingsInputComponentRounded'; - declare export { - default as SettingsInputComponentSharp, - } from '@material-ui/icons/SettingsInputComponentSharp'; - declare export { - default as SettingsInputComponentTwoTone, - } from '@material-ui/icons/SettingsInputComponentTwoTone'; - declare export { - default as SettingsInputComposite, - } from '@material-ui/icons/SettingsInputComposite'; - declare export { - default as SettingsInputCompositeOutlined, - } from '@material-ui/icons/SettingsInputCompositeOutlined'; - declare export { - default as SettingsInputCompositeRounded, - } from '@material-ui/icons/SettingsInputCompositeRounded'; - declare export { - default as SettingsInputCompositeSharp, - } from '@material-ui/icons/SettingsInputCompositeSharp'; - declare export { - default as SettingsInputCompositeTwoTone, - } from '@material-ui/icons/SettingsInputCompositeTwoTone'; - declare export { - default as SettingsInputHdmi, - } from '@material-ui/icons/SettingsInputHdmi'; - declare export { - default as SettingsInputHdmiOutlined, - } from '@material-ui/icons/SettingsInputHdmiOutlined'; - declare export { - default as SettingsInputHdmiRounded, - } from '@material-ui/icons/SettingsInputHdmiRounded'; - declare export { - default as SettingsInputHdmiSharp, - } from '@material-ui/icons/SettingsInputHdmiSharp'; - declare export { - default as SettingsInputHdmiTwoTone, - } from '@material-ui/icons/SettingsInputHdmiTwoTone'; - declare export { - default as SettingsInputSvideo, - } from '@material-ui/icons/SettingsInputSvideo'; - declare export { - default as SettingsInputSvideoOutlined, - } from '@material-ui/icons/SettingsInputSvideoOutlined'; - declare export { - default as SettingsInputSvideoRounded, - } from '@material-ui/icons/SettingsInputSvideoRounded'; - declare export { - default as SettingsInputSvideoSharp, - } from '@material-ui/icons/SettingsInputSvideoSharp'; - declare export { - default as SettingsInputSvideoTwoTone, - } from '@material-ui/icons/SettingsInputSvideoTwoTone'; - declare export { default as Settings } from '@material-ui/icons/Settings'; - declare export { - default as SettingsOutlined, - } from '@material-ui/icons/SettingsOutlined'; - declare export { - default as SettingsOverscan, - } from '@material-ui/icons/SettingsOverscan'; - declare export { - default as SettingsOverscanOutlined, - } from '@material-ui/icons/SettingsOverscanOutlined'; - declare export { - default as SettingsOverscanRounded, - } from '@material-ui/icons/SettingsOverscanRounded'; - declare export { - default as SettingsOverscanSharp, - } from '@material-ui/icons/SettingsOverscanSharp'; - declare export { - default as SettingsOverscanTwoTone, - } from '@material-ui/icons/SettingsOverscanTwoTone'; - declare export { - default as SettingsPhone, - } from '@material-ui/icons/SettingsPhone'; - declare export { - default as SettingsPhoneOutlined, - } from '@material-ui/icons/SettingsPhoneOutlined'; - declare export { - default as SettingsPhoneRounded, - } from '@material-ui/icons/SettingsPhoneRounded'; - declare export { - default as SettingsPhoneSharp, - } from '@material-ui/icons/SettingsPhoneSharp'; - declare export { - default as SettingsPhoneTwoTone, - } from '@material-ui/icons/SettingsPhoneTwoTone'; - declare export { - default as SettingsPower, - } from '@material-ui/icons/SettingsPower'; - declare export { - default as SettingsPowerOutlined, - } from '@material-ui/icons/SettingsPowerOutlined'; - declare export { - default as SettingsPowerRounded, - } from '@material-ui/icons/SettingsPowerRounded'; - declare export { - default as SettingsPowerSharp, - } from '@material-ui/icons/SettingsPowerSharp'; - declare export { - default as SettingsPowerTwoTone, - } from '@material-ui/icons/SettingsPowerTwoTone'; - declare export { - default as SettingsRemote, - } from '@material-ui/icons/SettingsRemote'; - declare export { - default as SettingsRemoteOutlined, - } from '@material-ui/icons/SettingsRemoteOutlined'; - declare export { - default as SettingsRemoteRounded, - } from '@material-ui/icons/SettingsRemoteRounded'; - declare export { - default as SettingsRemoteSharp, - } from '@material-ui/icons/SettingsRemoteSharp'; - declare export { - default as SettingsRemoteTwoTone, - } from '@material-ui/icons/SettingsRemoteTwoTone'; - declare export { - default as SettingsRounded, - } from '@material-ui/icons/SettingsRounded'; - declare export { - default as SettingsSharp, - } from '@material-ui/icons/SettingsSharp'; - declare export { - default as SettingsSystemDaydream, - } from '@material-ui/icons/SettingsSystemDaydream'; - declare export { - default as SettingsSystemDaydreamOutlined, - } from '@material-ui/icons/SettingsSystemDaydreamOutlined'; - declare export { - default as SettingsSystemDaydreamRounded, - } from '@material-ui/icons/SettingsSystemDaydreamRounded'; - declare export { - default as SettingsSystemDaydreamSharp, - } from '@material-ui/icons/SettingsSystemDaydreamSharp'; - declare export { - default as SettingsSystemDaydreamTwoTone, - } from '@material-ui/icons/SettingsSystemDaydreamTwoTone'; - declare export { - default as SettingsTwoTone, - } from '@material-ui/icons/SettingsTwoTone'; - declare export { - default as SettingsVoice, - } from '@material-ui/icons/SettingsVoice'; - declare export { - default as SettingsVoiceOutlined, - } from '@material-ui/icons/SettingsVoiceOutlined'; - declare export { - default as SettingsVoiceRounded, - } from '@material-ui/icons/SettingsVoiceRounded'; - declare export { - default as SettingsVoiceSharp, - } from '@material-ui/icons/SettingsVoiceSharp'; - declare export { - default as SettingsVoiceTwoTone, - } from '@material-ui/icons/SettingsVoiceTwoTone'; - declare export { default as Share } from '@material-ui/icons/Share'; - declare export { - default as ShareOutlined, - } from '@material-ui/icons/ShareOutlined'; - declare export { - default as ShareRounded, - } from '@material-ui/icons/ShareRounded'; - declare export { default as ShareSharp } from '@material-ui/icons/ShareSharp'; - declare export { - default as ShareTwoTone, - } from '@material-ui/icons/ShareTwoTone'; - declare export { default as Shop } from '@material-ui/icons/Shop'; - declare export { - default as ShopOutlined, - } from '@material-ui/icons/ShopOutlined'; - declare export { - default as ShoppingBasket, - } from '@material-ui/icons/ShoppingBasket'; - declare export { - default as ShoppingBasketOutlined, - } from '@material-ui/icons/ShoppingBasketOutlined'; - declare export { - default as ShoppingBasketRounded, - } from '@material-ui/icons/ShoppingBasketRounded'; - declare export { - default as ShoppingBasketSharp, - } from '@material-ui/icons/ShoppingBasketSharp'; - declare export { - default as ShoppingBasketTwoTone, - } from '@material-ui/icons/ShoppingBasketTwoTone'; - declare export { - default as ShoppingCart, - } from '@material-ui/icons/ShoppingCart'; - declare export { - default as ShoppingCartOutlined, - } from '@material-ui/icons/ShoppingCartOutlined'; - declare export { - default as ShoppingCartRounded, - } from '@material-ui/icons/ShoppingCartRounded'; - declare export { - default as ShoppingCartSharp, - } from '@material-ui/icons/ShoppingCartSharp'; - declare export { - default as ShoppingCartTwoTone, - } from '@material-ui/icons/ShoppingCartTwoTone'; - declare export { - default as ShopRounded, - } from '@material-ui/icons/ShopRounded'; - declare export { default as ShopSharp } from '@material-ui/icons/ShopSharp'; - declare export { default as ShopTwo } from '@material-ui/icons/ShopTwo'; - declare export { - default as ShopTwoOutlined, - } from '@material-ui/icons/ShopTwoOutlined'; - declare export { - default as ShopTwoRounded, - } from '@material-ui/icons/ShopTwoRounded'; - declare export { - default as ShopTwoSharp, - } from '@material-ui/icons/ShopTwoSharp'; - declare export { - default as ShopTwoTone, - } from '@material-ui/icons/ShopTwoTone'; - declare export { - default as ShopTwoTwoTone, - } from '@material-ui/icons/ShopTwoTwoTone'; - declare export { default as ShortText } from '@material-ui/icons/ShortText'; - declare export { - default as ShortTextOutlined, - } from '@material-ui/icons/ShortTextOutlined'; - declare export { - default as ShortTextRounded, - } from '@material-ui/icons/ShortTextRounded'; - declare export { - default as ShortTextSharp, - } from '@material-ui/icons/ShortTextSharp'; - declare export { - default as ShortTextTwoTone, - } from '@material-ui/icons/ShortTextTwoTone'; - declare export { default as ShowChart } from '@material-ui/icons/ShowChart'; - declare export { - default as ShowChartOutlined, - } from '@material-ui/icons/ShowChartOutlined'; - declare export { - default as ShowChartRounded, - } from '@material-ui/icons/ShowChartRounded'; - declare export { - default as ShowChartSharp, - } from '@material-ui/icons/ShowChartSharp'; - declare export { - default as ShowChartTwoTone, - } from '@material-ui/icons/ShowChartTwoTone'; - declare export { default as Shuffle } from '@material-ui/icons/Shuffle'; - declare export { - default as ShuffleOutlined, - } from '@material-ui/icons/ShuffleOutlined'; - declare export { - default as ShuffleRounded, - } from '@material-ui/icons/ShuffleRounded'; - declare export { - default as ShuffleSharp, - } from '@material-ui/icons/ShuffleSharp'; - declare export { - default as ShuffleTwoTone, - } from '@material-ui/icons/ShuffleTwoTone'; - declare export { - default as ShutterSpeed, - } from '@material-ui/icons/ShutterSpeed'; - declare export { - default as ShutterSpeedOutlined, - } from '@material-ui/icons/ShutterSpeedOutlined'; - declare export { - default as ShutterSpeedRounded, - } from '@material-ui/icons/ShutterSpeedRounded'; - declare export { - default as ShutterSpeedSharp, - } from '@material-ui/icons/ShutterSpeedSharp'; - declare export { - default as ShutterSpeedTwoTone, - } from '@material-ui/icons/ShutterSpeedTwoTone'; - declare export { - default as SignalCellular0Bar, - } from '@material-ui/icons/SignalCellular0Bar'; - declare export { - default as SignalCellular0BarOutlined, - } from '@material-ui/icons/SignalCellular0BarOutlined'; - declare export { - default as SignalCellular0BarRounded, - } from '@material-ui/icons/SignalCellular0BarRounded'; - declare export { - default as SignalCellular0BarSharp, - } from '@material-ui/icons/SignalCellular0BarSharp'; - declare export { - default as SignalCellular0BarTwoTone, - } from '@material-ui/icons/SignalCellular0BarTwoTone'; - declare export { - default as SignalCellular1Bar, - } from '@material-ui/icons/SignalCellular1Bar'; - declare export { - default as SignalCellular1BarOutlined, - } from '@material-ui/icons/SignalCellular1BarOutlined'; - declare export { - default as SignalCellular1BarRounded, - } from '@material-ui/icons/SignalCellular1BarRounded'; - declare export { - default as SignalCellular1BarSharp, - } from '@material-ui/icons/SignalCellular1BarSharp'; - declare export { - default as SignalCellular1BarTwoTone, - } from '@material-ui/icons/SignalCellular1BarTwoTone'; - declare export { - default as SignalCellular2Bar, - } from '@material-ui/icons/SignalCellular2Bar'; - declare export { - default as SignalCellular2BarOutlined, - } from '@material-ui/icons/SignalCellular2BarOutlined'; - declare export { - default as SignalCellular2BarRounded, - } from '@material-ui/icons/SignalCellular2BarRounded'; - declare export { - default as SignalCellular2BarSharp, - } from '@material-ui/icons/SignalCellular2BarSharp'; - declare export { - default as SignalCellular2BarTwoTone, - } from '@material-ui/icons/SignalCellular2BarTwoTone'; - declare export { - default as SignalCellular3Bar, - } from '@material-ui/icons/SignalCellular3Bar'; - declare export { - default as SignalCellular3BarOutlined, - } from '@material-ui/icons/SignalCellular3BarOutlined'; - declare export { - default as SignalCellular3BarRounded, - } from '@material-ui/icons/SignalCellular3BarRounded'; - declare export { - default as SignalCellular3BarSharp, - } from '@material-ui/icons/SignalCellular3BarSharp'; - declare export { - default as SignalCellular3BarTwoTone, - } from '@material-ui/icons/SignalCellular3BarTwoTone'; - declare export { - default as SignalCellular4Bar, - } from '@material-ui/icons/SignalCellular4Bar'; - declare export { - default as SignalCellular4BarOutlined, - } from '@material-ui/icons/SignalCellular4BarOutlined'; - declare export { - default as SignalCellular4BarRounded, - } from '@material-ui/icons/SignalCellular4BarRounded'; - declare export { - default as SignalCellular4BarSharp, - } from '@material-ui/icons/SignalCellular4BarSharp'; - declare export { - default as SignalCellular4BarTwoTone, - } from '@material-ui/icons/SignalCellular4BarTwoTone'; - declare export { - default as SignalCellularAlt, - } from '@material-ui/icons/SignalCellularAlt'; - declare export { - default as SignalCellularAltOutlined, - } from '@material-ui/icons/SignalCellularAltOutlined'; - declare export { - default as SignalCellularAltRounded, - } from '@material-ui/icons/SignalCellularAltRounded'; - declare export { - default as SignalCellularAltSharp, - } from '@material-ui/icons/SignalCellularAltSharp'; - declare export { - default as SignalCellularAltTwoTone, - } from '@material-ui/icons/SignalCellularAltTwoTone'; - declare export { - default as SignalCellularConnectedNoInternet0Bar, - } from '@material-ui/icons/SignalCellularConnectedNoInternet0Bar'; - declare export { - default as SignalCellularConnectedNoInternet0BarOutlined, - } from '@material-ui/icons/SignalCellularConnectedNoInternet0BarOutlined'; - declare export { - default as SignalCellularConnectedNoInternet0BarRounded, - } from '@material-ui/icons/SignalCellularConnectedNoInternet0BarRounded'; - declare export { - default as SignalCellularConnectedNoInternet0BarSharp, - } from '@material-ui/icons/SignalCellularConnectedNoInternet0BarSharp'; - declare export { - default as SignalCellularConnectedNoInternet0BarTwoTone, - } from '@material-ui/icons/SignalCellularConnectedNoInternet0BarTwoTone'; - declare export { - default as SignalCellularConnectedNoInternet1Bar, - } from '@material-ui/icons/SignalCellularConnectedNoInternet1Bar'; - declare export { - default as SignalCellularConnectedNoInternet1BarOutlined, - } from '@material-ui/icons/SignalCellularConnectedNoInternet1BarOutlined'; - declare export { - default as SignalCellularConnectedNoInternet1BarRounded, - } from '@material-ui/icons/SignalCellularConnectedNoInternet1BarRounded'; - declare export { - default as SignalCellularConnectedNoInternet1BarSharp, - } from '@material-ui/icons/SignalCellularConnectedNoInternet1BarSharp'; - declare export { - default as SignalCellularConnectedNoInternet1BarTwoTone, - } from '@material-ui/icons/SignalCellularConnectedNoInternet1BarTwoTone'; - declare export { - default as SignalCellularConnectedNoInternet2Bar, - } from '@material-ui/icons/SignalCellularConnectedNoInternet2Bar'; - declare export { - default as SignalCellularConnectedNoInternet2BarOutlined, - } from '@material-ui/icons/SignalCellularConnectedNoInternet2BarOutlined'; - declare export { - default as SignalCellularConnectedNoInternet2BarRounded, - } from '@material-ui/icons/SignalCellularConnectedNoInternet2BarRounded'; - declare export { - default as SignalCellularConnectedNoInternet2BarSharp, - } from '@material-ui/icons/SignalCellularConnectedNoInternet2BarSharp'; - declare export { - default as SignalCellularConnectedNoInternet2BarTwoTone, - } from '@material-ui/icons/SignalCellularConnectedNoInternet2BarTwoTone'; - declare export { - default as SignalCellularConnectedNoInternet3Bar, - } from '@material-ui/icons/SignalCellularConnectedNoInternet3Bar'; - declare export { - default as SignalCellularConnectedNoInternet3BarOutlined, - } from '@material-ui/icons/SignalCellularConnectedNoInternet3BarOutlined'; - declare export { - default as SignalCellularConnectedNoInternet3BarRounded, - } from '@material-ui/icons/SignalCellularConnectedNoInternet3BarRounded'; - declare export { - default as SignalCellularConnectedNoInternet3BarSharp, - } from '@material-ui/icons/SignalCellularConnectedNoInternet3BarSharp'; - declare export { - default as SignalCellularConnectedNoInternet3BarTwoTone, - } from '@material-ui/icons/SignalCellularConnectedNoInternet3BarTwoTone'; - declare export { - default as SignalCellularConnectedNoInternet4Bar, - } from '@material-ui/icons/SignalCellularConnectedNoInternet4Bar'; - declare export { - default as SignalCellularConnectedNoInternet4BarOutlined, - } from '@material-ui/icons/SignalCellularConnectedNoInternet4BarOutlined'; - declare export { - default as SignalCellularConnectedNoInternet4BarRounded, - } from '@material-ui/icons/SignalCellularConnectedNoInternet4BarRounded'; - declare export { - default as SignalCellularConnectedNoInternet4BarSharp, - } from '@material-ui/icons/SignalCellularConnectedNoInternet4BarSharp'; - declare export { - default as SignalCellularConnectedNoInternet4BarTwoTone, - } from '@material-ui/icons/SignalCellularConnectedNoInternet4BarTwoTone'; - declare export { - default as SignalCellularNoSim, - } from '@material-ui/icons/SignalCellularNoSim'; - declare export { - default as SignalCellularNoSimOutlined, - } from '@material-ui/icons/SignalCellularNoSimOutlined'; - declare export { - default as SignalCellularNoSimRounded, - } from '@material-ui/icons/SignalCellularNoSimRounded'; - declare export { - default as SignalCellularNoSimSharp, - } from '@material-ui/icons/SignalCellularNoSimSharp'; - declare export { - default as SignalCellularNoSimTwoTone, - } from '@material-ui/icons/SignalCellularNoSimTwoTone'; - declare export { - default as SignalCellularNull, - } from '@material-ui/icons/SignalCellularNull'; - declare export { - default as SignalCellularNullOutlined, - } from '@material-ui/icons/SignalCellularNullOutlined'; - declare export { - default as SignalCellularNullRounded, - } from '@material-ui/icons/SignalCellularNullRounded'; - declare export { - default as SignalCellularNullSharp, - } from '@material-ui/icons/SignalCellularNullSharp'; - declare export { - default as SignalCellularNullTwoTone, - } from '@material-ui/icons/SignalCellularNullTwoTone'; - declare export { - default as SignalCellularOff, - } from '@material-ui/icons/SignalCellularOff'; - declare export { - default as SignalCellularOffOutlined, - } from '@material-ui/icons/SignalCellularOffOutlined'; - declare export { - default as SignalCellularOffRounded, - } from '@material-ui/icons/SignalCellularOffRounded'; - declare export { - default as SignalCellularOffSharp, - } from '@material-ui/icons/SignalCellularOffSharp'; - declare export { - default as SignalCellularOffTwoTone, - } from '@material-ui/icons/SignalCellularOffTwoTone'; - declare export { - default as SignalWifi0Bar, - } from '@material-ui/icons/SignalWifi0Bar'; - declare export { - default as SignalWifi0BarOutlined, - } from '@material-ui/icons/SignalWifi0BarOutlined'; - declare export { - default as SignalWifi0BarRounded, - } from '@material-ui/icons/SignalWifi0BarRounded'; - declare export { - default as SignalWifi0BarSharp, - } from '@material-ui/icons/SignalWifi0BarSharp'; - declare export { - default as SignalWifi0BarTwoTone, - } from '@material-ui/icons/SignalWifi0BarTwoTone'; - declare export { - default as SignalWifi1Bar, - } from '@material-ui/icons/SignalWifi1Bar'; - declare export { - default as SignalWifi1BarLock, - } from '@material-ui/icons/SignalWifi1BarLock'; - declare export { - default as SignalWifi1BarLockOutlined, - } from '@material-ui/icons/SignalWifi1BarLockOutlined'; - declare export { - default as SignalWifi1BarLockRounded, - } from '@material-ui/icons/SignalWifi1BarLockRounded'; - declare export { - default as SignalWifi1BarLockSharp, - } from '@material-ui/icons/SignalWifi1BarLockSharp'; - declare export { - default as SignalWifi1BarLockTwoTone, - } from '@material-ui/icons/SignalWifi1BarLockTwoTone'; - declare export { - default as SignalWifi1BarOutlined, - } from '@material-ui/icons/SignalWifi1BarOutlined'; - declare export { - default as SignalWifi1BarRounded, - } from '@material-ui/icons/SignalWifi1BarRounded'; - declare export { - default as SignalWifi1BarSharp, - } from '@material-ui/icons/SignalWifi1BarSharp'; - declare export { - default as SignalWifi1BarTwoTone, - } from '@material-ui/icons/SignalWifi1BarTwoTone'; - declare export { - default as SignalWifi2Bar, - } from '@material-ui/icons/SignalWifi2Bar'; - declare export { - default as SignalWifi2BarLock, - } from '@material-ui/icons/SignalWifi2BarLock'; - declare export { - default as SignalWifi2BarLockOutlined, - } from '@material-ui/icons/SignalWifi2BarLockOutlined'; - declare export { - default as SignalWifi2BarLockRounded, - } from '@material-ui/icons/SignalWifi2BarLockRounded'; - declare export { - default as SignalWifi2BarLockSharp, - } from '@material-ui/icons/SignalWifi2BarLockSharp'; - declare export { - default as SignalWifi2BarLockTwoTone, - } from '@material-ui/icons/SignalWifi2BarLockTwoTone'; - declare export { - default as SignalWifi2BarOutlined, - } from '@material-ui/icons/SignalWifi2BarOutlined'; - declare export { - default as SignalWifi2BarRounded, - } from '@material-ui/icons/SignalWifi2BarRounded'; - declare export { - default as SignalWifi2BarSharp, - } from '@material-ui/icons/SignalWifi2BarSharp'; - declare export { - default as SignalWifi2BarTwoTone, - } from '@material-ui/icons/SignalWifi2BarTwoTone'; - declare export { - default as SignalWifi3Bar, - } from '@material-ui/icons/SignalWifi3Bar'; - declare export { - default as SignalWifi3BarLock, - } from '@material-ui/icons/SignalWifi3BarLock'; - declare export { - default as SignalWifi3BarLockOutlined, - } from '@material-ui/icons/SignalWifi3BarLockOutlined'; - declare export { - default as SignalWifi3BarLockRounded, - } from '@material-ui/icons/SignalWifi3BarLockRounded'; - declare export { - default as SignalWifi3BarLockSharp, - } from '@material-ui/icons/SignalWifi3BarLockSharp'; - declare export { - default as SignalWifi3BarLockTwoTone, - } from '@material-ui/icons/SignalWifi3BarLockTwoTone'; - declare export { - default as SignalWifi3BarOutlined, - } from '@material-ui/icons/SignalWifi3BarOutlined'; - declare export { - default as SignalWifi3BarRounded, - } from '@material-ui/icons/SignalWifi3BarRounded'; - declare export { - default as SignalWifi3BarSharp, - } from '@material-ui/icons/SignalWifi3BarSharp'; - declare export { - default as SignalWifi3BarTwoTone, - } from '@material-ui/icons/SignalWifi3BarTwoTone'; - declare export { - default as SignalWifi4Bar, - } from '@material-ui/icons/SignalWifi4Bar'; - declare export { - default as SignalWifi4BarLock, - } from '@material-ui/icons/SignalWifi4BarLock'; - declare export { - default as SignalWifi4BarLockOutlined, - } from '@material-ui/icons/SignalWifi4BarLockOutlined'; - declare export { - default as SignalWifi4BarLockRounded, - } from '@material-ui/icons/SignalWifi4BarLockRounded'; - declare export { - default as SignalWifi4BarLockSharp, - } from '@material-ui/icons/SignalWifi4BarLockSharp'; - declare export { - default as SignalWifi4BarLockTwoTone, - } from '@material-ui/icons/SignalWifi4BarLockTwoTone'; - declare export { - default as SignalWifi4BarOutlined, - } from '@material-ui/icons/SignalWifi4BarOutlined'; - declare export { - default as SignalWifi4BarRounded, - } from '@material-ui/icons/SignalWifi4BarRounded'; - declare export { - default as SignalWifi4BarSharp, - } from '@material-ui/icons/SignalWifi4BarSharp'; - declare export { - default as SignalWifi4BarTwoTone, - } from '@material-ui/icons/SignalWifi4BarTwoTone'; - declare export { - default as SignalWifiOff, - } from '@material-ui/icons/SignalWifiOff'; - declare export { - default as SignalWifiOffOutlined, - } from '@material-ui/icons/SignalWifiOffOutlined'; - declare export { - default as SignalWifiOffRounded, - } from '@material-ui/icons/SignalWifiOffRounded'; - declare export { - default as SignalWifiOffSharp, - } from '@material-ui/icons/SignalWifiOffSharp'; - declare export { - default as SignalWifiOffTwoTone, - } from '@material-ui/icons/SignalWifiOffTwoTone'; - declare export { default as SimCard } from '@material-ui/icons/SimCard'; - declare export { - default as SimCardOutlined, - } from '@material-ui/icons/SimCardOutlined'; - declare export { - default as SimCardRounded, - } from '@material-ui/icons/SimCardRounded'; - declare export { - default as SimCardSharp, - } from '@material-ui/icons/SimCardSharp'; - declare export { - default as SimCardTwoTone, - } from '@material-ui/icons/SimCardTwoTone'; - declare export { default as SkipNext } from '@material-ui/icons/SkipNext'; - declare export { - default as SkipNextOutlined, - } from '@material-ui/icons/SkipNextOutlined'; - declare export { - default as SkipNextRounded, - } from '@material-ui/icons/SkipNextRounded'; - declare export { - default as SkipNextSharp, - } from '@material-ui/icons/SkipNextSharp'; - declare export { - default as SkipNextTwoTone, - } from '@material-ui/icons/SkipNextTwoTone'; - declare export { - default as SkipPrevious, - } from '@material-ui/icons/SkipPrevious'; - declare export { - default as SkipPreviousOutlined, - } from '@material-ui/icons/SkipPreviousOutlined'; - declare export { - default as SkipPreviousRounded, - } from '@material-ui/icons/SkipPreviousRounded'; - declare export { - default as SkipPreviousSharp, - } from '@material-ui/icons/SkipPreviousSharp'; - declare export { - default as SkipPreviousTwoTone, - } from '@material-ui/icons/SkipPreviousTwoTone'; - declare export { default as Slideshow } from '@material-ui/icons/Slideshow'; - declare export { - default as SlideshowOutlined, - } from '@material-ui/icons/SlideshowOutlined'; - declare export { - default as SlideshowRounded, - } from '@material-ui/icons/SlideshowRounded'; - declare export { - default as SlideshowSharp, - } from '@material-ui/icons/SlideshowSharp'; - declare export { - default as SlideshowTwoTone, - } from '@material-ui/icons/SlideshowTwoTone'; - declare export { - default as SlowMotionVideo, - } from '@material-ui/icons/SlowMotionVideo'; - declare export { - default as SlowMotionVideoOutlined, - } from '@material-ui/icons/SlowMotionVideoOutlined'; - declare export { - default as SlowMotionVideoRounded, - } from '@material-ui/icons/SlowMotionVideoRounded'; - declare export { - default as SlowMotionVideoSharp, - } from '@material-ui/icons/SlowMotionVideoSharp'; - declare export { - default as SlowMotionVideoTwoTone, - } from '@material-ui/icons/SlowMotionVideoTwoTone'; - declare export { default as Smartphone } from '@material-ui/icons/Smartphone'; - declare export { - default as SmartphoneOutlined, - } from '@material-ui/icons/SmartphoneOutlined'; - declare export { - default as SmartphoneRounded, - } from '@material-ui/icons/SmartphoneRounded'; - declare export { - default as SmartphoneSharp, - } from '@material-ui/icons/SmartphoneSharp'; - declare export { - default as SmartphoneTwoTone, - } from '@material-ui/icons/SmartphoneTwoTone'; - declare export { default as SmokeFree } from '@material-ui/icons/SmokeFree'; - declare export { - default as SmokeFreeOutlined, - } from '@material-ui/icons/SmokeFreeOutlined'; - declare export { - default as SmokeFreeRounded, - } from '@material-ui/icons/SmokeFreeRounded'; - declare export { - default as SmokeFreeSharp, - } from '@material-ui/icons/SmokeFreeSharp'; - declare export { - default as SmokeFreeTwoTone, - } from '@material-ui/icons/SmokeFreeTwoTone'; - declare export { - default as SmokingRooms, - } from '@material-ui/icons/SmokingRooms'; - declare export { - default as SmokingRoomsOutlined, - } from '@material-ui/icons/SmokingRoomsOutlined'; - declare export { - default as SmokingRoomsRounded, - } from '@material-ui/icons/SmokingRoomsRounded'; - declare export { - default as SmokingRoomsSharp, - } from '@material-ui/icons/SmokingRoomsSharp'; - declare export { - default as SmokingRoomsTwoTone, - } from '@material-ui/icons/SmokingRoomsTwoTone'; - declare export { default as SmsFailed } from '@material-ui/icons/SmsFailed'; - declare export { - default as SmsFailedOutlined, - } from '@material-ui/icons/SmsFailedOutlined'; - declare export { - default as SmsFailedRounded, - } from '@material-ui/icons/SmsFailedRounded'; - declare export { - default as SmsFailedSharp, - } from '@material-ui/icons/SmsFailedSharp'; - declare export { - default as SmsFailedTwoTone, - } from '@material-ui/icons/SmsFailedTwoTone'; - declare export { default as Sms } from '@material-ui/icons/Sms'; - declare export { - default as SmsOutlined, - } from '@material-ui/icons/SmsOutlined'; - declare export { default as SmsRounded } from '@material-ui/icons/SmsRounded'; - declare export { default as SmsSharp } from '@material-ui/icons/SmsSharp'; - declare export { default as SmsTwoTone } from '@material-ui/icons/SmsTwoTone'; - declare export { default as Snooze } from '@material-ui/icons/Snooze'; - declare export { - default as SnoozeOutlined, - } from '@material-ui/icons/SnoozeOutlined'; - declare export { - default as SnoozeRounded, - } from '@material-ui/icons/SnoozeRounded'; - declare export { - default as SnoozeSharp, - } from '@material-ui/icons/SnoozeSharp'; - declare export { - default as SnoozeTwoTone, - } from '@material-ui/icons/SnoozeTwoTone'; - declare export { - default as SortByAlpha, - } from '@material-ui/icons/SortByAlpha'; - declare export { - default as SortByAlphaOutlined, - } from '@material-ui/icons/SortByAlphaOutlined'; - declare export { - default as SortByAlphaRounded, - } from '@material-ui/icons/SortByAlphaRounded'; - declare export { - default as SortByAlphaSharp, - } from '@material-ui/icons/SortByAlphaSharp'; - declare export { - default as SortByAlphaTwoTone, - } from '@material-ui/icons/SortByAlphaTwoTone'; - declare export { default as Sort } from '@material-ui/icons/Sort'; - declare export { - default as SortOutlined, - } from '@material-ui/icons/SortOutlined'; - declare export { - default as SortRounded, - } from '@material-ui/icons/SortRounded'; - declare export { default as SortSharp } from '@material-ui/icons/SortSharp'; - declare export { - default as SortTwoTone, - } from '@material-ui/icons/SortTwoTone'; - declare export { default as SpaceBar } from '@material-ui/icons/SpaceBar'; - declare export { - default as SpaceBarOutlined, - } from '@material-ui/icons/SpaceBarOutlined'; - declare export { - default as SpaceBarRounded, - } from '@material-ui/icons/SpaceBarRounded'; - declare export { - default as SpaceBarSharp, - } from '@material-ui/icons/SpaceBarSharp'; - declare export { - default as SpaceBarTwoTone, - } from '@material-ui/icons/SpaceBarTwoTone'; - declare export { default as Spa } from '@material-ui/icons/Spa'; - declare export { - default as SpaOutlined, - } from '@material-ui/icons/SpaOutlined'; - declare export { default as SpaRounded } from '@material-ui/icons/SpaRounded'; - declare export { default as SpaSharp } from '@material-ui/icons/SpaSharp'; - declare export { default as SpaTwoTone } from '@material-ui/icons/SpaTwoTone'; - declare export { - default as SpeakerGroup, - } from '@material-ui/icons/SpeakerGroup'; - declare export { - default as SpeakerGroupOutlined, - } from '@material-ui/icons/SpeakerGroupOutlined'; - declare export { - default as SpeakerGroupRounded, - } from '@material-ui/icons/SpeakerGroupRounded'; - declare export { - default as SpeakerGroupSharp, - } from '@material-ui/icons/SpeakerGroupSharp'; - declare export { - default as SpeakerGroupTwoTone, - } from '@material-ui/icons/SpeakerGroupTwoTone'; - declare export { default as Speaker } from '@material-ui/icons/Speaker'; - declare export { - default as SpeakerNotes, - } from '@material-ui/icons/SpeakerNotes'; - declare export { - default as SpeakerNotesOff, - } from '@material-ui/icons/SpeakerNotesOff'; - declare export { - default as SpeakerNotesOffOutlined, - } from '@material-ui/icons/SpeakerNotesOffOutlined'; - declare export { - default as SpeakerNotesOffRounded, - } from '@material-ui/icons/SpeakerNotesOffRounded'; - declare export { - default as SpeakerNotesOffSharp, - } from '@material-ui/icons/SpeakerNotesOffSharp'; - declare export { - default as SpeakerNotesOffTwoTone, - } from '@material-ui/icons/SpeakerNotesOffTwoTone'; - declare export { - default as SpeakerNotesOutlined, - } from '@material-ui/icons/SpeakerNotesOutlined'; - declare export { - default as SpeakerNotesRounded, - } from '@material-ui/icons/SpeakerNotesRounded'; - declare export { - default as SpeakerNotesSharp, - } from '@material-ui/icons/SpeakerNotesSharp'; - declare export { - default as SpeakerNotesTwoTone, - } from '@material-ui/icons/SpeakerNotesTwoTone'; - declare export { - default as SpeakerOutlined, - } from '@material-ui/icons/SpeakerOutlined'; - declare export { - default as SpeakerPhone, - } from '@material-ui/icons/SpeakerPhone'; - declare export { - default as SpeakerPhoneOutlined, - } from '@material-ui/icons/SpeakerPhoneOutlined'; - declare export { - default as SpeakerPhoneRounded, - } from '@material-ui/icons/SpeakerPhoneRounded'; - declare export { - default as SpeakerPhoneSharp, - } from '@material-ui/icons/SpeakerPhoneSharp'; - declare export { - default as SpeakerPhoneTwoTone, - } from '@material-ui/icons/SpeakerPhoneTwoTone'; - declare export { - default as SpeakerRounded, - } from '@material-ui/icons/SpeakerRounded'; - declare export { - default as SpeakerSharp, - } from '@material-ui/icons/SpeakerSharp'; - declare export { - default as SpeakerTwoTone, - } from '@material-ui/icons/SpeakerTwoTone'; - declare export { default as Spellcheck } from '@material-ui/icons/Spellcheck'; - declare export { - default as SpellcheckOutlined, - } from '@material-ui/icons/SpellcheckOutlined'; - declare export { - default as SpellcheckRounded, - } from '@material-ui/icons/SpellcheckRounded'; - declare export { - default as SpellcheckSharp, - } from '@material-ui/icons/SpellcheckSharp'; - declare export { - default as SpellcheckTwoTone, - } from '@material-ui/icons/SpellcheckTwoTone'; - declare export { default as StarBorder } from '@material-ui/icons/StarBorder'; - declare export { - default as StarBorderOutlined, - } from '@material-ui/icons/StarBorderOutlined'; - declare export { - default as StarBorderRounded, - } from '@material-ui/icons/StarBorderRounded'; - declare export { - default as StarBorderSharp, - } from '@material-ui/icons/StarBorderSharp'; - declare export { - default as StarBorderTwoTone, - } from '@material-ui/icons/StarBorderTwoTone'; - declare export { default as StarHalf } from '@material-ui/icons/StarHalf'; - declare export { - default as StarHalfOutlined, - } from '@material-ui/icons/StarHalfOutlined'; - declare export { - default as StarHalfRounded, - } from '@material-ui/icons/StarHalfRounded'; - declare export { - default as StarHalfSharp, - } from '@material-ui/icons/StarHalfSharp'; - declare export { - default as StarHalfTwoTone, - } from '@material-ui/icons/StarHalfTwoTone'; - declare export { default as Star } from '@material-ui/icons/Star'; - declare export { - default as StarOutlined, - } from '@material-ui/icons/StarOutlined'; - declare export { default as StarRate } from '@material-ui/icons/StarRate'; - declare export { - default as StarRateOutlined, - } from '@material-ui/icons/StarRateOutlined'; - declare export { - default as StarRateRounded, - } from '@material-ui/icons/StarRateRounded'; - declare export { - default as StarRateSharp, - } from '@material-ui/icons/StarRateSharp'; - declare export { - default as StarRateTwoTone, - } from '@material-ui/icons/StarRateTwoTone'; - declare export { - default as StarRounded, - } from '@material-ui/icons/StarRounded'; - declare export { default as StarSharp } from '@material-ui/icons/StarSharp'; - declare export { default as Stars } from '@material-ui/icons/Stars'; - declare export { - default as StarsOutlined, - } from '@material-ui/icons/StarsOutlined'; - declare export { - default as StarsRounded, - } from '@material-ui/icons/StarsRounded'; - declare export { default as StarsSharp } from '@material-ui/icons/StarsSharp'; - declare export { - default as StarsTwoTone, - } from '@material-ui/icons/StarsTwoTone'; - declare export { - default as StarTwoTone, - } from '@material-ui/icons/StarTwoTone'; - declare export { - default as StayCurrentLandscape, - } from '@material-ui/icons/StayCurrentLandscape'; - declare export { - default as StayCurrentLandscapeOutlined, - } from '@material-ui/icons/StayCurrentLandscapeOutlined'; - declare export { - default as StayCurrentLandscapeRounded, - } from '@material-ui/icons/StayCurrentLandscapeRounded'; - declare export { - default as StayCurrentLandscapeSharp, - } from '@material-ui/icons/StayCurrentLandscapeSharp'; - declare export { - default as StayCurrentLandscapeTwoTone, - } from '@material-ui/icons/StayCurrentLandscapeTwoTone'; - declare export { - default as StayCurrentPortrait, - } from '@material-ui/icons/StayCurrentPortrait'; - declare export { - default as StayCurrentPortraitOutlined, - } from '@material-ui/icons/StayCurrentPortraitOutlined'; - declare export { - default as StayCurrentPortraitRounded, - } from '@material-ui/icons/StayCurrentPortraitRounded'; - declare export { - default as StayCurrentPortraitSharp, - } from '@material-ui/icons/StayCurrentPortraitSharp'; - declare export { - default as StayCurrentPortraitTwoTone, - } from '@material-ui/icons/StayCurrentPortraitTwoTone'; - declare export { - default as StayPrimaryLandscape, - } from '@material-ui/icons/StayPrimaryLandscape'; - declare export { - default as StayPrimaryLandscapeOutlined, - } from '@material-ui/icons/StayPrimaryLandscapeOutlined'; - declare export { - default as StayPrimaryLandscapeRounded, - } from '@material-ui/icons/StayPrimaryLandscapeRounded'; - declare export { - default as StayPrimaryLandscapeSharp, - } from '@material-ui/icons/StayPrimaryLandscapeSharp'; - declare export { - default as StayPrimaryLandscapeTwoTone, - } from '@material-ui/icons/StayPrimaryLandscapeTwoTone'; - declare export { - default as StayPrimaryPortrait, - } from '@material-ui/icons/StayPrimaryPortrait'; - declare export { - default as StayPrimaryPortraitOutlined, - } from '@material-ui/icons/StayPrimaryPortraitOutlined'; - declare export { - default as StayPrimaryPortraitRounded, - } from '@material-ui/icons/StayPrimaryPortraitRounded'; - declare export { - default as StayPrimaryPortraitSharp, - } from '@material-ui/icons/StayPrimaryPortraitSharp'; - declare export { - default as StayPrimaryPortraitTwoTone, - } from '@material-ui/icons/StayPrimaryPortraitTwoTone'; - declare export { default as Stop } from '@material-ui/icons/Stop'; - declare export { - default as StopOutlined, - } from '@material-ui/icons/StopOutlined'; - declare export { - default as StopRounded, - } from '@material-ui/icons/StopRounded'; - declare export { - default as StopScreenShare, - } from '@material-ui/icons/StopScreenShare'; - declare export { - default as StopScreenShareOutlined, - } from '@material-ui/icons/StopScreenShareOutlined'; - declare export { - default as StopScreenShareRounded, - } from '@material-ui/icons/StopScreenShareRounded'; - declare export { - default as StopScreenShareSharp, - } from '@material-ui/icons/StopScreenShareSharp'; - declare export { - default as StopScreenShareTwoTone, - } from '@material-ui/icons/StopScreenShareTwoTone'; - declare export { default as StopSharp } from '@material-ui/icons/StopSharp'; - declare export { - default as StopTwoTone, - } from '@material-ui/icons/StopTwoTone'; - declare export { default as Storage } from '@material-ui/icons/Storage'; - declare export { - default as StorageOutlined, - } from '@material-ui/icons/StorageOutlined'; - declare export { - default as StorageRounded, - } from '@material-ui/icons/StorageRounded'; - declare export { - default as StorageSharp, - } from '@material-ui/icons/StorageSharp'; - declare export { - default as StorageTwoTone, - } from '@material-ui/icons/StorageTwoTone'; - declare export { default as Store } from '@material-ui/icons/Store'; - declare export { - default as StoreMallDirectory, - } from '@material-ui/icons/StoreMallDirectory'; - declare export { - default as StoreMallDirectoryOutlined, - } from '@material-ui/icons/StoreMallDirectoryOutlined'; - declare export { - default as StoreMallDirectoryRounded, - } from '@material-ui/icons/StoreMallDirectoryRounded'; - declare export { - default as StoreMallDirectorySharp, - } from '@material-ui/icons/StoreMallDirectorySharp'; - declare export { - default as StoreMallDirectoryTwoTone, - } from '@material-ui/icons/StoreMallDirectoryTwoTone'; - declare export { - default as StoreOutlined, - } from '@material-ui/icons/StoreOutlined'; - declare export { - default as StoreRounded, - } from '@material-ui/icons/StoreRounded'; - declare export { default as StoreSharp } from '@material-ui/icons/StoreSharp'; - declare export { - default as StoreTwoTone, - } from '@material-ui/icons/StoreTwoTone'; - declare export { default as Straighten } from '@material-ui/icons/Straighten'; - declare export { - default as StraightenOutlined, - } from '@material-ui/icons/StraightenOutlined'; - declare export { - default as StraightenRounded, - } from '@material-ui/icons/StraightenRounded'; - declare export { - default as StraightenSharp, - } from '@material-ui/icons/StraightenSharp'; - declare export { - default as StraightenTwoTone, - } from '@material-ui/icons/StraightenTwoTone'; - declare export { default as Streetview } from '@material-ui/icons/Streetview'; - declare export { - default as StreetviewOutlined, - } from '@material-ui/icons/StreetviewOutlined'; - declare export { - default as StreetviewRounded, - } from '@material-ui/icons/StreetviewRounded'; - declare export { - default as StreetviewSharp, - } from '@material-ui/icons/StreetviewSharp'; - declare export { - default as StreetviewTwoTone, - } from '@material-ui/icons/StreetviewTwoTone'; - declare export { - default as StrikethroughS, - } from '@material-ui/icons/StrikethroughS'; - declare export { - default as StrikethroughSOutlined, - } from '@material-ui/icons/StrikethroughSOutlined'; - declare export { - default as StrikethroughSRounded, - } from '@material-ui/icons/StrikethroughSRounded'; - declare export { - default as StrikethroughSSharp, - } from '@material-ui/icons/StrikethroughSSharp'; - declare export { - default as StrikethroughSTwoTone, - } from '@material-ui/icons/StrikethroughSTwoTone'; - declare export { default as Style } from '@material-ui/icons/Style'; - declare export { - default as StyleOutlined, - } from '@material-ui/icons/StyleOutlined'; - declare export { - default as StyleRounded, - } from '@material-ui/icons/StyleRounded'; - declare export { default as StyleSharp } from '@material-ui/icons/StyleSharp'; - declare export { - default as StyleTwoTone, - } from '@material-ui/icons/StyleTwoTone'; - declare export { - default as SubdirectoryArrowLeft, - } from '@material-ui/icons/SubdirectoryArrowLeft'; - declare export { - default as SubdirectoryArrowLeftOutlined, - } from '@material-ui/icons/SubdirectoryArrowLeftOutlined'; - declare export { - default as SubdirectoryArrowLeftRounded, - } from '@material-ui/icons/SubdirectoryArrowLeftRounded'; - declare export { - default as SubdirectoryArrowLeftSharp, - } from '@material-ui/icons/SubdirectoryArrowLeftSharp'; - declare export { - default as SubdirectoryArrowLeftTwoTone, - } from '@material-ui/icons/SubdirectoryArrowLeftTwoTone'; - declare export { - default as SubdirectoryArrowRight, - } from '@material-ui/icons/SubdirectoryArrowRight'; - declare export { - default as SubdirectoryArrowRightOutlined, - } from '@material-ui/icons/SubdirectoryArrowRightOutlined'; - declare export { - default as SubdirectoryArrowRightRounded, - } from '@material-ui/icons/SubdirectoryArrowRightRounded'; - declare export { - default as SubdirectoryArrowRightSharp, - } from '@material-ui/icons/SubdirectoryArrowRightSharp'; - declare export { - default as SubdirectoryArrowRightTwoTone, - } from '@material-ui/icons/SubdirectoryArrowRightTwoTone'; - declare export { default as Subject } from '@material-ui/icons/Subject'; - declare export { - default as SubjectOutlined, - } from '@material-ui/icons/SubjectOutlined'; - declare export { - default as SubjectRounded, - } from '@material-ui/icons/SubjectRounded'; - declare export { - default as SubjectSharp, - } from '@material-ui/icons/SubjectSharp'; - declare export { - default as SubjectTwoTone, - } from '@material-ui/icons/SubjectTwoTone'; - declare export { - default as Subscriptions, - } from '@material-ui/icons/Subscriptions'; - declare export { - default as SubscriptionsOutlined, - } from '@material-ui/icons/SubscriptionsOutlined'; - declare export { - default as SubscriptionsRounded, - } from '@material-ui/icons/SubscriptionsRounded'; - declare export { - default as SubscriptionsSharp, - } from '@material-ui/icons/SubscriptionsSharp'; - declare export { - default as SubscriptionsTwoTone, - } from '@material-ui/icons/SubscriptionsTwoTone'; - declare export { default as Subtitles } from '@material-ui/icons/Subtitles'; - declare export { - default as SubtitlesOutlined, - } from '@material-ui/icons/SubtitlesOutlined'; - declare export { - default as SubtitlesRounded, - } from '@material-ui/icons/SubtitlesRounded'; - declare export { - default as SubtitlesSharp, - } from '@material-ui/icons/SubtitlesSharp'; - declare export { - default as SubtitlesTwoTone, - } from '@material-ui/icons/SubtitlesTwoTone'; - declare export { default as Subway } from '@material-ui/icons/Subway'; - declare export { - default as SubwayOutlined, - } from '@material-ui/icons/SubwayOutlined'; - declare export { - default as SubwayRounded, - } from '@material-ui/icons/SubwayRounded'; - declare export { - default as SubwaySharp, - } from '@material-ui/icons/SubwaySharp'; - declare export { - default as SubwayTwoTone, - } from '@material-ui/icons/SubwayTwoTone'; - declare export { - default as SupervisedUserCircle, - } from '@material-ui/icons/SupervisedUserCircle'; - declare export { - default as SupervisedUserCircleOutlined, - } from '@material-ui/icons/SupervisedUserCircleOutlined'; - declare export { - default as SupervisedUserCircleRounded, - } from '@material-ui/icons/SupervisedUserCircleRounded'; - declare export { - default as SupervisedUserCircleSharp, - } from '@material-ui/icons/SupervisedUserCircleSharp'; - declare export { - default as SupervisedUserCircleTwoTone, - } from '@material-ui/icons/SupervisedUserCircleTwoTone'; - declare export { - default as SupervisorAccount, - } from '@material-ui/icons/SupervisorAccount'; - declare export { - default as SupervisorAccountOutlined, - } from '@material-ui/icons/SupervisorAccountOutlined'; - declare export { - default as SupervisorAccountRounded, - } from '@material-ui/icons/SupervisorAccountRounded'; - declare export { - default as SupervisorAccountSharp, - } from '@material-ui/icons/SupervisorAccountSharp'; - declare export { - default as SupervisorAccountTwoTone, - } from '@material-ui/icons/SupervisorAccountTwoTone'; - declare export { - default as SurroundSound, - } from '@material-ui/icons/SurroundSound'; - declare export { - default as SurroundSoundOutlined, - } from '@material-ui/icons/SurroundSoundOutlined'; - declare export { - default as SurroundSoundRounded, - } from '@material-ui/icons/SurroundSoundRounded'; - declare export { - default as SurroundSoundSharp, - } from '@material-ui/icons/SurroundSoundSharp'; - declare export { - default as SurroundSoundTwoTone, - } from '@material-ui/icons/SurroundSoundTwoTone'; - declare export { default as SwapCalls } from '@material-ui/icons/SwapCalls'; - declare export { - default as SwapCallsOutlined, - } from '@material-ui/icons/SwapCallsOutlined'; - declare export { - default as SwapCallsRounded, - } from '@material-ui/icons/SwapCallsRounded'; - declare export { - default as SwapCallsSharp, - } from '@material-ui/icons/SwapCallsSharp'; - declare export { - default as SwapCallsTwoTone, - } from '@material-ui/icons/SwapCallsTwoTone'; - declare export { default as SwapHoriz } from '@material-ui/icons/SwapHoriz'; - declare export { - default as SwapHorizontalCircle, - } from '@material-ui/icons/SwapHorizontalCircle'; - declare export { - default as SwapHorizontalCircleOutlined, - } from '@material-ui/icons/SwapHorizontalCircleOutlined'; - declare export { - default as SwapHorizontalCircleRounded, - } from '@material-ui/icons/SwapHorizontalCircleRounded'; - declare export { - default as SwapHorizontalCircleSharp, - } from '@material-ui/icons/SwapHorizontalCircleSharp'; - declare export { - default as SwapHorizontalCircleTwoTone, - } from '@material-ui/icons/SwapHorizontalCircleTwoTone'; - declare export { - default as SwapHorizOutlined, - } from '@material-ui/icons/SwapHorizOutlined'; - declare export { - default as SwapHorizRounded, - } from '@material-ui/icons/SwapHorizRounded'; - declare export { - default as SwapHorizSharp, - } from '@material-ui/icons/SwapHorizSharp'; - declare export { - default as SwapHorizTwoTone, - } from '@material-ui/icons/SwapHorizTwoTone'; - declare export { - default as SwapVerticalCircle, - } from '@material-ui/icons/SwapVerticalCircle'; - declare export { - default as SwapVerticalCircleOutlined, - } from '@material-ui/icons/SwapVerticalCircleOutlined'; - declare export { - default as SwapVerticalCircleRounded, - } from '@material-ui/icons/SwapVerticalCircleRounded'; - declare export { - default as SwapVerticalCircleSharp, - } from '@material-ui/icons/SwapVerticalCircleSharp'; - declare export { - default as SwapVerticalCircleTwoTone, - } from '@material-ui/icons/SwapVerticalCircleTwoTone'; - declare export { default as SwapVert } from '@material-ui/icons/SwapVert'; - declare export { - default as SwapVertOutlined, - } from '@material-ui/icons/SwapVertOutlined'; - declare export { - default as SwapVertRounded, - } from '@material-ui/icons/SwapVertRounded'; - declare export { - default as SwapVertSharp, - } from '@material-ui/icons/SwapVertSharp'; - declare export { - default as SwapVertTwoTone, - } from '@material-ui/icons/SwapVertTwoTone'; - declare export { - default as SwitchCamera, - } from '@material-ui/icons/SwitchCamera'; - declare export { - default as SwitchCameraOutlined, - } from '@material-ui/icons/SwitchCameraOutlined'; - declare export { - default as SwitchCameraRounded, - } from '@material-ui/icons/SwitchCameraRounded'; - declare export { - default as SwitchCameraSharp, - } from '@material-ui/icons/SwitchCameraSharp'; - declare export { - default as SwitchCameraTwoTone, - } from '@material-ui/icons/SwitchCameraTwoTone'; - declare export { - default as SwitchVideo, - } from '@material-ui/icons/SwitchVideo'; - declare export { - default as SwitchVideoOutlined, - } from '@material-ui/icons/SwitchVideoOutlined'; - declare export { - default as SwitchVideoRounded, - } from '@material-ui/icons/SwitchVideoRounded'; - declare export { - default as SwitchVideoSharp, - } from '@material-ui/icons/SwitchVideoSharp'; - declare export { - default as SwitchVideoTwoTone, - } from '@material-ui/icons/SwitchVideoTwoTone'; - declare export { - default as SyncDisabled, - } from '@material-ui/icons/SyncDisabled'; - declare export { - default as SyncDisabledOutlined, - } from '@material-ui/icons/SyncDisabledOutlined'; - declare export { - default as SyncDisabledRounded, - } from '@material-ui/icons/SyncDisabledRounded'; - declare export { - default as SyncDisabledSharp, - } from '@material-ui/icons/SyncDisabledSharp'; - declare export { - default as SyncDisabledTwoTone, - } from '@material-ui/icons/SyncDisabledTwoTone'; - declare export { default as Sync } from '@material-ui/icons/Sync'; - declare export { - default as SyncOutlined, - } from '@material-ui/icons/SyncOutlined'; - declare export { - default as SyncProblem, - } from '@material-ui/icons/SyncProblem'; - declare export { - default as SyncProblemOutlined, - } from '@material-ui/icons/SyncProblemOutlined'; - declare export { - default as SyncProblemRounded, - } from '@material-ui/icons/SyncProblemRounded'; - declare export { - default as SyncProblemSharp, - } from '@material-ui/icons/SyncProblemSharp'; - declare export { - default as SyncProblemTwoTone, - } from '@material-ui/icons/SyncProblemTwoTone'; - declare export { - default as SyncRounded, - } from '@material-ui/icons/SyncRounded'; - declare export { default as SyncSharp } from '@material-ui/icons/SyncSharp'; - declare export { - default as SyncTwoTone, - } from '@material-ui/icons/SyncTwoTone'; - declare export { - default as SystemUpdate, - } from '@material-ui/icons/SystemUpdate'; - declare export { - default as SystemUpdateOutlined, - } from '@material-ui/icons/SystemUpdateOutlined'; - declare export { - default as SystemUpdateRounded, - } from '@material-ui/icons/SystemUpdateRounded'; - declare export { - default as SystemUpdateSharp, - } from '@material-ui/icons/SystemUpdateSharp'; - declare export { - default as SystemUpdateTwoTone, - } from '@material-ui/icons/SystemUpdateTwoTone'; - declare export { default as Tab } from '@material-ui/icons/Tab'; - declare export { default as TableChart } from '@material-ui/icons/TableChart'; - declare export { - default as TableChartOutlined, - } from '@material-ui/icons/TableChartOutlined'; - declare export { - default as TableChartRounded, - } from '@material-ui/icons/TableChartRounded'; - declare export { - default as TableChartSharp, - } from '@material-ui/icons/TableChartSharp'; - declare export { - default as TableChartTwoTone, - } from '@material-ui/icons/TableChartTwoTone'; - declare export { - default as TabletAndroid, - } from '@material-ui/icons/TabletAndroid'; - declare export { - default as TabletAndroidOutlined, - } from '@material-ui/icons/TabletAndroidOutlined'; - declare export { - default as TabletAndroidRounded, - } from '@material-ui/icons/TabletAndroidRounded'; - declare export { - default as TabletAndroidSharp, - } from '@material-ui/icons/TabletAndroidSharp'; - declare export { - default as TabletAndroidTwoTone, - } from '@material-ui/icons/TabletAndroidTwoTone'; - declare export { default as Tablet } from '@material-ui/icons/Tablet'; - declare export { default as TabletMac } from '@material-ui/icons/TabletMac'; - declare export { - default as TabletMacOutlined, - } from '@material-ui/icons/TabletMacOutlined'; - declare export { - default as TabletMacRounded, - } from '@material-ui/icons/TabletMacRounded'; - declare export { - default as TabletMacSharp, - } from '@material-ui/icons/TabletMacSharp'; - declare export { - default as TabletMacTwoTone, - } from '@material-ui/icons/TabletMacTwoTone'; - declare export { - default as TabletOutlined, - } from '@material-ui/icons/TabletOutlined'; - declare export { - default as TabletRounded, - } from '@material-ui/icons/TabletRounded'; - declare export { - default as TabletSharp, - } from '@material-ui/icons/TabletSharp'; - declare export { - default as TabletTwoTone, - } from '@material-ui/icons/TabletTwoTone'; - declare export { - default as TabOutlined, - } from '@material-ui/icons/TabOutlined'; - declare export { default as TabRounded } from '@material-ui/icons/TabRounded'; - declare export { default as TabSharp } from '@material-ui/icons/TabSharp'; - declare export { default as TabTwoTone } from '@material-ui/icons/TabTwoTone'; - declare export { - default as TabUnselected, - } from '@material-ui/icons/TabUnselected'; - declare export { - default as TabUnselectedOutlined, - } from '@material-ui/icons/TabUnselectedOutlined'; - declare export { - default as TabUnselectedRounded, - } from '@material-ui/icons/TabUnselectedRounded'; - declare export { - default as TabUnselectedSharp, - } from '@material-ui/icons/TabUnselectedSharp'; - declare export { - default as TabUnselectedTwoTone, - } from '@material-ui/icons/TabUnselectedTwoTone'; - declare export { default as TagFaces } from '@material-ui/icons/TagFaces'; - declare export { - default as TagFacesOutlined, - } from '@material-ui/icons/TagFacesOutlined'; - declare export { - default as TagFacesRounded, - } from '@material-ui/icons/TagFacesRounded'; - declare export { - default as TagFacesSharp, - } from '@material-ui/icons/TagFacesSharp'; - declare export { - default as TagFacesTwoTone, - } from '@material-ui/icons/TagFacesTwoTone'; - declare export { default as TapAndPlay } from '@material-ui/icons/TapAndPlay'; - declare export { - default as TapAndPlayOutlined, - } from '@material-ui/icons/TapAndPlayOutlined'; - declare export { - default as TapAndPlayRounded, - } from '@material-ui/icons/TapAndPlayRounded'; - declare export { - default as TapAndPlaySharp, - } from '@material-ui/icons/TapAndPlaySharp'; - declare export { - default as TapAndPlayTwoTone, - } from '@material-ui/icons/TapAndPlayTwoTone'; - declare export { default as Terrain } from '@material-ui/icons/Terrain'; - declare export { - default as TerrainOutlined, - } from '@material-ui/icons/TerrainOutlined'; - declare export { - default as TerrainRounded, - } from '@material-ui/icons/TerrainRounded'; - declare export { - default as TerrainSharp, - } from '@material-ui/icons/TerrainSharp'; - declare export { - default as TerrainTwoTone, - } from '@material-ui/icons/TerrainTwoTone'; - declare export { default as TextFields } from '@material-ui/icons/TextFields'; - declare export { - default as TextFieldsOutlined, - } from '@material-ui/icons/TextFieldsOutlined'; - declare export { - default as TextFieldsRounded, - } from '@material-ui/icons/TextFieldsRounded'; - declare export { - default as TextFieldsSharp, - } from '@material-ui/icons/TextFieldsSharp'; - declare export { - default as TextFieldsTwoTone, - } from '@material-ui/icons/TextFieldsTwoTone'; - declare export { default as TextFormat } from '@material-ui/icons/TextFormat'; - declare export { - default as TextFormatOutlined, - } from '@material-ui/icons/TextFormatOutlined'; - declare export { - default as TextFormatRounded, - } from '@material-ui/icons/TextFormatRounded'; - declare export { - default as TextFormatSharp, - } from '@material-ui/icons/TextFormatSharp'; - declare export { - default as TextFormatTwoTone, - } from '@material-ui/icons/TextFormatTwoTone'; - declare export { - default as TextRotateUp, - } from '@material-ui/icons/TextRotateUp'; - declare export { - default as TextRotateUpOutlined, - } from '@material-ui/icons/TextRotateUpOutlined'; - declare export { - default as TextRotateUpRounded, - } from '@material-ui/icons/TextRotateUpRounded'; - declare export { - default as TextRotateUpSharp, - } from '@material-ui/icons/TextRotateUpSharp'; - declare export { - default as TextRotateUpTwoTone, - } from '@material-ui/icons/TextRotateUpTwoTone'; - declare export { - default as TextRotateVertical, - } from '@material-ui/icons/TextRotateVertical'; - declare export { - default as TextRotateVerticalOutlined, - } from '@material-ui/icons/TextRotateVerticalOutlined'; - declare export { - default as TextRotateVerticalRounded, - } from '@material-ui/icons/TextRotateVerticalRounded'; - declare export { - default as TextRotateVerticalSharp, - } from '@material-ui/icons/TextRotateVerticalSharp'; - declare export { - default as TextRotateVerticalTwoTone, - } from '@material-ui/icons/TextRotateVerticalTwoTone'; - declare export { - default as TextRotationDown, - } from '@material-ui/icons/TextRotationDown'; - declare export { - default as TextRotationDownOutlined, - } from '@material-ui/icons/TextRotationDownOutlined'; - declare export { - default as TextRotationDownRounded, - } from '@material-ui/icons/TextRotationDownRounded'; - declare export { - default as TextRotationDownSharp, - } from '@material-ui/icons/TextRotationDownSharp'; - declare export { - default as TextRotationDownTwoTone, - } from '@material-ui/icons/TextRotationDownTwoTone'; - declare export { - default as TextRotationNone, - } from '@material-ui/icons/TextRotationNone'; - declare export { - default as TextRotationNoneOutlined, - } from '@material-ui/icons/TextRotationNoneOutlined'; - declare export { - default as TextRotationNoneRounded, - } from '@material-ui/icons/TextRotationNoneRounded'; - declare export { - default as TextRotationNoneSharp, - } from '@material-ui/icons/TextRotationNoneSharp'; - declare export { - default as TextRotationNoneTwoTone, - } from '@material-ui/icons/TextRotationNoneTwoTone'; - declare export { default as Textsms } from '@material-ui/icons/Textsms'; - declare export { - default as TextsmsOutlined, - } from '@material-ui/icons/TextsmsOutlined'; - declare export { - default as TextsmsRounded, - } from '@material-ui/icons/TextsmsRounded'; - declare export { - default as TextsmsSharp, - } from '@material-ui/icons/TextsmsSharp'; - declare export { - default as TextsmsTwoTone, - } from '@material-ui/icons/TextsmsTwoTone'; - declare export { default as Texture } from '@material-ui/icons/Texture'; - declare export { - default as TextureOutlined, - } from '@material-ui/icons/TextureOutlined'; - declare export { - default as TextureRounded, - } from '@material-ui/icons/TextureRounded'; - declare export { - default as TextureSharp, - } from '@material-ui/icons/TextureSharp'; - declare export { - default as TextureTwoTone, - } from '@material-ui/icons/TextureTwoTone'; - declare export { default as Theaters } from '@material-ui/icons/Theaters'; - declare export { - default as TheatersOutlined, - } from '@material-ui/icons/TheatersOutlined'; - declare export { - default as TheatersRounded, - } from '@material-ui/icons/TheatersRounded'; - declare export { - default as TheatersSharp, - } from '@material-ui/icons/TheatersSharp'; - declare export { - default as TheatersTwoTone, - } from '@material-ui/icons/TheatersTwoTone'; - declare export { - default as ThreeDRotation, - } from '@material-ui/icons/ThreeDRotation'; - declare export { - default as ThreeDRotationOutlined, - } from '@material-ui/icons/ThreeDRotationOutlined'; - declare export { - default as ThreeDRotationRounded, - } from '@material-ui/icons/ThreeDRotationRounded'; - declare export { - default as ThreeDRotationSharp, - } from '@material-ui/icons/ThreeDRotationSharp'; - declare export { - default as ThreeDRotationTwoTone, - } from '@material-ui/icons/ThreeDRotationTwoTone'; - declare export { default as ThreeSixty } from '@material-ui/icons/ThreeSixty'; - declare export { - default as ThreeSixtyOutlined, - } from '@material-ui/icons/ThreeSixtyOutlined'; - declare export { - default as ThreeSixtyRounded, - } from '@material-ui/icons/ThreeSixtyRounded'; - declare export { - default as ThreeSixtySharp, - } from '@material-ui/icons/ThreeSixtySharp'; - declare export { - default as ThreeSixtyTwoTone, - } from '@material-ui/icons/ThreeSixtyTwoTone'; - declare export { - default as ThumbDownAlt, - } from '@material-ui/icons/ThumbDownAlt'; - declare export { - default as ThumbDownAltOutlined, - } from '@material-ui/icons/ThumbDownAltOutlined'; - declare export { - default as ThumbDownAltRounded, - } from '@material-ui/icons/ThumbDownAltRounded'; - declare export { - default as ThumbDownAltSharp, - } from '@material-ui/icons/ThumbDownAltSharp'; - declare export { - default as ThumbDownAltTwoTone, - } from '@material-ui/icons/ThumbDownAltTwoTone'; - declare export { default as ThumbDown } from '@material-ui/icons/ThumbDown'; - declare export { - default as ThumbDownOutlined, - } from '@material-ui/icons/ThumbDownOutlined'; - declare export { - default as ThumbDownRounded, - } from '@material-ui/icons/ThumbDownRounded'; - declare export { - default as ThumbDownSharp, - } from '@material-ui/icons/ThumbDownSharp'; - declare export { - default as ThumbDownTwoTone, - } from '@material-ui/icons/ThumbDownTwoTone'; - declare export { - default as ThumbsUpDown, - } from '@material-ui/icons/ThumbsUpDown'; - declare export { - default as ThumbsUpDownOutlined, - } from '@material-ui/icons/ThumbsUpDownOutlined'; - declare export { - default as ThumbsUpDownRounded, - } from '@material-ui/icons/ThumbsUpDownRounded'; - declare export { - default as ThumbsUpDownSharp, - } from '@material-ui/icons/ThumbsUpDownSharp'; - declare export { - default as ThumbsUpDownTwoTone, - } from '@material-ui/icons/ThumbsUpDownTwoTone'; - declare export { default as ThumbUpAlt } from '@material-ui/icons/ThumbUpAlt'; - declare export { - default as ThumbUpAltOutlined, - } from '@material-ui/icons/ThumbUpAltOutlined'; - declare export { - default as ThumbUpAltRounded, - } from '@material-ui/icons/ThumbUpAltRounded'; - declare export { - default as ThumbUpAltSharp, - } from '@material-ui/icons/ThumbUpAltSharp'; - declare export { - default as ThumbUpAltTwoTone, - } from '@material-ui/icons/ThumbUpAltTwoTone'; - declare export { default as ThumbUp } from '@material-ui/icons/ThumbUp'; - declare export { - default as ThumbUpOutlined, - } from '@material-ui/icons/ThumbUpOutlined'; - declare export { - default as ThumbUpRounded, - } from '@material-ui/icons/ThumbUpRounded'; - declare export { - default as ThumbUpSharp, - } from '@material-ui/icons/ThumbUpSharp'; - declare export { - default as ThumbUpTwoTone, - } from '@material-ui/icons/ThumbUpTwoTone'; - declare export { default as Timelapse } from '@material-ui/icons/Timelapse'; - declare export { - default as TimelapseOutlined, - } from '@material-ui/icons/TimelapseOutlined'; - declare export { - default as TimelapseRounded, - } from '@material-ui/icons/TimelapseRounded'; - declare export { - default as TimelapseSharp, - } from '@material-ui/icons/TimelapseSharp'; - declare export { - default as TimelapseTwoTone, - } from '@material-ui/icons/TimelapseTwoTone'; - declare export { default as Timeline } from '@material-ui/icons/Timeline'; - declare export { - default as TimelineOutlined, - } from '@material-ui/icons/TimelineOutlined'; - declare export { - default as TimelineRounded, - } from '@material-ui/icons/TimelineRounded'; - declare export { - default as TimelineSharp, - } from '@material-ui/icons/TimelineSharp'; - declare export { - default as TimelineTwoTone, - } from '@material-ui/icons/TimelineTwoTone'; - declare export { default as Timer10 } from '@material-ui/icons/Timer10'; - declare export { - default as Timer10Outlined, - } from '@material-ui/icons/Timer10Outlined'; - declare export { - default as Timer10Rounded, - } from '@material-ui/icons/Timer10Rounded'; - declare export { - default as Timer10Sharp, - } from '@material-ui/icons/Timer10Sharp'; - declare export { - default as Timer10TwoTone, - } from '@material-ui/icons/Timer10TwoTone'; - declare export { default as Timer3 } from '@material-ui/icons/Timer3'; - declare export { - default as Timer3Outlined, - } from '@material-ui/icons/Timer3Outlined'; - declare export { - default as Timer3Rounded, - } from '@material-ui/icons/Timer3Rounded'; - declare export { - default as Timer3Sharp, - } from '@material-ui/icons/Timer3Sharp'; - declare export { - default as Timer3TwoTone, - } from '@material-ui/icons/Timer3TwoTone'; - declare export { default as Timer } from '@material-ui/icons/Timer'; - declare export { default as TimerOff } from '@material-ui/icons/TimerOff'; - declare export { - default as TimerOffOutlined, - } from '@material-ui/icons/TimerOffOutlined'; - declare export { - default as TimerOffRounded, - } from '@material-ui/icons/TimerOffRounded'; - declare export { - default as TimerOffSharp, - } from '@material-ui/icons/TimerOffSharp'; - declare export { - default as TimerOffTwoTone, - } from '@material-ui/icons/TimerOffTwoTone'; - declare export { - default as TimerOutlined, - } from '@material-ui/icons/TimerOutlined'; - declare export { - default as TimerRounded, - } from '@material-ui/icons/TimerRounded'; - declare export { default as TimerSharp } from '@material-ui/icons/TimerSharp'; - declare export { - default as TimerTwoTone, - } from '@material-ui/icons/TimerTwoTone'; - declare export { - default as TimeToLeave, - } from '@material-ui/icons/TimeToLeave'; - declare export { - default as TimeToLeaveOutlined, - } from '@material-ui/icons/TimeToLeaveOutlined'; - declare export { - default as TimeToLeaveRounded, - } from '@material-ui/icons/TimeToLeaveRounded'; - declare export { - default as TimeToLeaveSharp, - } from '@material-ui/icons/TimeToLeaveSharp'; - declare export { - default as TimeToLeaveTwoTone, - } from '@material-ui/icons/TimeToLeaveTwoTone'; - declare export { default as Title } from '@material-ui/icons/Title'; - declare export { - default as TitleOutlined, - } from '@material-ui/icons/TitleOutlined'; - declare export { - default as TitleRounded, - } from '@material-ui/icons/TitleRounded'; - declare export { default as TitleSharp } from '@material-ui/icons/TitleSharp'; - declare export { - default as TitleTwoTone, - } from '@material-ui/icons/TitleTwoTone'; - declare export { default as Toc } from '@material-ui/icons/Toc'; - declare export { - default as TocOutlined, - } from '@material-ui/icons/TocOutlined'; - declare export { default as TocRounded } from '@material-ui/icons/TocRounded'; - declare export { default as TocSharp } from '@material-ui/icons/TocSharp'; - declare export { default as TocTwoTone } from '@material-ui/icons/TocTwoTone'; - declare export { default as Today } from '@material-ui/icons/Today'; - declare export { - default as TodayOutlined, - } from '@material-ui/icons/TodayOutlined'; - declare export { - default as TodayRounded, - } from '@material-ui/icons/TodayRounded'; - declare export { default as TodaySharp } from '@material-ui/icons/TodaySharp'; - declare export { - default as TodayTwoTone, - } from '@material-ui/icons/TodayTwoTone'; - declare export { default as ToggleOff } from '@material-ui/icons/ToggleOff'; - declare export { - default as ToggleOffOutlined, - } from '@material-ui/icons/ToggleOffOutlined'; - declare export { - default as ToggleOffRounded, - } from '@material-ui/icons/ToggleOffRounded'; - declare export { - default as ToggleOffSharp, - } from '@material-ui/icons/ToggleOffSharp'; - declare export { - default as ToggleOffTwoTone, - } from '@material-ui/icons/ToggleOffTwoTone'; - declare export { default as ToggleOn } from '@material-ui/icons/ToggleOn'; - declare export { - default as ToggleOnOutlined, - } from '@material-ui/icons/ToggleOnOutlined'; - declare export { - default as ToggleOnRounded, - } from '@material-ui/icons/ToggleOnRounded'; - declare export { - default as ToggleOnSharp, - } from '@material-ui/icons/ToggleOnSharp'; - declare export { - default as ToggleOnTwoTone, - } from '@material-ui/icons/ToggleOnTwoTone'; - declare export { default as Toll } from '@material-ui/icons/Toll'; - declare export { - default as TollOutlined, - } from '@material-ui/icons/TollOutlined'; - declare export { - default as TollRounded, - } from '@material-ui/icons/TollRounded'; - declare export { default as TollSharp } from '@material-ui/icons/TollSharp'; - declare export { - default as TollTwoTone, - } from '@material-ui/icons/TollTwoTone'; - declare export { default as Tonality } from '@material-ui/icons/Tonality'; - declare export { - default as TonalityOutlined, - } from '@material-ui/icons/TonalityOutlined'; - declare export { - default as TonalityRounded, - } from '@material-ui/icons/TonalityRounded'; - declare export { - default as TonalitySharp, - } from '@material-ui/icons/TonalitySharp'; - declare export { - default as TonalityTwoTone, - } from '@material-ui/icons/TonalityTwoTone'; - declare export { default as TouchApp } from '@material-ui/icons/TouchApp'; - declare export { - default as TouchAppOutlined, - } from '@material-ui/icons/TouchAppOutlined'; - declare export { - default as TouchAppRounded, - } from '@material-ui/icons/TouchAppRounded'; - declare export { - default as TouchAppSharp, - } from '@material-ui/icons/TouchAppSharp'; - declare export { - default as TouchAppTwoTone, - } from '@material-ui/icons/TouchAppTwoTone'; - declare export { default as Toys } from '@material-ui/icons/Toys'; - declare export { - default as ToysOutlined, - } from '@material-ui/icons/ToysOutlined'; - declare export { - default as ToysRounded, - } from '@material-ui/icons/ToysRounded'; - declare export { default as ToysSharp } from '@material-ui/icons/ToysSharp'; - declare export { - default as ToysTwoTone, - } from '@material-ui/icons/ToysTwoTone'; - declare export { - default as TrackChanges, - } from '@material-ui/icons/TrackChanges'; - declare export { - default as TrackChangesOutlined, - } from '@material-ui/icons/TrackChangesOutlined'; - declare export { - default as TrackChangesRounded, - } from '@material-ui/icons/TrackChangesRounded'; - declare export { - default as TrackChangesSharp, - } from '@material-ui/icons/TrackChangesSharp'; - declare export { - default as TrackChangesTwoTone, - } from '@material-ui/icons/TrackChangesTwoTone'; - declare export { default as Traffic } from '@material-ui/icons/Traffic'; - declare export { - default as TrafficOutlined, - } from '@material-ui/icons/TrafficOutlined'; - declare export { - default as TrafficRounded, - } from '@material-ui/icons/TrafficRounded'; - declare export { - default as TrafficSharp, - } from '@material-ui/icons/TrafficSharp'; - declare export { - default as TrafficTwoTone, - } from '@material-ui/icons/TrafficTwoTone'; - declare export { default as Train } from '@material-ui/icons/Train'; - declare export { - default as TrainOutlined, - } from '@material-ui/icons/TrainOutlined'; - declare export { - default as TrainRounded, - } from '@material-ui/icons/TrainRounded'; - declare export { default as TrainSharp } from '@material-ui/icons/TrainSharp'; - declare export { - default as TrainTwoTone, - } from '@material-ui/icons/TrainTwoTone'; - declare export { default as Tram } from '@material-ui/icons/Tram'; - declare export { - default as TramOutlined, - } from '@material-ui/icons/TramOutlined'; - declare export { - default as TramRounded, - } from '@material-ui/icons/TramRounded'; - declare export { default as TramSharp } from '@material-ui/icons/TramSharp'; - declare export { - default as TramTwoTone, - } from '@material-ui/icons/TramTwoTone'; - declare export { - default as TransferWithinAStation, - } from '@material-ui/icons/TransferWithinAStation'; - declare export { - default as TransferWithinAStationOutlined, - } from '@material-ui/icons/TransferWithinAStationOutlined'; - declare export { - default as TransferWithinAStationRounded, - } from '@material-ui/icons/TransferWithinAStationRounded'; - declare export { - default as TransferWithinAStationSharp, - } from '@material-ui/icons/TransferWithinAStationSharp'; - declare export { - default as TransferWithinAStationTwoTone, - } from '@material-ui/icons/TransferWithinAStationTwoTone'; - declare export { default as Transform } from '@material-ui/icons/Transform'; - declare export { - default as TransformOutlined, - } from '@material-ui/icons/TransformOutlined'; - declare export { - default as TransformRounded, - } from '@material-ui/icons/TransformRounded'; - declare export { - default as TransformSharp, - } from '@material-ui/icons/TransformSharp'; - declare export { - default as TransformTwoTone, - } from '@material-ui/icons/TransformTwoTone'; - declare export { - default as TransitEnterexit, - } from '@material-ui/icons/TransitEnterexit'; - declare export { - default as TransitEnterexitOutlined, - } from '@material-ui/icons/TransitEnterexitOutlined'; - declare export { - default as TransitEnterexitRounded, - } from '@material-ui/icons/TransitEnterexitRounded'; - declare export { - default as TransitEnterexitSharp, - } from '@material-ui/icons/TransitEnterexitSharp'; - declare export { - default as TransitEnterexitTwoTone, - } from '@material-ui/icons/TransitEnterexitTwoTone'; - declare export { default as Translate } from '@material-ui/icons/Translate'; - declare export { - default as TranslateOutlined, - } from '@material-ui/icons/TranslateOutlined'; - declare export { - default as TranslateRounded, - } from '@material-ui/icons/TranslateRounded'; - declare export { - default as TranslateSharp, - } from '@material-ui/icons/TranslateSharp'; - declare export { - default as TranslateTwoTone, - } from '@material-ui/icons/TranslateTwoTone'; - declare export { - default as TrendingDown, - } from '@material-ui/icons/TrendingDown'; - declare export { - default as TrendingDownOutlined, - } from '@material-ui/icons/TrendingDownOutlined'; - declare export { - default as TrendingDownRounded, - } from '@material-ui/icons/TrendingDownRounded'; - declare export { - default as TrendingDownSharp, - } from '@material-ui/icons/TrendingDownSharp'; - declare export { - default as TrendingDownTwoTone, - } from '@material-ui/icons/TrendingDownTwoTone'; - declare export { - default as TrendingFlat, - } from '@material-ui/icons/TrendingFlat'; - declare export { - default as TrendingFlatOutlined, - } from '@material-ui/icons/TrendingFlatOutlined'; - declare export { - default as TrendingFlatRounded, - } from '@material-ui/icons/TrendingFlatRounded'; - declare export { - default as TrendingFlatSharp, - } from '@material-ui/icons/TrendingFlatSharp'; - declare export { - default as TrendingFlatTwoTone, - } from '@material-ui/icons/TrendingFlatTwoTone'; - declare export { default as TrendingUp } from '@material-ui/icons/TrendingUp'; - declare export { - default as TrendingUpOutlined, - } from '@material-ui/icons/TrendingUpOutlined'; - declare export { - default as TrendingUpRounded, - } from '@material-ui/icons/TrendingUpRounded'; - declare export { - default as TrendingUpSharp, - } from '@material-ui/icons/TrendingUpSharp'; - declare export { - default as TrendingUpTwoTone, - } from '@material-ui/icons/TrendingUpTwoTone'; - declare export { default as TripOrigin } from '@material-ui/icons/TripOrigin'; - declare export { - default as TripOriginOutlined, - } from '@material-ui/icons/TripOriginOutlined'; - declare export { - default as TripOriginRounded, - } from '@material-ui/icons/TripOriginRounded'; - declare export { - default as TripOriginSharp, - } from '@material-ui/icons/TripOriginSharp'; - declare export { - default as TripOriginTwoTone, - } from '@material-ui/icons/TripOriginTwoTone'; - declare export { default as Tune } from '@material-ui/icons/Tune'; - declare export { - default as TuneOutlined, - } from '@material-ui/icons/TuneOutlined'; - declare export { - default as TuneRounded, - } from '@material-ui/icons/TuneRounded'; - declare export { default as TuneSharp } from '@material-ui/icons/TuneSharp'; - declare export { - default as TuneTwoTone, - } from '@material-ui/icons/TuneTwoTone'; - declare export { default as TurnedIn } from '@material-ui/icons/TurnedIn'; - declare export { - default as TurnedInNot, - } from '@material-ui/icons/TurnedInNot'; - declare export { - default as TurnedInNotOutlined, - } from '@material-ui/icons/TurnedInNotOutlined'; - declare export { - default as TurnedInNotRounded, - } from '@material-ui/icons/TurnedInNotRounded'; - declare export { - default as TurnedInNotSharp, - } from '@material-ui/icons/TurnedInNotSharp'; - declare export { - default as TurnedInNotTwoTone, - } from '@material-ui/icons/TurnedInNotTwoTone'; - declare export { - default as TurnedInOutlined, - } from '@material-ui/icons/TurnedInOutlined'; - declare export { - default as TurnedInRounded, - } from '@material-ui/icons/TurnedInRounded'; - declare export { - default as TurnedInSharp, - } from '@material-ui/icons/TurnedInSharp'; - declare export { - default as TurnedInTwoTone, - } from '@material-ui/icons/TurnedInTwoTone'; - declare export { default as Tv } from '@material-ui/icons/Tv'; - declare export { default as TvOff } from '@material-ui/icons/TvOff'; - declare export { - default as TvOffOutlined, - } from '@material-ui/icons/TvOffOutlined'; - declare export { - default as TvOffRounded, - } from '@material-ui/icons/TvOffRounded'; - declare export { default as TvOffSharp } from '@material-ui/icons/TvOffSharp'; - declare export { - default as TvOffTwoTone, - } from '@material-ui/icons/TvOffTwoTone'; - declare export { default as TvOutlined } from '@material-ui/icons/TvOutlined'; - declare export { default as TvRounded } from '@material-ui/icons/TvRounded'; - declare export { default as TvSharp } from '@material-ui/icons/TvSharp'; - declare export { default as TvTwoTone } from '@material-ui/icons/TvTwoTone'; - declare export { default as Unarchive } from '@material-ui/icons/Unarchive'; - declare export { - default as UnarchiveOutlined, - } from '@material-ui/icons/UnarchiveOutlined'; - declare export { - default as UnarchiveRounded, - } from '@material-ui/icons/UnarchiveRounded'; - declare export { - default as UnarchiveSharp, - } from '@material-ui/icons/UnarchiveSharp'; - declare export { - default as UnarchiveTwoTone, - } from '@material-ui/icons/UnarchiveTwoTone'; - declare export { default as Undo } from '@material-ui/icons/Undo'; - declare export { - default as UndoOutlined, - } from '@material-ui/icons/UndoOutlined'; - declare export { - default as UndoRounded, - } from '@material-ui/icons/UndoRounded'; - declare export { default as UndoSharp } from '@material-ui/icons/UndoSharp'; - declare export { - default as UndoTwoTone, - } from '@material-ui/icons/UndoTwoTone'; - declare export { default as UnfoldLess } from '@material-ui/icons/UnfoldLess'; - declare export { - default as UnfoldLessOutlined, - } from '@material-ui/icons/UnfoldLessOutlined'; - declare export { - default as UnfoldLessRounded, - } from '@material-ui/icons/UnfoldLessRounded'; - declare export { - default as UnfoldLessSharp, - } from '@material-ui/icons/UnfoldLessSharp'; - declare export { - default as UnfoldLessTwoTone, - } from '@material-ui/icons/UnfoldLessTwoTone'; - declare export { default as UnfoldMore } from '@material-ui/icons/UnfoldMore'; - declare export { - default as UnfoldMoreOutlined, - } from '@material-ui/icons/UnfoldMoreOutlined'; - declare export { - default as UnfoldMoreRounded, - } from '@material-ui/icons/UnfoldMoreRounded'; - declare export { - default as UnfoldMoreSharp, - } from '@material-ui/icons/UnfoldMoreSharp'; - declare export { - default as UnfoldMoreTwoTone, - } from '@material-ui/icons/UnfoldMoreTwoTone'; - declare export { - default as Unsubscribe, - } from '@material-ui/icons/Unsubscribe'; - declare export { - default as UnsubscribeOutlined, - } from '@material-ui/icons/UnsubscribeOutlined'; - declare export { - default as UnsubscribeRounded, - } from '@material-ui/icons/UnsubscribeRounded'; - declare export { - default as UnsubscribeSharp, - } from '@material-ui/icons/UnsubscribeSharp'; - declare export { - default as UnsubscribeTwoTone, - } from '@material-ui/icons/UnsubscribeTwoTone'; - declare export { default as Update } from '@material-ui/icons/Update'; - declare export { - default as UpdateOutlined, - } from '@material-ui/icons/UpdateOutlined'; - declare export { - default as UpdateRounded, - } from '@material-ui/icons/UpdateRounded'; - declare export { - default as UpdateSharp, - } from '@material-ui/icons/UpdateSharp'; - declare export { - default as UpdateTwoTone, - } from '@material-ui/icons/UpdateTwoTone'; - declare export { default as Usb } from '@material-ui/icons/Usb'; - declare export { - default as UsbOutlined, - } from '@material-ui/icons/UsbOutlined'; - declare export { default as UsbRounded } from '@material-ui/icons/UsbRounded'; - declare export { default as UsbSharp } from '@material-ui/icons/UsbSharp'; - declare export { default as UsbTwoTone } from '@material-ui/icons/UsbTwoTone'; - declare export { - default as VerifiedUser, - } from '@material-ui/icons/VerifiedUser'; - declare export { - default as VerifiedUserOutlined, - } from '@material-ui/icons/VerifiedUserOutlined'; - declare export { - default as VerifiedUserRounded, - } from '@material-ui/icons/VerifiedUserRounded'; - declare export { - default as VerifiedUserSharp, - } from '@material-ui/icons/VerifiedUserSharp'; - declare export { - default as VerifiedUserTwoTone, - } from '@material-ui/icons/VerifiedUserTwoTone'; - declare export { - default as VerticalAlignBottom, - } from '@material-ui/icons/VerticalAlignBottom'; - declare export { - default as VerticalAlignBottomOutlined, - } from '@material-ui/icons/VerticalAlignBottomOutlined'; - declare export { - default as VerticalAlignBottomRounded, - } from '@material-ui/icons/VerticalAlignBottomRounded'; - declare export { - default as VerticalAlignBottomSharp, - } from '@material-ui/icons/VerticalAlignBottomSharp'; - declare export { - default as VerticalAlignBottomTwoTone, - } from '@material-ui/icons/VerticalAlignBottomTwoTone'; - declare export { - default as VerticalAlignCenter, - } from '@material-ui/icons/VerticalAlignCenter'; - declare export { - default as VerticalAlignCenterOutlined, - } from '@material-ui/icons/VerticalAlignCenterOutlined'; - declare export { - default as VerticalAlignCenterRounded, - } from '@material-ui/icons/VerticalAlignCenterRounded'; - declare export { - default as VerticalAlignCenterSharp, - } from '@material-ui/icons/VerticalAlignCenterSharp'; - declare export { - default as VerticalAlignCenterTwoTone, - } from '@material-ui/icons/VerticalAlignCenterTwoTone'; - declare export { - default as VerticalAlignTop, - } from '@material-ui/icons/VerticalAlignTop'; - declare export { - default as VerticalAlignTopOutlined, - } from '@material-ui/icons/VerticalAlignTopOutlined'; - declare export { - default as VerticalAlignTopRounded, - } from '@material-ui/icons/VerticalAlignTopRounded'; - declare export { - default as VerticalAlignTopSharp, - } from '@material-ui/icons/VerticalAlignTopSharp'; - declare export { - default as VerticalAlignTopTwoTone, - } from '@material-ui/icons/VerticalAlignTopTwoTone'; - declare export { - default as VerticalSplit, - } from '@material-ui/icons/VerticalSplit'; - declare export { - default as VerticalSplitOutlined, - } from '@material-ui/icons/VerticalSplitOutlined'; - declare export { - default as VerticalSplitRounded, - } from '@material-ui/icons/VerticalSplitRounded'; - declare export { - default as VerticalSplitSharp, - } from '@material-ui/icons/VerticalSplitSharp'; - declare export { - default as VerticalSplitTwoTone, - } from '@material-ui/icons/VerticalSplitTwoTone'; - declare export { default as Vibration } from '@material-ui/icons/Vibration'; - declare export { - default as VibrationOutlined, - } from '@material-ui/icons/VibrationOutlined'; - declare export { - default as VibrationRounded, - } from '@material-ui/icons/VibrationRounded'; - declare export { - default as VibrationSharp, - } from '@material-ui/icons/VibrationSharp'; - declare export { - default as VibrationTwoTone, - } from '@material-ui/icons/VibrationTwoTone'; - declare export { default as VideoCall } from '@material-ui/icons/VideoCall'; - declare export { - default as VideoCallOutlined, - } from '@material-ui/icons/VideoCallOutlined'; - declare export { - default as VideoCallRounded, - } from '@material-ui/icons/VideoCallRounded'; - declare export { - default as VideoCallSharp, - } from '@material-ui/icons/VideoCallSharp'; - declare export { - default as VideoCallTwoTone, - } from '@material-ui/icons/VideoCallTwoTone'; - declare export { default as Videocam } from '@material-ui/icons/Videocam'; - declare export { - default as VideocamOff, - } from '@material-ui/icons/VideocamOff'; - declare export { - default as VideocamOffOutlined, - } from '@material-ui/icons/VideocamOffOutlined'; - declare export { - default as VideocamOffRounded, - } from '@material-ui/icons/VideocamOffRounded'; - declare export { - default as VideocamOffSharp, - } from '@material-ui/icons/VideocamOffSharp'; - declare export { - default as VideocamOffTwoTone, - } from '@material-ui/icons/VideocamOffTwoTone'; - declare export { - default as VideocamOutlined, - } from '@material-ui/icons/VideocamOutlined'; - declare export { - default as VideocamRounded, - } from '@material-ui/icons/VideocamRounded'; - declare export { - default as VideocamSharp, - } from '@material-ui/icons/VideocamSharp'; - declare export { - default as VideocamTwoTone, - } from '@material-ui/icons/VideocamTwoTone'; - declare export { - default as VideogameAsset, - } from '@material-ui/icons/VideogameAsset'; - declare export { - default as VideogameAssetOutlined, - } from '@material-ui/icons/VideogameAssetOutlined'; - declare export { - default as VideogameAssetRounded, - } from '@material-ui/icons/VideogameAssetRounded'; - declare export { - default as VideogameAssetSharp, - } from '@material-ui/icons/VideogameAssetSharp'; - declare export { - default as VideogameAssetTwoTone, - } from '@material-ui/icons/VideogameAssetTwoTone'; - declare export { default as VideoLabel } from '@material-ui/icons/VideoLabel'; - declare export { - default as VideoLabelOutlined, - } from '@material-ui/icons/VideoLabelOutlined'; - declare export { - default as VideoLabelRounded, - } from '@material-ui/icons/VideoLabelRounded'; - declare export { - default as VideoLabelSharp, - } from '@material-ui/icons/VideoLabelSharp'; - declare export { - default as VideoLabelTwoTone, - } from '@material-ui/icons/VideoLabelTwoTone'; - declare export { - default as VideoLibrary, - } from '@material-ui/icons/VideoLibrary'; - declare export { - default as VideoLibraryOutlined, - } from '@material-ui/icons/VideoLibraryOutlined'; - declare export { - default as VideoLibraryRounded, - } from '@material-ui/icons/VideoLibraryRounded'; - declare export { - default as VideoLibrarySharp, - } from '@material-ui/icons/VideoLibrarySharp'; - declare export { - default as VideoLibraryTwoTone, - } from '@material-ui/icons/VideoLibraryTwoTone'; - declare export { default as ViewAgenda } from '@material-ui/icons/ViewAgenda'; - declare export { - default as ViewAgendaOutlined, - } from '@material-ui/icons/ViewAgendaOutlined'; - declare export { - default as ViewAgendaRounded, - } from '@material-ui/icons/ViewAgendaRounded'; - declare export { - default as ViewAgendaSharp, - } from '@material-ui/icons/ViewAgendaSharp'; - declare export { - default as ViewAgendaTwoTone, - } from '@material-ui/icons/ViewAgendaTwoTone'; - declare export { default as ViewArray } from '@material-ui/icons/ViewArray'; - declare export { - default as ViewArrayOutlined, - } from '@material-ui/icons/ViewArrayOutlined'; - declare export { - default as ViewArrayRounded, - } from '@material-ui/icons/ViewArrayRounded'; - declare export { - default as ViewArraySharp, - } from '@material-ui/icons/ViewArraySharp'; - declare export { - default as ViewArrayTwoTone, - } from '@material-ui/icons/ViewArrayTwoTone'; - declare export { - default as ViewCarousel, - } from '@material-ui/icons/ViewCarousel'; - declare export { - default as ViewCarouselOutlined, - } from '@material-ui/icons/ViewCarouselOutlined'; - declare export { - default as ViewCarouselRounded, - } from '@material-ui/icons/ViewCarouselRounded'; - declare export { - default as ViewCarouselSharp, - } from '@material-ui/icons/ViewCarouselSharp'; - declare export { - default as ViewCarouselTwoTone, - } from '@material-ui/icons/ViewCarouselTwoTone'; - declare export { default as ViewColumn } from '@material-ui/icons/ViewColumn'; - declare export { - default as ViewColumnOutlined, - } from '@material-ui/icons/ViewColumnOutlined'; - declare export { - default as ViewColumnRounded, - } from '@material-ui/icons/ViewColumnRounded'; - declare export { - default as ViewColumnSharp, - } from '@material-ui/icons/ViewColumnSharp'; - declare export { - default as ViewColumnTwoTone, - } from '@material-ui/icons/ViewColumnTwoTone'; - declare export { default as ViewComfy } from '@material-ui/icons/ViewComfy'; - declare export { - default as ViewComfyOutlined, - } from '@material-ui/icons/ViewComfyOutlined'; - declare export { - default as ViewComfyRounded, - } from '@material-ui/icons/ViewComfyRounded'; - declare export { - default as ViewComfySharp, - } from '@material-ui/icons/ViewComfySharp'; - declare export { - default as ViewComfyTwoTone, - } from '@material-ui/icons/ViewComfyTwoTone'; - declare export { - default as ViewCompact, - } from '@material-ui/icons/ViewCompact'; - declare export { - default as ViewCompactOutlined, - } from '@material-ui/icons/ViewCompactOutlined'; - declare export { - default as ViewCompactRounded, - } from '@material-ui/icons/ViewCompactRounded'; - declare export { - default as ViewCompactSharp, - } from '@material-ui/icons/ViewCompactSharp'; - declare export { - default as ViewCompactTwoTone, - } from '@material-ui/icons/ViewCompactTwoTone'; - declare export { default as ViewDay } from '@material-ui/icons/ViewDay'; - declare export { - default as ViewDayOutlined, - } from '@material-ui/icons/ViewDayOutlined'; - declare export { - default as ViewDayRounded, - } from '@material-ui/icons/ViewDayRounded'; - declare export { - default as ViewDaySharp, - } from '@material-ui/icons/ViewDaySharp'; - declare export { - default as ViewDayTwoTone, - } from '@material-ui/icons/ViewDayTwoTone'; - declare export { - default as ViewHeadline, - } from '@material-ui/icons/ViewHeadline'; - declare export { - default as ViewHeadlineOutlined, - } from '@material-ui/icons/ViewHeadlineOutlined'; - declare export { - default as ViewHeadlineRounded, - } from '@material-ui/icons/ViewHeadlineRounded'; - declare export { - default as ViewHeadlineSharp, - } from '@material-ui/icons/ViewHeadlineSharp'; - declare export { - default as ViewHeadlineTwoTone, - } from '@material-ui/icons/ViewHeadlineTwoTone'; - declare export { default as ViewList } from '@material-ui/icons/ViewList'; - declare export { - default as ViewListOutlined, - } from '@material-ui/icons/ViewListOutlined'; - declare export { - default as ViewListRounded, - } from '@material-ui/icons/ViewListRounded'; - declare export { - default as ViewListSharp, - } from '@material-ui/icons/ViewListSharp'; - declare export { - default as ViewListTwoTone, - } from '@material-ui/icons/ViewListTwoTone'; - declare export { default as ViewModule } from '@material-ui/icons/ViewModule'; - declare export { - default as ViewModuleOutlined, - } from '@material-ui/icons/ViewModuleOutlined'; - declare export { - default as ViewModuleRounded, - } from '@material-ui/icons/ViewModuleRounded'; - declare export { - default as ViewModuleSharp, - } from '@material-ui/icons/ViewModuleSharp'; - declare export { - default as ViewModuleTwoTone, - } from '@material-ui/icons/ViewModuleTwoTone'; - declare export { default as ViewQuilt } from '@material-ui/icons/ViewQuilt'; - declare export { - default as ViewQuiltOutlined, - } from '@material-ui/icons/ViewQuiltOutlined'; - declare export { - default as ViewQuiltRounded, - } from '@material-ui/icons/ViewQuiltRounded'; - declare export { - default as ViewQuiltSharp, - } from '@material-ui/icons/ViewQuiltSharp'; - declare export { - default as ViewQuiltTwoTone, - } from '@material-ui/icons/ViewQuiltTwoTone'; - declare export { default as ViewStream } from '@material-ui/icons/ViewStream'; - declare export { - default as ViewStreamOutlined, - } from '@material-ui/icons/ViewStreamOutlined'; - declare export { - default as ViewStreamRounded, - } from '@material-ui/icons/ViewStreamRounded'; - declare export { - default as ViewStreamSharp, - } from '@material-ui/icons/ViewStreamSharp'; - declare export { - default as ViewStreamTwoTone, - } from '@material-ui/icons/ViewStreamTwoTone'; - declare export { default as ViewWeek } from '@material-ui/icons/ViewWeek'; - declare export { - default as ViewWeekOutlined, - } from '@material-ui/icons/ViewWeekOutlined'; - declare export { - default as ViewWeekRounded, - } from '@material-ui/icons/ViewWeekRounded'; - declare export { - default as ViewWeekSharp, - } from '@material-ui/icons/ViewWeekSharp'; - declare export { - default as ViewWeekTwoTone, - } from '@material-ui/icons/ViewWeekTwoTone'; - declare export { default as Vignette } from '@material-ui/icons/Vignette'; - declare export { - default as VignetteOutlined, - } from '@material-ui/icons/VignetteOutlined'; - declare export { - default as VignetteRounded, - } from '@material-ui/icons/VignetteRounded'; - declare export { - default as VignetteSharp, - } from '@material-ui/icons/VignetteSharp'; - declare export { - default as VignetteTwoTone, - } from '@material-ui/icons/VignetteTwoTone'; - declare export { default as Visibility } from '@material-ui/icons/Visibility'; - declare export { - default as VisibilityOff, - } from '@material-ui/icons/VisibilityOff'; - declare export { - default as VisibilityOffOutlined, - } from '@material-ui/icons/VisibilityOffOutlined'; - declare export { - default as VisibilityOffRounded, - } from '@material-ui/icons/VisibilityOffRounded'; - declare export { - default as VisibilityOffSharp, - } from '@material-ui/icons/VisibilityOffSharp'; - declare export { - default as VisibilityOffTwoTone, - } from '@material-ui/icons/VisibilityOffTwoTone'; - declare export { - default as VisibilityOutlined, - } from '@material-ui/icons/VisibilityOutlined'; - declare export { - default as VisibilityRounded, - } from '@material-ui/icons/VisibilityRounded'; - declare export { - default as VisibilitySharp, - } from '@material-ui/icons/VisibilitySharp'; - declare export { - default as VisibilityTwoTone, - } from '@material-ui/icons/VisibilityTwoTone'; - declare export { default as VoiceChat } from '@material-ui/icons/VoiceChat'; - declare export { - default as VoiceChatOutlined, - } from '@material-ui/icons/VoiceChatOutlined'; - declare export { - default as VoiceChatRounded, - } from '@material-ui/icons/VoiceChatRounded'; - declare export { - default as VoiceChatSharp, - } from '@material-ui/icons/VoiceChatSharp'; - declare export { - default as VoiceChatTwoTone, - } from '@material-ui/icons/VoiceChatTwoTone'; - declare export { default as Voicemail } from '@material-ui/icons/Voicemail'; - declare export { - default as VoicemailOutlined, - } from '@material-ui/icons/VoicemailOutlined'; - declare export { - default as VoicemailRounded, - } from '@material-ui/icons/VoicemailRounded'; - declare export { - default as VoicemailSharp, - } from '@material-ui/icons/VoicemailSharp'; - declare export { - default as VoicemailTwoTone, - } from '@material-ui/icons/VoicemailTwoTone'; - declare export { - default as VoiceOverOff, - } from '@material-ui/icons/VoiceOverOff'; - declare export { - default as VoiceOverOffOutlined, - } from '@material-ui/icons/VoiceOverOffOutlined'; - declare export { - default as VoiceOverOffRounded, - } from '@material-ui/icons/VoiceOverOffRounded'; - declare export { - default as VoiceOverOffSharp, - } from '@material-ui/icons/VoiceOverOffSharp'; - declare export { - default as VoiceOverOffTwoTone, - } from '@material-ui/icons/VoiceOverOffTwoTone'; - declare export { default as VolumeDown } from '@material-ui/icons/VolumeDown'; - declare export { - default as VolumeDownOutlined, - } from '@material-ui/icons/VolumeDownOutlined'; - declare export { - default as VolumeDownRounded, - } from '@material-ui/icons/VolumeDownRounded'; - declare export { - default as VolumeDownSharp, - } from '@material-ui/icons/VolumeDownSharp'; - declare export { - default as VolumeDownTwoTone, - } from '@material-ui/icons/VolumeDownTwoTone'; - declare export { default as VolumeMute } from '@material-ui/icons/VolumeMute'; - declare export { - default as VolumeMuteOutlined, - } from '@material-ui/icons/VolumeMuteOutlined'; - declare export { - default as VolumeMuteRounded, - } from '@material-ui/icons/VolumeMuteRounded'; - declare export { - default as VolumeMuteSharp, - } from '@material-ui/icons/VolumeMuteSharp'; - declare export { - default as VolumeMuteTwoTone, - } from '@material-ui/icons/VolumeMuteTwoTone'; - declare export { default as VolumeOff } from '@material-ui/icons/VolumeOff'; - declare export { - default as VolumeOffOutlined, - } from '@material-ui/icons/VolumeOffOutlined'; - declare export { - default as VolumeOffRounded, - } from '@material-ui/icons/VolumeOffRounded'; - declare export { - default as VolumeOffSharp, - } from '@material-ui/icons/VolumeOffSharp'; - declare export { - default as VolumeOffTwoTone, - } from '@material-ui/icons/VolumeOffTwoTone'; - declare export { default as VolumeUp } from '@material-ui/icons/VolumeUp'; - declare export { - default as VolumeUpOutlined, - } from '@material-ui/icons/VolumeUpOutlined'; - declare export { - default as VolumeUpRounded, - } from '@material-ui/icons/VolumeUpRounded'; - declare export { - default as VolumeUpSharp, - } from '@material-ui/icons/VolumeUpSharp'; - declare export { - default as VolumeUpTwoTone, - } from '@material-ui/icons/VolumeUpTwoTone'; - declare export { default as VpnKey } from '@material-ui/icons/VpnKey'; - declare export { - default as VpnKeyOutlined, - } from '@material-ui/icons/VpnKeyOutlined'; - declare export { - default as VpnKeyRounded, - } from '@material-ui/icons/VpnKeyRounded'; - declare export { - default as VpnKeySharp, - } from '@material-ui/icons/VpnKeySharp'; - declare export { - default as VpnKeyTwoTone, - } from '@material-ui/icons/VpnKeyTwoTone'; - declare export { default as VpnLock } from '@material-ui/icons/VpnLock'; - declare export { - default as VpnLockOutlined, - } from '@material-ui/icons/VpnLockOutlined'; - declare export { - default as VpnLockRounded, - } from '@material-ui/icons/VpnLockRounded'; - declare export { - default as VpnLockSharp, - } from '@material-ui/icons/VpnLockSharp'; - declare export { - default as VpnLockTwoTone, - } from '@material-ui/icons/VpnLockTwoTone'; - declare export { default as Wallpaper } from '@material-ui/icons/Wallpaper'; - declare export { - default as WallpaperOutlined, - } from '@material-ui/icons/WallpaperOutlined'; - declare export { - default as WallpaperRounded, - } from '@material-ui/icons/WallpaperRounded'; - declare export { - default as WallpaperSharp, - } from '@material-ui/icons/WallpaperSharp'; - declare export { - default as WallpaperTwoTone, - } from '@material-ui/icons/WallpaperTwoTone'; - declare export { default as Warning } from '@material-ui/icons/Warning'; - declare export { - default as WarningOutlined, - } from '@material-ui/icons/WarningOutlined'; - declare export { - default as WarningRounded, - } from '@material-ui/icons/WarningRounded'; - declare export { - default as WarningSharp, - } from '@material-ui/icons/WarningSharp'; - declare export { - default as WarningTwoTone, - } from '@material-ui/icons/WarningTwoTone'; - declare export { default as Watch } from '@material-ui/icons/Watch'; - declare export { default as WatchLater } from '@material-ui/icons/WatchLater'; - declare export { - default as WatchLaterOutlined, - } from '@material-ui/icons/WatchLaterOutlined'; - declare export { - default as WatchLaterRounded, - } from '@material-ui/icons/WatchLaterRounded'; - declare export { - default as WatchLaterSharp, - } from '@material-ui/icons/WatchLaterSharp'; - declare export { - default as WatchLaterTwoTone, - } from '@material-ui/icons/WatchLaterTwoTone'; - declare export { - default as WatchOutlined, - } from '@material-ui/icons/WatchOutlined'; - declare export { - default as WatchRounded, - } from '@material-ui/icons/WatchRounded'; - declare export { default as WatchSharp } from '@material-ui/icons/WatchSharp'; - declare export { - default as WatchTwoTone, - } from '@material-ui/icons/WatchTwoTone'; - declare export { default as Waves } from '@material-ui/icons/Waves'; - declare export { - default as WavesOutlined, - } from '@material-ui/icons/WavesOutlined'; - declare export { - default as WavesRounded, - } from '@material-ui/icons/WavesRounded'; - declare export { default as WavesSharp } from '@material-ui/icons/WavesSharp'; - declare export { - default as WavesTwoTone, - } from '@material-ui/icons/WavesTwoTone'; - declare export { default as WbAuto } from '@material-ui/icons/WbAuto'; - declare export { - default as WbAutoOutlined, - } from '@material-ui/icons/WbAutoOutlined'; - declare export { - default as WbAutoRounded, - } from '@material-ui/icons/WbAutoRounded'; - declare export { - default as WbAutoSharp, - } from '@material-ui/icons/WbAutoSharp'; - declare export { - default as WbAutoTwoTone, - } from '@material-ui/icons/WbAutoTwoTone'; - declare export { default as WbCloudy } from '@material-ui/icons/WbCloudy'; - declare export { - default as WbCloudyOutlined, - } from '@material-ui/icons/WbCloudyOutlined'; - declare export { - default as WbCloudyRounded, - } from '@material-ui/icons/WbCloudyRounded'; - declare export { - default as WbCloudySharp, - } from '@material-ui/icons/WbCloudySharp'; - declare export { - default as WbCloudyTwoTone, - } from '@material-ui/icons/WbCloudyTwoTone'; - declare export { - default as WbIncandescent, - } from '@material-ui/icons/WbIncandescent'; - declare export { - default as WbIncandescentOutlined, - } from '@material-ui/icons/WbIncandescentOutlined'; - declare export { - default as WbIncandescentRounded, - } from '@material-ui/icons/WbIncandescentRounded'; - declare export { - default as WbIncandescentSharp, - } from '@material-ui/icons/WbIncandescentSharp'; - declare export { - default as WbIncandescentTwoTone, - } from '@material-ui/icons/WbIncandescentTwoTone'; - declare export { - default as WbIridescent, - } from '@material-ui/icons/WbIridescent'; - declare export { - default as WbIridescentOutlined, - } from '@material-ui/icons/WbIridescentOutlined'; - declare export { - default as WbIridescentRounded, - } from '@material-ui/icons/WbIridescentRounded'; - declare export { - default as WbIridescentSharp, - } from '@material-ui/icons/WbIridescentSharp'; - declare export { - default as WbIridescentTwoTone, - } from '@material-ui/icons/WbIridescentTwoTone'; - declare export { default as WbSunny } from '@material-ui/icons/WbSunny'; - declare export { - default as WbSunnyOutlined, - } from '@material-ui/icons/WbSunnyOutlined'; - declare export { - default as WbSunnyRounded, - } from '@material-ui/icons/WbSunnyRounded'; - declare export { - default as WbSunnySharp, - } from '@material-ui/icons/WbSunnySharp'; - declare export { - default as WbSunnyTwoTone, - } from '@material-ui/icons/WbSunnyTwoTone'; - declare export { default as Wc } from '@material-ui/icons/Wc'; - declare export { default as WcOutlined } from '@material-ui/icons/WcOutlined'; - declare export { default as WcRounded } from '@material-ui/icons/WcRounded'; - declare export { default as WcSharp } from '@material-ui/icons/WcSharp'; - declare export { default as WcTwoTone } from '@material-ui/icons/WcTwoTone'; - declare export { default as WebAsset } from '@material-ui/icons/WebAsset'; - declare export { - default as WebAssetOutlined, - } from '@material-ui/icons/WebAssetOutlined'; - declare export { - default as WebAssetRounded, - } from '@material-ui/icons/WebAssetRounded'; - declare export { - default as WebAssetSharp, - } from '@material-ui/icons/WebAssetSharp'; - declare export { - default as WebAssetTwoTone, - } from '@material-ui/icons/WebAssetTwoTone'; - declare export { default as Web } from '@material-ui/icons/Web'; - declare export { - default as WebOutlined, - } from '@material-ui/icons/WebOutlined'; - declare export { default as WebRounded } from '@material-ui/icons/WebRounded'; - declare export { default as WebSharp } from '@material-ui/icons/WebSharp'; - declare export { default as WebTwoTone } from '@material-ui/icons/WebTwoTone'; - declare export { default as Weekend } from '@material-ui/icons/Weekend'; - declare export { - default as WeekendOutlined, - } from '@material-ui/icons/WeekendOutlined'; - declare export { - default as WeekendRounded, - } from '@material-ui/icons/WeekendRounded'; - declare export { - default as WeekendSharp, - } from '@material-ui/icons/WeekendSharp'; - declare export { - default as WeekendTwoTone, - } from '@material-ui/icons/WeekendTwoTone'; - declare export { default as Whatshot } from '@material-ui/icons/Whatshot'; - declare export { - default as WhatshotOutlined, - } from '@material-ui/icons/WhatshotOutlined'; - declare export { - default as WhatshotRounded, - } from '@material-ui/icons/WhatshotRounded'; - declare export { - default as WhatshotSharp, - } from '@material-ui/icons/WhatshotSharp'; - declare export { - default as WhatshotTwoTone, - } from '@material-ui/icons/WhatshotTwoTone'; - declare export { - default as WhereToVote, - } from '@material-ui/icons/WhereToVote'; - declare export { - default as WhereToVoteOutlined, - } from '@material-ui/icons/WhereToVoteOutlined'; - declare export { - default as WhereToVoteRounded, - } from '@material-ui/icons/WhereToVoteRounded'; - declare export { - default as WhereToVoteSharp, - } from '@material-ui/icons/WhereToVoteSharp'; - declare export { - default as WhereToVoteTwoTone, - } from '@material-ui/icons/WhereToVoteTwoTone'; - declare export { default as Widgets } from '@material-ui/icons/Widgets'; - declare export { - default as WidgetsOutlined, - } from '@material-ui/icons/WidgetsOutlined'; - declare export { - default as WidgetsRounded, - } from '@material-ui/icons/WidgetsRounded'; - declare export { - default as WidgetsSharp, - } from '@material-ui/icons/WidgetsSharp'; - declare export { - default as WidgetsTwoTone, - } from '@material-ui/icons/WidgetsTwoTone'; - declare export { default as Wifi } from '@material-ui/icons/Wifi'; - declare export { default as WifiLock } from '@material-ui/icons/WifiLock'; - declare export { - default as WifiLockOutlined, - } from '@material-ui/icons/WifiLockOutlined'; - declare export { - default as WifiLockRounded, - } from '@material-ui/icons/WifiLockRounded'; - declare export { - default as WifiLockSharp, - } from '@material-ui/icons/WifiLockSharp'; - declare export { - default as WifiLockTwoTone, - } from '@material-ui/icons/WifiLockTwoTone'; - declare export { default as WifiOff } from '@material-ui/icons/WifiOff'; - declare export { - default as WifiOffOutlined, - } from '@material-ui/icons/WifiOffOutlined'; - declare export { - default as WifiOffRounded, - } from '@material-ui/icons/WifiOffRounded'; - declare export { - default as WifiOffSharp, - } from '@material-ui/icons/WifiOffSharp'; - declare export { - default as WifiOffTwoTone, - } from '@material-ui/icons/WifiOffTwoTone'; - declare export { - default as WifiOutlined, - } from '@material-ui/icons/WifiOutlined'; - declare export { - default as WifiRounded, - } from '@material-ui/icons/WifiRounded'; - declare export { default as WifiSharp } from '@material-ui/icons/WifiSharp'; - declare export { - default as WifiTethering, - } from '@material-ui/icons/WifiTethering'; - declare export { - default as WifiTetheringOutlined, - } from '@material-ui/icons/WifiTetheringOutlined'; - declare export { - default as WifiTetheringRounded, - } from '@material-ui/icons/WifiTetheringRounded'; - declare export { - default as WifiTetheringSharp, - } from '@material-ui/icons/WifiTetheringSharp'; - declare export { - default as WifiTetheringTwoTone, - } from '@material-ui/icons/WifiTetheringTwoTone'; - declare export { - default as WifiTwoTone, - } from '@material-ui/icons/WifiTwoTone'; - declare export { default as Work } from '@material-ui/icons/Work'; - declare export { default as WorkOff } from '@material-ui/icons/WorkOff'; - declare export { - default as WorkOffOutlined, - } from '@material-ui/icons/WorkOffOutlined'; - declare export { - default as WorkOffRounded, - } from '@material-ui/icons/WorkOffRounded'; - declare export { - default as WorkOffSharp, - } from '@material-ui/icons/WorkOffSharp'; - declare export { - default as WorkOffTwoTone, - } from '@material-ui/icons/WorkOffTwoTone'; - declare export { - default as WorkOutlined, - } from '@material-ui/icons/WorkOutlined'; - declare export { - default as WorkOutline, - } from '@material-ui/icons/WorkOutline'; - declare export { - default as WorkOutlineOutlined, - } from '@material-ui/icons/WorkOutlineOutlined'; - declare export { - default as WorkOutlineRounded, - } from '@material-ui/icons/WorkOutlineRounded'; - declare export { - default as WorkOutlineSharp, - } from '@material-ui/icons/WorkOutlineSharp'; - declare export { - default as WorkOutlineTwoTone, - } from '@material-ui/icons/WorkOutlineTwoTone'; - declare export { - default as WorkRounded, - } from '@material-ui/icons/WorkRounded'; - declare export { default as WorkSharp } from '@material-ui/icons/WorkSharp'; - declare export { - default as WorkTwoTone, - } from '@material-ui/icons/WorkTwoTone'; - declare export { default as WrapText } from '@material-ui/icons/WrapText'; - declare export { - default as WrapTextOutlined, - } from '@material-ui/icons/WrapTextOutlined'; - declare export { - default as WrapTextRounded, - } from '@material-ui/icons/WrapTextRounded'; - declare export { - default as WrapTextSharp, - } from '@material-ui/icons/WrapTextSharp'; - declare export { - default as WrapTextTwoTone, - } from '@material-ui/icons/WrapTextTwoTone'; - declare export { - default as YoutubeSearchedFor, - } from '@material-ui/icons/YoutubeSearchedFor'; - declare export { - default as YoutubeSearchedForOutlined, - } from '@material-ui/icons/YoutubeSearchedForOutlined'; - declare export { - default as YoutubeSearchedForRounded, - } from '@material-ui/icons/YoutubeSearchedForRounded'; - declare export { - default as YoutubeSearchedForSharp, - } from '@material-ui/icons/YoutubeSearchedForSharp'; - declare export { - default as YoutubeSearchedForTwoTone, - } from '@material-ui/icons/YoutubeSearchedForTwoTone'; - declare export { default as ZoomIn } from '@material-ui/icons/ZoomIn'; - declare export { - default as ZoomInOutlined, - } from '@material-ui/icons/ZoomInOutlined'; - declare export { - default as ZoomInRounded, - } from '@material-ui/icons/ZoomInRounded'; - declare export { - default as ZoomInSharp, - } from '@material-ui/icons/ZoomInSharp'; - declare export { - default as ZoomInTwoTone, - } from '@material-ui/icons/ZoomInTwoTone'; - declare export { default as ZoomOut } from '@material-ui/icons/ZoomOut'; - declare export { default as ZoomOutMap } from '@material-ui/icons/ZoomOutMap'; - declare export { - default as ZoomOutMapOutlined, - } from '@material-ui/icons/ZoomOutMapOutlined'; - declare export { - default as ZoomOutMapRounded, - } from '@material-ui/icons/ZoomOutMapRounded'; - declare export { - default as ZoomOutMapSharp, - } from '@material-ui/icons/ZoomOutMapSharp'; - declare export { - default as ZoomOutMapTwoTone, - } from '@material-ui/icons/ZoomOutMapTwoTone'; - declare export { - default as ZoomOutOutlined, - } from '@material-ui/icons/ZoomOutOutlined'; - declare export { - default as ZoomOutRounded, - } from '@material-ui/icons/ZoomOutRounded'; - declare export { - default as ZoomOutSharp, - } from '@material-ui/icons/ZoomOutSharp'; - declare export { - default as ZoomOutTwoTone, - } from '@material-ui/icons/ZoomOutTwoTone'; -} diff --git a/flow-typed/npm/@material-ui/lab_vx.x.x.js b/flow-typed/npm/@material-ui/lab_vx.x.x.js deleted file mode 100644 index 5907c7a8..00000000 --- a/flow-typed/npm/@material-ui/lab_vx.x.x.js +++ /dev/null @@ -1,1734 +0,0 @@ -// flow-typed signature: 9b0a74efc9282ea00e4f430e99cb0cd4 -// flow-typed version: <>/@material-ui/lab_v^4.0.0-alpha.56/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * '@material-ui/lab' - * - * 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 '@material-ui/lab' { - 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 '@material-ui/lab/Alert/Alert' { - declare module.exports: any; -} - -declare module '@material-ui/lab/Alert' { - declare module.exports: any; -} - -declare module '@material-ui/lab/AlertTitle/AlertTitle' { - declare module.exports: any; -} - -declare module '@material-ui/lab/AlertTitle' { - declare module.exports: any; -} - -declare module '@material-ui/lab/Autocomplete/Autocomplete' { - declare module.exports: any; -} - -declare module '@material-ui/lab/Autocomplete' { - declare module.exports: any; -} - -declare module '@material-ui/lab/AvatarGroup/AvatarGroup' { - declare module.exports: any; -} - -declare module '@material-ui/lab/AvatarGroup' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/Alert/Alert' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/Alert' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/AlertTitle/AlertTitle' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/AlertTitle' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/Autocomplete/Autocomplete' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/Autocomplete' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/AvatarGroup/AvatarGroup' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/AvatarGroup' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/internal/svg-icons/Add' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/internal/svg-icons/ArrowDropDown' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/internal/svg-icons/Close' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/internal/svg-icons/ErrorOutline' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/internal/svg-icons/FirstPage' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/internal/svg-icons/InfoOutlined' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/internal/svg-icons/LastPage' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/internal/svg-icons/NavigateBefore' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/internal/svg-icons/NavigateNext' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/internal/svg-icons/ReportProblemOutlined' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/internal/svg-icons/Star' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/internal/svg-icons/SuccessOutlined' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/Pagination' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/Pagination/Pagination' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/Pagination/usePagination' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/PaginationItem' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/PaginationItem/PaginationItem' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/Rating' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/Rating/Rating' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/Skeleton' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/Skeleton/Skeleton' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/SpeedDial' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/SpeedDial/SpeedDial' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/SpeedDialAction' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/SpeedDialAction/SpeedDialAction' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/SpeedDialIcon' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/SpeedDialIcon/SpeedDialIcon' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/TabContext' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/TabContext/TabContext' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/TabList' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/TabList/TabList' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/TabPanel' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/TabPanel/TabPanel' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/Timeline' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/Timeline/Timeline' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/Timeline/TimelineContext' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/TimelineConnector' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/TimelineConnector/TimelineConnector' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/TimelineContent' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/TimelineContent/TimelineContent' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/TimelineDot' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/TimelineDot/TimelineDot' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/TimelineItem' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/TimelineItem/TimelineItem' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/TimelineItem/TimelineItemContext' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/TimelineOppositeContent' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/TimelineOppositeContent/TimelineOppositeContent' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/TimelineSeparator' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/TimelineSeparator/TimelineSeparator' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/ToggleButton' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/ToggleButton/ToggleButton' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/ToggleButtonGroup' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/ToggleButtonGroup/isValueSelected' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/ToggleButtonGroup/ToggleButtonGroup' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/TreeItem' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/TreeItem/TreeItem' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/TreeView' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/TreeView/TreeView' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/TreeView/TreeViewContext' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/useAutocomplete' { - declare module.exports: any; -} - -declare module '@material-ui/lab/es/useAutocomplete/useAutocomplete' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/Alert/Alert' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/Alert' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/AlertTitle/AlertTitle' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/AlertTitle' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/Autocomplete/Autocomplete' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/Autocomplete' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/AvatarGroup/AvatarGroup' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/AvatarGroup' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/internal/svg-icons/Add' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/internal/svg-icons/ArrowDropDown' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/internal/svg-icons/Close' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/internal/svg-icons/ErrorOutline' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/internal/svg-icons/FirstPage' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/internal/svg-icons/InfoOutlined' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/internal/svg-icons/LastPage' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/internal/svg-icons/NavigateBefore' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/internal/svg-icons/NavigateNext' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/internal/svg-icons/ReportProblemOutlined' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/internal/svg-icons/Star' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/internal/svg-icons/SuccessOutlined' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/Pagination' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/Pagination/Pagination' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/Pagination/usePagination' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/PaginationItem' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/PaginationItem/PaginationItem' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/Rating' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/Rating/Rating' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/Skeleton' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/Skeleton/Skeleton' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/SpeedDial' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/SpeedDial/SpeedDial' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/SpeedDialAction' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/SpeedDialAction/SpeedDialAction' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/SpeedDialIcon' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/SpeedDialIcon/SpeedDialIcon' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/TabContext' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/TabContext/TabContext' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/TabList' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/TabList/TabList' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/TabPanel' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/TabPanel/TabPanel' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/Timeline' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/Timeline/Timeline' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/Timeline/TimelineContext' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/TimelineConnector' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/TimelineConnector/TimelineConnector' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/TimelineContent' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/TimelineContent/TimelineContent' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/TimelineDot' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/TimelineDot/TimelineDot' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/TimelineItem' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/TimelineItem/TimelineItem' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/TimelineItem/TimelineItemContext' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/TimelineOppositeContent' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/TimelineOppositeContent/TimelineOppositeContent' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/TimelineSeparator' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/TimelineSeparator/TimelineSeparator' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/ToggleButton' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/ToggleButton/ToggleButton' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/ToggleButtonGroup' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/ToggleButtonGroup/isValueSelected' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/ToggleButtonGroup/ToggleButtonGroup' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/TreeItem' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/TreeItem/TreeItem' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/TreeView' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/TreeView/TreeView' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/TreeView/TreeViewContext' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/useAutocomplete' { - declare module.exports: any; -} - -declare module '@material-ui/lab/esm/useAutocomplete/useAutocomplete' { - declare module.exports: any; -} - -declare module '@material-ui/lab/internal/svg-icons/Add' { - declare module.exports: any; -} - -declare module '@material-ui/lab/internal/svg-icons/ArrowDropDown' { - declare module.exports: any; -} - -declare module '@material-ui/lab/internal/svg-icons/Close' { - declare module.exports: any; -} - -declare module '@material-ui/lab/internal/svg-icons/ErrorOutline' { - declare module.exports: any; -} - -declare module '@material-ui/lab/internal/svg-icons/FirstPage' { - declare module.exports: any; -} - -declare module '@material-ui/lab/internal/svg-icons/InfoOutlined' { - declare module.exports: any; -} - -declare module '@material-ui/lab/internal/svg-icons/LastPage' { - declare module.exports: any; -} - -declare module '@material-ui/lab/internal/svg-icons/NavigateBefore' { - declare module.exports: any; -} - -declare module '@material-ui/lab/internal/svg-icons/NavigateNext' { - declare module.exports: any; -} - -declare module '@material-ui/lab/internal/svg-icons/ReportProblemOutlined' { - declare module.exports: any; -} - -declare module '@material-ui/lab/internal/svg-icons/Star' { - declare module.exports: any; -} - -declare module '@material-ui/lab/internal/svg-icons/SuccessOutlined' { - declare module.exports: any; -} - -declare module '@material-ui/lab/Pagination' { - declare module.exports: any; -} - -declare module '@material-ui/lab/Pagination/Pagination' { - declare module.exports: any; -} - -declare module '@material-ui/lab/Pagination/usePagination' { - declare module.exports: any; -} - -declare module '@material-ui/lab/PaginationItem' { - declare module.exports: any; -} - -declare module '@material-ui/lab/PaginationItem/PaginationItem' { - declare module.exports: any; -} - -declare module '@material-ui/lab/Rating' { - declare module.exports: any; -} - -declare module '@material-ui/lab/Rating/Rating' { - declare module.exports: any; -} - -declare module '@material-ui/lab/Skeleton' { - declare module.exports: any; -} - -declare module '@material-ui/lab/Skeleton/Skeleton' { - declare module.exports: any; -} - -declare module '@material-ui/lab/SpeedDial' { - declare module.exports: any; -} - -declare module '@material-ui/lab/SpeedDial/SpeedDial' { - declare module.exports: any; -} - -declare module '@material-ui/lab/SpeedDialAction' { - declare module.exports: any; -} - -declare module '@material-ui/lab/SpeedDialAction/SpeedDialAction' { - declare module.exports: any; -} - -declare module '@material-ui/lab/SpeedDialIcon' { - declare module.exports: any; -} - -declare module '@material-ui/lab/SpeedDialIcon/SpeedDialIcon' { - declare module.exports: any; -} - -declare module '@material-ui/lab/TabContext' { - declare module.exports: any; -} - -declare module '@material-ui/lab/TabContext/TabContext' { - declare module.exports: any; -} - -declare module '@material-ui/lab/TabList' { - declare module.exports: any; -} - -declare module '@material-ui/lab/TabList/TabList' { - declare module.exports: any; -} - -declare module '@material-ui/lab/TabPanel' { - declare module.exports: any; -} - -declare module '@material-ui/lab/TabPanel/TabPanel' { - declare module.exports: any; -} - -declare module '@material-ui/lab/Timeline' { - declare module.exports: any; -} - -declare module '@material-ui/lab/Timeline/Timeline' { - declare module.exports: any; -} - -declare module '@material-ui/lab/Timeline/TimelineContext' { - declare module.exports: any; -} - -declare module '@material-ui/lab/TimelineConnector' { - declare module.exports: any; -} - -declare module '@material-ui/lab/TimelineConnector/TimelineConnector' { - declare module.exports: any; -} - -declare module '@material-ui/lab/TimelineContent' { - declare module.exports: any; -} - -declare module '@material-ui/lab/TimelineContent/TimelineContent' { - declare module.exports: any; -} - -declare module '@material-ui/lab/TimelineDot' { - declare module.exports: any; -} - -declare module '@material-ui/lab/TimelineDot/TimelineDot' { - declare module.exports: any; -} - -declare module '@material-ui/lab/TimelineItem' { - declare module.exports: any; -} - -declare module '@material-ui/lab/TimelineItem/TimelineItem' { - declare module.exports: any; -} - -declare module '@material-ui/lab/TimelineItem/TimelineItemContext' { - declare module.exports: any; -} - -declare module '@material-ui/lab/TimelineOppositeContent' { - declare module.exports: any; -} - -declare module '@material-ui/lab/TimelineOppositeContent/TimelineOppositeContent' { - declare module.exports: any; -} - -declare module '@material-ui/lab/TimelineSeparator' { - declare module.exports: any; -} - -declare module '@material-ui/lab/TimelineSeparator/TimelineSeparator' { - declare module.exports: any; -} - -declare module '@material-ui/lab/ToggleButton' { - declare module.exports: any; -} - -declare module '@material-ui/lab/ToggleButton/ToggleButton' { - declare module.exports: any; -} - -declare module '@material-ui/lab/ToggleButtonGroup' { - declare module.exports: any; -} - -declare module '@material-ui/lab/ToggleButtonGroup/isValueSelected' { - declare module.exports: any; -} - -declare module '@material-ui/lab/ToggleButtonGroup/ToggleButtonGroup' { - declare module.exports: any; -} - -declare module '@material-ui/lab/TreeItem' { - declare module.exports: any; -} - -declare module '@material-ui/lab/TreeItem/TreeItem' { - declare module.exports: any; -} - -declare module '@material-ui/lab/TreeView' { - declare module.exports: any; -} - -declare module '@material-ui/lab/TreeView/TreeView' { - declare module.exports: any; -} - -declare module '@material-ui/lab/TreeView/TreeViewContext' { - declare module.exports: any; -} - -declare module '@material-ui/lab/useAutocomplete' { - declare module.exports: any; -} - -declare module '@material-ui/lab/useAutocomplete/useAutocomplete' { - declare module.exports: any; -} - -// Filename aliases -declare module '@material-ui/lab/Alert/Alert.js' { - declare module.exports: $Exports<'@material-ui/lab/Alert/Alert'>; -} -declare module '@material-ui/lab/Alert/index' { - declare module.exports: $Exports<'@material-ui/lab/Alert'>; -} -declare module '@material-ui/lab/Alert/index.js' { - declare module.exports: $Exports<'@material-ui/lab/Alert'>; -} -declare module '@material-ui/lab/AlertTitle/AlertTitle.js' { - declare module.exports: $Exports<'@material-ui/lab/AlertTitle/AlertTitle'>; -} -declare module '@material-ui/lab/AlertTitle/index' { - declare module.exports: $Exports<'@material-ui/lab/AlertTitle'>; -} -declare module '@material-ui/lab/AlertTitle/index.js' { - declare module.exports: $Exports<'@material-ui/lab/AlertTitle'>; -} -declare module '@material-ui/lab/Autocomplete/Autocomplete.js' { - declare module.exports: $Exports<'@material-ui/lab/Autocomplete/Autocomplete'>; -} -declare module '@material-ui/lab/Autocomplete/index' { - declare module.exports: $Exports<'@material-ui/lab/Autocomplete'>; -} -declare module '@material-ui/lab/Autocomplete/index.js' { - declare module.exports: $Exports<'@material-ui/lab/Autocomplete'>; -} -declare module '@material-ui/lab/AvatarGroup/AvatarGroup.js' { - declare module.exports: $Exports<'@material-ui/lab/AvatarGroup/AvatarGroup'>; -} -declare module '@material-ui/lab/AvatarGroup/index' { - declare module.exports: $Exports<'@material-ui/lab/AvatarGroup'>; -} -declare module '@material-ui/lab/AvatarGroup/index.js' { - declare module.exports: $Exports<'@material-ui/lab/AvatarGroup'>; -} -declare module '@material-ui/lab/es/Alert/Alert.js' { - declare module.exports: $Exports<'@material-ui/lab/es/Alert/Alert'>; -} -declare module '@material-ui/lab/es/Alert/index' { - declare module.exports: $Exports<'@material-ui/lab/es/Alert'>; -} -declare module '@material-ui/lab/es/Alert/index.js' { - declare module.exports: $Exports<'@material-ui/lab/es/Alert'>; -} -declare module '@material-ui/lab/es/AlertTitle/AlertTitle.js' { - declare module.exports: $Exports<'@material-ui/lab/es/AlertTitle/AlertTitle'>; -} -declare module '@material-ui/lab/es/AlertTitle/index' { - declare module.exports: $Exports<'@material-ui/lab/es/AlertTitle'>; -} -declare module '@material-ui/lab/es/AlertTitle/index.js' { - declare module.exports: $Exports<'@material-ui/lab/es/AlertTitle'>; -} -declare module '@material-ui/lab/es/Autocomplete/Autocomplete.js' { - declare module.exports: $Exports<'@material-ui/lab/es/Autocomplete/Autocomplete'>; -} -declare module '@material-ui/lab/es/Autocomplete/index' { - declare module.exports: $Exports<'@material-ui/lab/es/Autocomplete'>; -} -declare module '@material-ui/lab/es/Autocomplete/index.js' { - declare module.exports: $Exports<'@material-ui/lab/es/Autocomplete'>; -} -declare module '@material-ui/lab/es/AvatarGroup/AvatarGroup.js' { - declare module.exports: $Exports<'@material-ui/lab/es/AvatarGroup/AvatarGroup'>; -} -declare module '@material-ui/lab/es/AvatarGroup/index' { - declare module.exports: $Exports<'@material-ui/lab/es/AvatarGroup'>; -} -declare module '@material-ui/lab/es/AvatarGroup/index.js' { - declare module.exports: $Exports<'@material-ui/lab/es/AvatarGroup'>; -} -declare module '@material-ui/lab/es/index' { - declare module.exports: $Exports<'@material-ui/lab/es'>; -} -declare module '@material-ui/lab/es/index.js' { - declare module.exports: $Exports<'@material-ui/lab/es'>; -} -declare module '@material-ui/lab/es/internal/svg-icons/Add.js' { - declare module.exports: $Exports<'@material-ui/lab/es/internal/svg-icons/Add'>; -} -declare module '@material-ui/lab/es/internal/svg-icons/ArrowDropDown.js' { - declare module.exports: $Exports<'@material-ui/lab/es/internal/svg-icons/ArrowDropDown'>; -} -declare module '@material-ui/lab/es/internal/svg-icons/Close.js' { - declare module.exports: $Exports<'@material-ui/lab/es/internal/svg-icons/Close'>; -} -declare module '@material-ui/lab/es/internal/svg-icons/ErrorOutline.js' { - declare module.exports: $Exports<'@material-ui/lab/es/internal/svg-icons/ErrorOutline'>; -} -declare module '@material-ui/lab/es/internal/svg-icons/FirstPage.js' { - declare module.exports: $Exports<'@material-ui/lab/es/internal/svg-icons/FirstPage'>; -} -declare module '@material-ui/lab/es/internal/svg-icons/InfoOutlined.js' { - declare module.exports: $Exports<'@material-ui/lab/es/internal/svg-icons/InfoOutlined'>; -} -declare module '@material-ui/lab/es/internal/svg-icons/LastPage.js' { - declare module.exports: $Exports<'@material-ui/lab/es/internal/svg-icons/LastPage'>; -} -declare module '@material-ui/lab/es/internal/svg-icons/NavigateBefore.js' { - declare module.exports: $Exports<'@material-ui/lab/es/internal/svg-icons/NavigateBefore'>; -} -declare module '@material-ui/lab/es/internal/svg-icons/NavigateNext.js' { - declare module.exports: $Exports<'@material-ui/lab/es/internal/svg-icons/NavigateNext'>; -} -declare module '@material-ui/lab/es/internal/svg-icons/ReportProblemOutlined.js' { - declare module.exports: $Exports<'@material-ui/lab/es/internal/svg-icons/ReportProblemOutlined'>; -} -declare module '@material-ui/lab/es/internal/svg-icons/Star.js' { - declare module.exports: $Exports<'@material-ui/lab/es/internal/svg-icons/Star'>; -} -declare module '@material-ui/lab/es/internal/svg-icons/SuccessOutlined.js' { - declare module.exports: $Exports<'@material-ui/lab/es/internal/svg-icons/SuccessOutlined'>; -} -declare module '@material-ui/lab/es/Pagination/index' { - declare module.exports: $Exports<'@material-ui/lab/es/Pagination'>; -} -declare module '@material-ui/lab/es/Pagination/index.js' { - declare module.exports: $Exports<'@material-ui/lab/es/Pagination'>; -} -declare module '@material-ui/lab/es/Pagination/Pagination.js' { - declare module.exports: $Exports<'@material-ui/lab/es/Pagination/Pagination'>; -} -declare module '@material-ui/lab/es/Pagination/usePagination.js' { - declare module.exports: $Exports<'@material-ui/lab/es/Pagination/usePagination'>; -} -declare module '@material-ui/lab/es/PaginationItem/index' { - declare module.exports: $Exports<'@material-ui/lab/es/PaginationItem'>; -} -declare module '@material-ui/lab/es/PaginationItem/index.js' { - declare module.exports: $Exports<'@material-ui/lab/es/PaginationItem'>; -} -declare module '@material-ui/lab/es/PaginationItem/PaginationItem.js' { - declare module.exports: $Exports<'@material-ui/lab/es/PaginationItem/PaginationItem'>; -} -declare module '@material-ui/lab/es/Rating/index' { - declare module.exports: $Exports<'@material-ui/lab/es/Rating'>; -} -declare module '@material-ui/lab/es/Rating/index.js' { - declare module.exports: $Exports<'@material-ui/lab/es/Rating'>; -} -declare module '@material-ui/lab/es/Rating/Rating.js' { - declare module.exports: $Exports<'@material-ui/lab/es/Rating/Rating'>; -} -declare module '@material-ui/lab/es/Skeleton/index' { - declare module.exports: $Exports<'@material-ui/lab/es/Skeleton'>; -} -declare module '@material-ui/lab/es/Skeleton/index.js' { - declare module.exports: $Exports<'@material-ui/lab/es/Skeleton'>; -} -declare module '@material-ui/lab/es/Skeleton/Skeleton.js' { - declare module.exports: $Exports<'@material-ui/lab/es/Skeleton/Skeleton'>; -} -declare module '@material-ui/lab/es/SpeedDial/index' { - declare module.exports: $Exports<'@material-ui/lab/es/SpeedDial'>; -} -declare module '@material-ui/lab/es/SpeedDial/index.js' { - declare module.exports: $Exports<'@material-ui/lab/es/SpeedDial'>; -} -declare module '@material-ui/lab/es/SpeedDial/SpeedDial.js' { - declare module.exports: $Exports<'@material-ui/lab/es/SpeedDial/SpeedDial'>; -} -declare module '@material-ui/lab/es/SpeedDialAction/index' { - declare module.exports: $Exports<'@material-ui/lab/es/SpeedDialAction'>; -} -declare module '@material-ui/lab/es/SpeedDialAction/index.js' { - declare module.exports: $Exports<'@material-ui/lab/es/SpeedDialAction'>; -} -declare module '@material-ui/lab/es/SpeedDialAction/SpeedDialAction.js' { - declare module.exports: $Exports<'@material-ui/lab/es/SpeedDialAction/SpeedDialAction'>; -} -declare module '@material-ui/lab/es/SpeedDialIcon/index' { - declare module.exports: $Exports<'@material-ui/lab/es/SpeedDialIcon'>; -} -declare module '@material-ui/lab/es/SpeedDialIcon/index.js' { - declare module.exports: $Exports<'@material-ui/lab/es/SpeedDialIcon'>; -} -declare module '@material-ui/lab/es/SpeedDialIcon/SpeedDialIcon.js' { - declare module.exports: $Exports<'@material-ui/lab/es/SpeedDialIcon/SpeedDialIcon'>; -} -declare module '@material-ui/lab/es/TabContext/index' { - declare module.exports: $Exports<'@material-ui/lab/es/TabContext'>; -} -declare module '@material-ui/lab/es/TabContext/index.js' { - declare module.exports: $Exports<'@material-ui/lab/es/TabContext'>; -} -declare module '@material-ui/lab/es/TabContext/TabContext.js' { - declare module.exports: $Exports<'@material-ui/lab/es/TabContext/TabContext'>; -} -declare module '@material-ui/lab/es/TabList/index' { - declare module.exports: $Exports<'@material-ui/lab/es/TabList'>; -} -declare module '@material-ui/lab/es/TabList/index.js' { - declare module.exports: $Exports<'@material-ui/lab/es/TabList'>; -} -declare module '@material-ui/lab/es/TabList/TabList.js' { - declare module.exports: $Exports<'@material-ui/lab/es/TabList/TabList'>; -} -declare module '@material-ui/lab/es/TabPanel/index' { - declare module.exports: $Exports<'@material-ui/lab/es/TabPanel'>; -} -declare module '@material-ui/lab/es/TabPanel/index.js' { - declare module.exports: $Exports<'@material-ui/lab/es/TabPanel'>; -} -declare module '@material-ui/lab/es/TabPanel/TabPanel.js' { - declare module.exports: $Exports<'@material-ui/lab/es/TabPanel/TabPanel'>; -} -declare module '@material-ui/lab/es/Timeline/index' { - declare module.exports: $Exports<'@material-ui/lab/es/Timeline'>; -} -declare module '@material-ui/lab/es/Timeline/index.js' { - declare module.exports: $Exports<'@material-ui/lab/es/Timeline'>; -} -declare module '@material-ui/lab/es/Timeline/Timeline.js' { - declare module.exports: $Exports<'@material-ui/lab/es/Timeline/Timeline'>; -} -declare module '@material-ui/lab/es/Timeline/TimelineContext.js' { - declare module.exports: $Exports<'@material-ui/lab/es/Timeline/TimelineContext'>; -} -declare module '@material-ui/lab/es/TimelineConnector/index' { - declare module.exports: $Exports<'@material-ui/lab/es/TimelineConnector'>; -} -declare module '@material-ui/lab/es/TimelineConnector/index.js' { - declare module.exports: $Exports<'@material-ui/lab/es/TimelineConnector'>; -} -declare module '@material-ui/lab/es/TimelineConnector/TimelineConnector.js' { - declare module.exports: $Exports<'@material-ui/lab/es/TimelineConnector/TimelineConnector'>; -} -declare module '@material-ui/lab/es/TimelineContent/index' { - declare module.exports: $Exports<'@material-ui/lab/es/TimelineContent'>; -} -declare module '@material-ui/lab/es/TimelineContent/index.js' { - declare module.exports: $Exports<'@material-ui/lab/es/TimelineContent'>; -} -declare module '@material-ui/lab/es/TimelineContent/TimelineContent.js' { - declare module.exports: $Exports<'@material-ui/lab/es/TimelineContent/TimelineContent'>; -} -declare module '@material-ui/lab/es/TimelineDot/index' { - declare module.exports: $Exports<'@material-ui/lab/es/TimelineDot'>; -} -declare module '@material-ui/lab/es/TimelineDot/index.js' { - declare module.exports: $Exports<'@material-ui/lab/es/TimelineDot'>; -} -declare module '@material-ui/lab/es/TimelineDot/TimelineDot.js' { - declare module.exports: $Exports<'@material-ui/lab/es/TimelineDot/TimelineDot'>; -} -declare module '@material-ui/lab/es/TimelineItem/index' { - declare module.exports: $Exports<'@material-ui/lab/es/TimelineItem'>; -} -declare module '@material-ui/lab/es/TimelineItem/index.js' { - declare module.exports: $Exports<'@material-ui/lab/es/TimelineItem'>; -} -declare module '@material-ui/lab/es/TimelineItem/TimelineItem.js' { - declare module.exports: $Exports<'@material-ui/lab/es/TimelineItem/TimelineItem'>; -} -declare module '@material-ui/lab/es/TimelineItem/TimelineItemContext.js' { - declare module.exports: $Exports<'@material-ui/lab/es/TimelineItem/TimelineItemContext'>; -} -declare module '@material-ui/lab/es/TimelineOppositeContent/index' { - declare module.exports: $Exports<'@material-ui/lab/es/TimelineOppositeContent'>; -} -declare module '@material-ui/lab/es/TimelineOppositeContent/index.js' { - declare module.exports: $Exports<'@material-ui/lab/es/TimelineOppositeContent'>; -} -declare module '@material-ui/lab/es/TimelineOppositeContent/TimelineOppositeContent.js' { - declare module.exports: $Exports<'@material-ui/lab/es/TimelineOppositeContent/TimelineOppositeContent'>; -} -declare module '@material-ui/lab/es/TimelineSeparator/index' { - declare module.exports: $Exports<'@material-ui/lab/es/TimelineSeparator'>; -} -declare module '@material-ui/lab/es/TimelineSeparator/index.js' { - declare module.exports: $Exports<'@material-ui/lab/es/TimelineSeparator'>; -} -declare module '@material-ui/lab/es/TimelineSeparator/TimelineSeparator.js' { - declare module.exports: $Exports<'@material-ui/lab/es/TimelineSeparator/TimelineSeparator'>; -} -declare module '@material-ui/lab/es/ToggleButton/index' { - declare module.exports: $Exports<'@material-ui/lab/es/ToggleButton'>; -} -declare module '@material-ui/lab/es/ToggleButton/index.js' { - declare module.exports: $Exports<'@material-ui/lab/es/ToggleButton'>; -} -declare module '@material-ui/lab/es/ToggleButton/ToggleButton.js' { - declare module.exports: $Exports<'@material-ui/lab/es/ToggleButton/ToggleButton'>; -} -declare module '@material-ui/lab/es/ToggleButtonGroup/index' { - declare module.exports: $Exports<'@material-ui/lab/es/ToggleButtonGroup'>; -} -declare module '@material-ui/lab/es/ToggleButtonGroup/index.js' { - declare module.exports: $Exports<'@material-ui/lab/es/ToggleButtonGroup'>; -} -declare module '@material-ui/lab/es/ToggleButtonGroup/isValueSelected.js' { - declare module.exports: $Exports<'@material-ui/lab/es/ToggleButtonGroup/isValueSelected'>; -} -declare module '@material-ui/lab/es/ToggleButtonGroup/ToggleButtonGroup.js' { - declare module.exports: $Exports<'@material-ui/lab/es/ToggleButtonGroup/ToggleButtonGroup'>; -} -declare module '@material-ui/lab/es/TreeItem/index' { - declare module.exports: $Exports<'@material-ui/lab/es/TreeItem'>; -} -declare module '@material-ui/lab/es/TreeItem/index.js' { - declare module.exports: $Exports<'@material-ui/lab/es/TreeItem'>; -} -declare module '@material-ui/lab/es/TreeItem/TreeItem.js' { - declare module.exports: $Exports<'@material-ui/lab/es/TreeItem/TreeItem'>; -} -declare module '@material-ui/lab/es/TreeView/index' { - declare module.exports: $Exports<'@material-ui/lab/es/TreeView'>; -} -declare module '@material-ui/lab/es/TreeView/index.js' { - declare module.exports: $Exports<'@material-ui/lab/es/TreeView'>; -} -declare module '@material-ui/lab/es/TreeView/TreeView.js' { - declare module.exports: $Exports<'@material-ui/lab/es/TreeView/TreeView'>; -} -declare module '@material-ui/lab/es/TreeView/TreeViewContext.js' { - declare module.exports: $Exports<'@material-ui/lab/es/TreeView/TreeViewContext'>; -} -declare module '@material-ui/lab/es/useAutocomplete/index' { - declare module.exports: $Exports<'@material-ui/lab/es/useAutocomplete'>; -} -declare module '@material-ui/lab/es/useAutocomplete/index.js' { - declare module.exports: $Exports<'@material-ui/lab/es/useAutocomplete'>; -} -declare module '@material-ui/lab/es/useAutocomplete/useAutocomplete.js' { - declare module.exports: $Exports<'@material-ui/lab/es/useAutocomplete/useAutocomplete'>; -} -declare module '@material-ui/lab/esm/Alert/Alert.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/Alert/Alert'>; -} -declare module '@material-ui/lab/esm/Alert/index' { - declare module.exports: $Exports<'@material-ui/lab/esm/Alert'>; -} -declare module '@material-ui/lab/esm/Alert/index.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/Alert'>; -} -declare module '@material-ui/lab/esm/AlertTitle/AlertTitle.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/AlertTitle/AlertTitle'>; -} -declare module '@material-ui/lab/esm/AlertTitle/index' { - declare module.exports: $Exports<'@material-ui/lab/esm/AlertTitle'>; -} -declare module '@material-ui/lab/esm/AlertTitle/index.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/AlertTitle'>; -} -declare module '@material-ui/lab/esm/Autocomplete/Autocomplete.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/Autocomplete/Autocomplete'>; -} -declare module '@material-ui/lab/esm/Autocomplete/index' { - declare module.exports: $Exports<'@material-ui/lab/esm/Autocomplete'>; -} -declare module '@material-ui/lab/esm/Autocomplete/index.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/Autocomplete'>; -} -declare module '@material-ui/lab/esm/AvatarGroup/AvatarGroup.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/AvatarGroup/AvatarGroup'>; -} -declare module '@material-ui/lab/esm/AvatarGroup/index' { - declare module.exports: $Exports<'@material-ui/lab/esm/AvatarGroup'>; -} -declare module '@material-ui/lab/esm/AvatarGroup/index.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/AvatarGroup'>; -} -declare module '@material-ui/lab/esm/index' { - declare module.exports: $Exports<'@material-ui/lab/esm'>; -} -declare module '@material-ui/lab/esm/index.js' { - declare module.exports: $Exports<'@material-ui/lab/esm'>; -} -declare module '@material-ui/lab/esm/internal/svg-icons/Add.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/internal/svg-icons/Add'>; -} -declare module '@material-ui/lab/esm/internal/svg-icons/ArrowDropDown.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/internal/svg-icons/ArrowDropDown'>; -} -declare module '@material-ui/lab/esm/internal/svg-icons/Close.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/internal/svg-icons/Close'>; -} -declare module '@material-ui/lab/esm/internal/svg-icons/ErrorOutline.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/internal/svg-icons/ErrorOutline'>; -} -declare module '@material-ui/lab/esm/internal/svg-icons/FirstPage.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/internal/svg-icons/FirstPage'>; -} -declare module '@material-ui/lab/esm/internal/svg-icons/InfoOutlined.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/internal/svg-icons/InfoOutlined'>; -} -declare module '@material-ui/lab/esm/internal/svg-icons/LastPage.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/internal/svg-icons/LastPage'>; -} -declare module '@material-ui/lab/esm/internal/svg-icons/NavigateBefore.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/internal/svg-icons/NavigateBefore'>; -} -declare module '@material-ui/lab/esm/internal/svg-icons/NavigateNext.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/internal/svg-icons/NavigateNext'>; -} -declare module '@material-ui/lab/esm/internal/svg-icons/ReportProblemOutlined.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/internal/svg-icons/ReportProblemOutlined'>; -} -declare module '@material-ui/lab/esm/internal/svg-icons/Star.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/internal/svg-icons/Star'>; -} -declare module '@material-ui/lab/esm/internal/svg-icons/SuccessOutlined.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/internal/svg-icons/SuccessOutlined'>; -} -declare module '@material-ui/lab/esm/Pagination/index' { - declare module.exports: $Exports<'@material-ui/lab/esm/Pagination'>; -} -declare module '@material-ui/lab/esm/Pagination/index.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/Pagination'>; -} -declare module '@material-ui/lab/esm/Pagination/Pagination.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/Pagination/Pagination'>; -} -declare module '@material-ui/lab/esm/Pagination/usePagination.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/Pagination/usePagination'>; -} -declare module '@material-ui/lab/esm/PaginationItem/index' { - declare module.exports: $Exports<'@material-ui/lab/esm/PaginationItem'>; -} -declare module '@material-ui/lab/esm/PaginationItem/index.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/PaginationItem'>; -} -declare module '@material-ui/lab/esm/PaginationItem/PaginationItem.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/PaginationItem/PaginationItem'>; -} -declare module '@material-ui/lab/esm/Rating/index' { - declare module.exports: $Exports<'@material-ui/lab/esm/Rating'>; -} -declare module '@material-ui/lab/esm/Rating/index.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/Rating'>; -} -declare module '@material-ui/lab/esm/Rating/Rating.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/Rating/Rating'>; -} -declare module '@material-ui/lab/esm/Skeleton/index' { - declare module.exports: $Exports<'@material-ui/lab/esm/Skeleton'>; -} -declare module '@material-ui/lab/esm/Skeleton/index.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/Skeleton'>; -} -declare module '@material-ui/lab/esm/Skeleton/Skeleton.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/Skeleton/Skeleton'>; -} -declare module '@material-ui/lab/esm/SpeedDial/index' { - declare module.exports: $Exports<'@material-ui/lab/esm/SpeedDial'>; -} -declare module '@material-ui/lab/esm/SpeedDial/index.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/SpeedDial'>; -} -declare module '@material-ui/lab/esm/SpeedDial/SpeedDial.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/SpeedDial/SpeedDial'>; -} -declare module '@material-ui/lab/esm/SpeedDialAction/index' { - declare module.exports: $Exports<'@material-ui/lab/esm/SpeedDialAction'>; -} -declare module '@material-ui/lab/esm/SpeedDialAction/index.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/SpeedDialAction'>; -} -declare module '@material-ui/lab/esm/SpeedDialAction/SpeedDialAction.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/SpeedDialAction/SpeedDialAction'>; -} -declare module '@material-ui/lab/esm/SpeedDialIcon/index' { - declare module.exports: $Exports<'@material-ui/lab/esm/SpeedDialIcon'>; -} -declare module '@material-ui/lab/esm/SpeedDialIcon/index.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/SpeedDialIcon'>; -} -declare module '@material-ui/lab/esm/SpeedDialIcon/SpeedDialIcon.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/SpeedDialIcon/SpeedDialIcon'>; -} -declare module '@material-ui/lab/esm/TabContext/index' { - declare module.exports: $Exports<'@material-ui/lab/esm/TabContext'>; -} -declare module '@material-ui/lab/esm/TabContext/index.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/TabContext'>; -} -declare module '@material-ui/lab/esm/TabContext/TabContext.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/TabContext/TabContext'>; -} -declare module '@material-ui/lab/esm/TabList/index' { - declare module.exports: $Exports<'@material-ui/lab/esm/TabList'>; -} -declare module '@material-ui/lab/esm/TabList/index.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/TabList'>; -} -declare module '@material-ui/lab/esm/TabList/TabList.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/TabList/TabList'>; -} -declare module '@material-ui/lab/esm/TabPanel/index' { - declare module.exports: $Exports<'@material-ui/lab/esm/TabPanel'>; -} -declare module '@material-ui/lab/esm/TabPanel/index.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/TabPanel'>; -} -declare module '@material-ui/lab/esm/TabPanel/TabPanel.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/TabPanel/TabPanel'>; -} -declare module '@material-ui/lab/esm/Timeline/index' { - declare module.exports: $Exports<'@material-ui/lab/esm/Timeline'>; -} -declare module '@material-ui/lab/esm/Timeline/index.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/Timeline'>; -} -declare module '@material-ui/lab/esm/Timeline/Timeline.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/Timeline/Timeline'>; -} -declare module '@material-ui/lab/esm/Timeline/TimelineContext.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/Timeline/TimelineContext'>; -} -declare module '@material-ui/lab/esm/TimelineConnector/index' { - declare module.exports: $Exports<'@material-ui/lab/esm/TimelineConnector'>; -} -declare module '@material-ui/lab/esm/TimelineConnector/index.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/TimelineConnector'>; -} -declare module '@material-ui/lab/esm/TimelineConnector/TimelineConnector.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/TimelineConnector/TimelineConnector'>; -} -declare module '@material-ui/lab/esm/TimelineContent/index' { - declare module.exports: $Exports<'@material-ui/lab/esm/TimelineContent'>; -} -declare module '@material-ui/lab/esm/TimelineContent/index.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/TimelineContent'>; -} -declare module '@material-ui/lab/esm/TimelineContent/TimelineContent.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/TimelineContent/TimelineContent'>; -} -declare module '@material-ui/lab/esm/TimelineDot/index' { - declare module.exports: $Exports<'@material-ui/lab/esm/TimelineDot'>; -} -declare module '@material-ui/lab/esm/TimelineDot/index.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/TimelineDot'>; -} -declare module '@material-ui/lab/esm/TimelineDot/TimelineDot.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/TimelineDot/TimelineDot'>; -} -declare module '@material-ui/lab/esm/TimelineItem/index' { - declare module.exports: $Exports<'@material-ui/lab/esm/TimelineItem'>; -} -declare module '@material-ui/lab/esm/TimelineItem/index.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/TimelineItem'>; -} -declare module '@material-ui/lab/esm/TimelineItem/TimelineItem.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/TimelineItem/TimelineItem'>; -} -declare module '@material-ui/lab/esm/TimelineItem/TimelineItemContext.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/TimelineItem/TimelineItemContext'>; -} -declare module '@material-ui/lab/esm/TimelineOppositeContent/index' { - declare module.exports: $Exports<'@material-ui/lab/esm/TimelineOppositeContent'>; -} -declare module '@material-ui/lab/esm/TimelineOppositeContent/index.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/TimelineOppositeContent'>; -} -declare module '@material-ui/lab/esm/TimelineOppositeContent/TimelineOppositeContent.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/TimelineOppositeContent/TimelineOppositeContent'>; -} -declare module '@material-ui/lab/esm/TimelineSeparator/index' { - declare module.exports: $Exports<'@material-ui/lab/esm/TimelineSeparator'>; -} -declare module '@material-ui/lab/esm/TimelineSeparator/index.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/TimelineSeparator'>; -} -declare module '@material-ui/lab/esm/TimelineSeparator/TimelineSeparator.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/TimelineSeparator/TimelineSeparator'>; -} -declare module '@material-ui/lab/esm/ToggleButton/index' { - declare module.exports: $Exports<'@material-ui/lab/esm/ToggleButton'>; -} -declare module '@material-ui/lab/esm/ToggleButton/index.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/ToggleButton'>; -} -declare module '@material-ui/lab/esm/ToggleButton/ToggleButton.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/ToggleButton/ToggleButton'>; -} -declare module '@material-ui/lab/esm/ToggleButtonGroup/index' { - declare module.exports: $Exports<'@material-ui/lab/esm/ToggleButtonGroup'>; -} -declare module '@material-ui/lab/esm/ToggleButtonGroup/index.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/ToggleButtonGroup'>; -} -declare module '@material-ui/lab/esm/ToggleButtonGroup/isValueSelected.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/ToggleButtonGroup/isValueSelected'>; -} -declare module '@material-ui/lab/esm/ToggleButtonGroup/ToggleButtonGroup.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/ToggleButtonGroup/ToggleButtonGroup'>; -} -declare module '@material-ui/lab/esm/TreeItem/index' { - declare module.exports: $Exports<'@material-ui/lab/esm/TreeItem'>; -} -declare module '@material-ui/lab/esm/TreeItem/index.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/TreeItem'>; -} -declare module '@material-ui/lab/esm/TreeItem/TreeItem.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/TreeItem/TreeItem'>; -} -declare module '@material-ui/lab/esm/TreeView/index' { - declare module.exports: $Exports<'@material-ui/lab/esm/TreeView'>; -} -declare module '@material-ui/lab/esm/TreeView/index.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/TreeView'>; -} -declare module '@material-ui/lab/esm/TreeView/TreeView.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/TreeView/TreeView'>; -} -declare module '@material-ui/lab/esm/TreeView/TreeViewContext.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/TreeView/TreeViewContext'>; -} -declare module '@material-ui/lab/esm/useAutocomplete/index' { - declare module.exports: $Exports<'@material-ui/lab/esm/useAutocomplete'>; -} -declare module '@material-ui/lab/esm/useAutocomplete/index.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/useAutocomplete'>; -} -declare module '@material-ui/lab/esm/useAutocomplete/useAutocomplete.js' { - declare module.exports: $Exports<'@material-ui/lab/esm/useAutocomplete/useAutocomplete'>; -} -declare module '@material-ui/lab/index' { - declare module.exports: $Exports<'@material-ui/lab'>; -} -declare module '@material-ui/lab/index.js' { - declare module.exports: $Exports<'@material-ui/lab'>; -} -declare module '@material-ui/lab/internal/svg-icons/Add.js' { - declare module.exports: $Exports<'@material-ui/lab/internal/svg-icons/Add'>; -} -declare module '@material-ui/lab/internal/svg-icons/ArrowDropDown.js' { - declare module.exports: $Exports<'@material-ui/lab/internal/svg-icons/ArrowDropDown'>; -} -declare module '@material-ui/lab/internal/svg-icons/Close.js' { - declare module.exports: $Exports<'@material-ui/lab/internal/svg-icons/Close'>; -} -declare module '@material-ui/lab/internal/svg-icons/ErrorOutline.js' { - declare module.exports: $Exports<'@material-ui/lab/internal/svg-icons/ErrorOutline'>; -} -declare module '@material-ui/lab/internal/svg-icons/FirstPage.js' { - declare module.exports: $Exports<'@material-ui/lab/internal/svg-icons/FirstPage'>; -} -declare module '@material-ui/lab/internal/svg-icons/InfoOutlined.js' { - declare module.exports: $Exports<'@material-ui/lab/internal/svg-icons/InfoOutlined'>; -} -declare module '@material-ui/lab/internal/svg-icons/LastPage.js' { - declare module.exports: $Exports<'@material-ui/lab/internal/svg-icons/LastPage'>; -} -declare module '@material-ui/lab/internal/svg-icons/NavigateBefore.js' { - declare module.exports: $Exports<'@material-ui/lab/internal/svg-icons/NavigateBefore'>; -} -declare module '@material-ui/lab/internal/svg-icons/NavigateNext.js' { - declare module.exports: $Exports<'@material-ui/lab/internal/svg-icons/NavigateNext'>; -} -declare module '@material-ui/lab/internal/svg-icons/ReportProblemOutlined.js' { - declare module.exports: $Exports<'@material-ui/lab/internal/svg-icons/ReportProblemOutlined'>; -} -declare module '@material-ui/lab/internal/svg-icons/Star.js' { - declare module.exports: $Exports<'@material-ui/lab/internal/svg-icons/Star'>; -} -declare module '@material-ui/lab/internal/svg-icons/SuccessOutlined.js' { - declare module.exports: $Exports<'@material-ui/lab/internal/svg-icons/SuccessOutlined'>; -} -declare module '@material-ui/lab/Pagination/index' { - declare module.exports: $Exports<'@material-ui/lab/Pagination'>; -} -declare module '@material-ui/lab/Pagination/index.js' { - declare module.exports: $Exports<'@material-ui/lab/Pagination'>; -} -declare module '@material-ui/lab/Pagination/Pagination.js' { - declare module.exports: $Exports<'@material-ui/lab/Pagination/Pagination'>; -} -declare module '@material-ui/lab/Pagination/usePagination.js' { - declare module.exports: $Exports<'@material-ui/lab/Pagination/usePagination'>; -} -declare module '@material-ui/lab/PaginationItem/index' { - declare module.exports: $Exports<'@material-ui/lab/PaginationItem'>; -} -declare module '@material-ui/lab/PaginationItem/index.js' { - declare module.exports: $Exports<'@material-ui/lab/PaginationItem'>; -} -declare module '@material-ui/lab/PaginationItem/PaginationItem.js' { - declare module.exports: $Exports<'@material-ui/lab/PaginationItem/PaginationItem'>; -} -declare module '@material-ui/lab/Rating/index' { - declare module.exports: $Exports<'@material-ui/lab/Rating'>; -} -declare module '@material-ui/lab/Rating/index.js' { - declare module.exports: $Exports<'@material-ui/lab/Rating'>; -} -declare module '@material-ui/lab/Rating/Rating.js' { - declare module.exports: $Exports<'@material-ui/lab/Rating/Rating'>; -} -declare module '@material-ui/lab/Skeleton/index' { - declare module.exports: $Exports<'@material-ui/lab/Skeleton'>; -} -declare module '@material-ui/lab/Skeleton/index.js' { - declare module.exports: $Exports<'@material-ui/lab/Skeleton'>; -} -declare module '@material-ui/lab/Skeleton/Skeleton.js' { - declare module.exports: $Exports<'@material-ui/lab/Skeleton/Skeleton'>; -} -declare module '@material-ui/lab/SpeedDial/index' { - declare module.exports: $Exports<'@material-ui/lab/SpeedDial'>; -} -declare module '@material-ui/lab/SpeedDial/index.js' { - declare module.exports: $Exports<'@material-ui/lab/SpeedDial'>; -} -declare module '@material-ui/lab/SpeedDial/SpeedDial.js' { - declare module.exports: $Exports<'@material-ui/lab/SpeedDial/SpeedDial'>; -} -declare module '@material-ui/lab/SpeedDialAction/index' { - declare module.exports: $Exports<'@material-ui/lab/SpeedDialAction'>; -} -declare module '@material-ui/lab/SpeedDialAction/index.js' { - declare module.exports: $Exports<'@material-ui/lab/SpeedDialAction'>; -} -declare module '@material-ui/lab/SpeedDialAction/SpeedDialAction.js' { - declare module.exports: $Exports<'@material-ui/lab/SpeedDialAction/SpeedDialAction'>; -} -declare module '@material-ui/lab/SpeedDialIcon/index' { - declare module.exports: $Exports<'@material-ui/lab/SpeedDialIcon'>; -} -declare module '@material-ui/lab/SpeedDialIcon/index.js' { - declare module.exports: $Exports<'@material-ui/lab/SpeedDialIcon'>; -} -declare module '@material-ui/lab/SpeedDialIcon/SpeedDialIcon.js' { - declare module.exports: $Exports<'@material-ui/lab/SpeedDialIcon/SpeedDialIcon'>; -} -declare module '@material-ui/lab/TabContext/index' { - declare module.exports: $Exports<'@material-ui/lab/TabContext'>; -} -declare module '@material-ui/lab/TabContext/index.js' { - declare module.exports: $Exports<'@material-ui/lab/TabContext'>; -} -declare module '@material-ui/lab/TabContext/TabContext.js' { - declare module.exports: $Exports<'@material-ui/lab/TabContext/TabContext'>; -} -declare module '@material-ui/lab/TabList/index' { - declare module.exports: $Exports<'@material-ui/lab/TabList'>; -} -declare module '@material-ui/lab/TabList/index.js' { - declare module.exports: $Exports<'@material-ui/lab/TabList'>; -} -declare module '@material-ui/lab/TabList/TabList.js' { - declare module.exports: $Exports<'@material-ui/lab/TabList/TabList'>; -} -declare module '@material-ui/lab/TabPanel/index' { - declare module.exports: $Exports<'@material-ui/lab/TabPanel'>; -} -declare module '@material-ui/lab/TabPanel/index.js' { - declare module.exports: $Exports<'@material-ui/lab/TabPanel'>; -} -declare module '@material-ui/lab/TabPanel/TabPanel.js' { - declare module.exports: $Exports<'@material-ui/lab/TabPanel/TabPanel'>; -} -declare module '@material-ui/lab/Timeline/index' { - declare module.exports: $Exports<'@material-ui/lab/Timeline'>; -} -declare module '@material-ui/lab/Timeline/index.js' { - declare module.exports: $Exports<'@material-ui/lab/Timeline'>; -} -declare module '@material-ui/lab/Timeline/Timeline.js' { - declare module.exports: $Exports<'@material-ui/lab/Timeline/Timeline'>; -} -declare module '@material-ui/lab/Timeline/TimelineContext.js' { - declare module.exports: $Exports<'@material-ui/lab/Timeline/TimelineContext'>; -} -declare module '@material-ui/lab/TimelineConnector/index' { - declare module.exports: $Exports<'@material-ui/lab/TimelineConnector'>; -} -declare module '@material-ui/lab/TimelineConnector/index.js' { - declare module.exports: $Exports<'@material-ui/lab/TimelineConnector'>; -} -declare module '@material-ui/lab/TimelineConnector/TimelineConnector.js' { - declare module.exports: $Exports<'@material-ui/lab/TimelineConnector/TimelineConnector'>; -} -declare module '@material-ui/lab/TimelineContent/index' { - declare module.exports: $Exports<'@material-ui/lab/TimelineContent'>; -} -declare module '@material-ui/lab/TimelineContent/index.js' { - declare module.exports: $Exports<'@material-ui/lab/TimelineContent'>; -} -declare module '@material-ui/lab/TimelineContent/TimelineContent.js' { - declare module.exports: $Exports<'@material-ui/lab/TimelineContent/TimelineContent'>; -} -declare module '@material-ui/lab/TimelineDot/index' { - declare module.exports: $Exports<'@material-ui/lab/TimelineDot'>; -} -declare module '@material-ui/lab/TimelineDot/index.js' { - declare module.exports: $Exports<'@material-ui/lab/TimelineDot'>; -} -declare module '@material-ui/lab/TimelineDot/TimelineDot.js' { - declare module.exports: $Exports<'@material-ui/lab/TimelineDot/TimelineDot'>; -} -declare module '@material-ui/lab/TimelineItem/index' { - declare module.exports: $Exports<'@material-ui/lab/TimelineItem'>; -} -declare module '@material-ui/lab/TimelineItem/index.js' { - declare module.exports: $Exports<'@material-ui/lab/TimelineItem'>; -} -declare module '@material-ui/lab/TimelineItem/TimelineItem.js' { - declare module.exports: $Exports<'@material-ui/lab/TimelineItem/TimelineItem'>; -} -declare module '@material-ui/lab/TimelineItem/TimelineItemContext.js' { - declare module.exports: $Exports<'@material-ui/lab/TimelineItem/TimelineItemContext'>; -} -declare module '@material-ui/lab/TimelineOppositeContent/index' { - declare module.exports: $Exports<'@material-ui/lab/TimelineOppositeContent'>; -} -declare module '@material-ui/lab/TimelineOppositeContent/index.js' { - declare module.exports: $Exports<'@material-ui/lab/TimelineOppositeContent'>; -} -declare module '@material-ui/lab/TimelineOppositeContent/TimelineOppositeContent.js' { - declare module.exports: $Exports<'@material-ui/lab/TimelineOppositeContent/TimelineOppositeContent'>; -} -declare module '@material-ui/lab/TimelineSeparator/index' { - declare module.exports: $Exports<'@material-ui/lab/TimelineSeparator'>; -} -declare module '@material-ui/lab/TimelineSeparator/index.js' { - declare module.exports: $Exports<'@material-ui/lab/TimelineSeparator'>; -} -declare module '@material-ui/lab/TimelineSeparator/TimelineSeparator.js' { - declare module.exports: $Exports<'@material-ui/lab/TimelineSeparator/TimelineSeparator'>; -} -declare module '@material-ui/lab/ToggleButton/index' { - declare module.exports: $Exports<'@material-ui/lab/ToggleButton'>; -} -declare module '@material-ui/lab/ToggleButton/index.js' { - declare module.exports: $Exports<'@material-ui/lab/ToggleButton'>; -} -declare module '@material-ui/lab/ToggleButton/ToggleButton.js' { - declare module.exports: $Exports<'@material-ui/lab/ToggleButton/ToggleButton'>; -} -declare module '@material-ui/lab/ToggleButtonGroup/index' { - declare module.exports: $Exports<'@material-ui/lab/ToggleButtonGroup'>; -} -declare module '@material-ui/lab/ToggleButtonGroup/index.js' { - declare module.exports: $Exports<'@material-ui/lab/ToggleButtonGroup'>; -} -declare module '@material-ui/lab/ToggleButtonGroup/isValueSelected.js' { - declare module.exports: $Exports<'@material-ui/lab/ToggleButtonGroup/isValueSelected'>; -} -declare module '@material-ui/lab/ToggleButtonGroup/ToggleButtonGroup.js' { - declare module.exports: $Exports<'@material-ui/lab/ToggleButtonGroup/ToggleButtonGroup'>; -} -declare module '@material-ui/lab/TreeItem/index' { - declare module.exports: $Exports<'@material-ui/lab/TreeItem'>; -} -declare module '@material-ui/lab/TreeItem/index.js' { - declare module.exports: $Exports<'@material-ui/lab/TreeItem'>; -} -declare module '@material-ui/lab/TreeItem/TreeItem.js' { - declare module.exports: $Exports<'@material-ui/lab/TreeItem/TreeItem'>; -} -declare module '@material-ui/lab/TreeView/index' { - declare module.exports: $Exports<'@material-ui/lab/TreeView'>; -} -declare module '@material-ui/lab/TreeView/index.js' { - declare module.exports: $Exports<'@material-ui/lab/TreeView'>; -} -declare module '@material-ui/lab/TreeView/TreeView.js' { - declare module.exports: $Exports<'@material-ui/lab/TreeView/TreeView'>; -} -declare module '@material-ui/lab/TreeView/TreeViewContext.js' { - declare module.exports: $Exports<'@material-ui/lab/TreeView/TreeViewContext'>; -} -declare module '@material-ui/lab/useAutocomplete/index' { - declare module.exports: $Exports<'@material-ui/lab/useAutocomplete'>; -} -declare module '@material-ui/lab/useAutocomplete/index.js' { - declare module.exports: $Exports<'@material-ui/lab/useAutocomplete'>; -} -declare module '@material-ui/lab/useAutocomplete/useAutocomplete.js' { - declare module.exports: $Exports<'@material-ui/lab/useAutocomplete/useAutocomplete'>; -} diff --git a/flow-typed/npm/@material-ui/pickers_vx.x.x.js b/flow-typed/npm/@material-ui/pickers_vx.x.x.js deleted file mode 100644 index 63f7ef9a..00000000 --- a/flow-typed/npm/@material-ui/pickers_vx.x.x.js +++ /dev/null @@ -1,267 +0,0 @@ -// flow-typed signature: 68a5d254af57d558fad31680002a0182 -// flow-typed version: <>/@material-ui/pickers_v^4.0.0-alpha.12/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * '@material-ui/pickers' - * - * 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 '@material-ui/pickers' { - 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 '@material-ui/pickers/adapter/date-fns/index.cjs' { - declare module.exports: any; -} - -declare module '@material-ui/pickers/adapter/date-fns' { - declare module.exports: any; -} - -declare module '@material-ui/pickers/adapter/dayjs/index.cjs' { - declare module.exports: any; -} - -declare module '@material-ui/pickers/adapter/dayjs' { - declare module.exports: any; -} - -declare module '@material-ui/pickers/adapter/luxon/index.cjs' { - declare module.exports: any; -} - -declare module '@material-ui/pickers/adapter/luxon' { - declare module.exports: any; -} - -declare module '@material-ui/pickers/adapter/moment/index.cjs' { - declare module.exports: any; -} - -declare module '@material-ui/pickers/adapter/moment' { - declare module.exports: any; -} - -declare module '@material-ui/pickers/Calendar' { - declare module.exports: any; -} - -declare module '@material-ui/pickers/CalendarSkeleton' { - declare module.exports: any; -} - -declare module '@material-ui/pickers/Clock-c2c3c22b' { - declare module.exports: any; -} - -declare module '@material-ui/pickers/Clock' { - declare module.exports: any; -} - -declare module '@material-ui/pickers/ClockView-68b1ba14' { - declare module.exports: any; -} - -declare module '@material-ui/pickers/ClockView' { - declare module.exports: any; -} - -declare module '@material-ui/pickers/DatePicker-eb1dd2e7' { - declare module.exports: any; -} - -declare module '@material-ui/pickers/DatePicker' { - declare module.exports: any; -} - -declare module '@material-ui/pickers/DateTimePicker-844e45bc' { - declare module.exports: any; -} - -declare module '@material-ui/pickers/DateTimePicker' { - declare module.exports: any; -} - -declare module '@material-ui/pickers/Day' { - declare module.exports: any; -} - -declare module '@material-ui/pickers/dimensions-f39eca69' { - declare module.exports: any; -} - -declare module '@material-ui/pickers/dist/material-ui-pickers.esm' { - declare module.exports: any; -} - -declare module '@material-ui/pickers/dist/material-ui-pickers' { - declare module.exports: any; -} - -declare module '@material-ui/pickers/dist/material-ui-pickers.umd' { - declare module.exports: any; -} - -declare module '@material-ui/pickers/dist/material-ui-pickers.umd.min' { - declare module.exports: any; -} - -declare module '@material-ui/pickers/LocalizationProvider' { - declare module.exports: any; -} - -declare module '@material-ui/pickers/makePickerWithState-d83c633b' { - declare module.exports: any; -} - -declare module '@material-ui/pickers/Picker-858b30b6' { - declare module.exports: any; -} - -declare module '@material-ui/pickers/Picker' { - declare module.exports: any; -} - -declare module '@material-ui/pickers/TimePicker-af76ca08' { - declare module.exports: any; -} - -declare module '@material-ui/pickers/TimePicker' { - declare module.exports: any; -} - -declare module '@material-ui/pickers/useCanAutoFocus-1eacc580' { - declare module.exports: any; -} - -declare module '@material-ui/pickers/useKeyDown-5aaf69f9' { - declare module.exports: any; -} - -// Filename aliases -declare module '@material-ui/pickers/adapter/date-fns/index.cjs.js' { - declare module.exports: $Exports<'@material-ui/pickers/adapter/date-fns/index.cjs'>; -} -declare module '@material-ui/pickers/adapter/date-fns/index' { - declare module.exports: $Exports<'@material-ui/pickers/adapter/date-fns'>; -} -declare module '@material-ui/pickers/adapter/date-fns/index.js' { - declare module.exports: $Exports<'@material-ui/pickers/adapter/date-fns'>; -} -declare module '@material-ui/pickers/adapter/dayjs/index.cjs.js' { - declare module.exports: $Exports<'@material-ui/pickers/adapter/dayjs/index.cjs'>; -} -declare module '@material-ui/pickers/adapter/dayjs/index' { - declare module.exports: $Exports<'@material-ui/pickers/adapter/dayjs'>; -} -declare module '@material-ui/pickers/adapter/dayjs/index.js' { - declare module.exports: $Exports<'@material-ui/pickers/adapter/dayjs'>; -} -declare module '@material-ui/pickers/adapter/luxon/index.cjs.js' { - declare module.exports: $Exports<'@material-ui/pickers/adapter/luxon/index.cjs'>; -} -declare module '@material-ui/pickers/adapter/luxon/index' { - declare module.exports: $Exports<'@material-ui/pickers/adapter/luxon'>; -} -declare module '@material-ui/pickers/adapter/luxon/index.js' { - declare module.exports: $Exports<'@material-ui/pickers/adapter/luxon'>; -} -declare module '@material-ui/pickers/adapter/moment/index.cjs.js' { - declare module.exports: $Exports<'@material-ui/pickers/adapter/moment/index.cjs'>; -} -declare module '@material-ui/pickers/adapter/moment/index' { - declare module.exports: $Exports<'@material-ui/pickers/adapter/moment'>; -} -declare module '@material-ui/pickers/adapter/moment/index.js' { - declare module.exports: $Exports<'@material-ui/pickers/adapter/moment'>; -} -declare module '@material-ui/pickers/Calendar.js' { - declare module.exports: $Exports<'@material-ui/pickers/Calendar'>; -} -declare module '@material-ui/pickers/CalendarSkeleton.js' { - declare module.exports: $Exports<'@material-ui/pickers/CalendarSkeleton'>; -} -declare module '@material-ui/pickers/Clock-c2c3c22b.js' { - declare module.exports: $Exports<'@material-ui/pickers/Clock-c2c3c22b'>; -} -declare module '@material-ui/pickers/Clock.js' { - declare module.exports: $Exports<'@material-ui/pickers/Clock'>; -} -declare module '@material-ui/pickers/ClockView-68b1ba14.js' { - declare module.exports: $Exports<'@material-ui/pickers/ClockView-68b1ba14'>; -} -declare module '@material-ui/pickers/ClockView.js' { - declare module.exports: $Exports<'@material-ui/pickers/ClockView'>; -} -declare module '@material-ui/pickers/DatePicker-eb1dd2e7.js' { - declare module.exports: $Exports<'@material-ui/pickers/DatePicker-eb1dd2e7'>; -} -declare module '@material-ui/pickers/DatePicker.js' { - declare module.exports: $Exports<'@material-ui/pickers/DatePicker'>; -} -declare module '@material-ui/pickers/DateTimePicker-844e45bc.js' { - declare module.exports: $Exports<'@material-ui/pickers/DateTimePicker-844e45bc'>; -} -declare module '@material-ui/pickers/DateTimePicker.js' { - declare module.exports: $Exports<'@material-ui/pickers/DateTimePicker'>; -} -declare module '@material-ui/pickers/Day.js' { - declare module.exports: $Exports<'@material-ui/pickers/Day'>; -} -declare module '@material-ui/pickers/dimensions-f39eca69.js' { - declare module.exports: $Exports<'@material-ui/pickers/dimensions-f39eca69'>; -} -declare module '@material-ui/pickers/dist/material-ui-pickers.esm.js' { - declare module.exports: $Exports<'@material-ui/pickers/dist/material-ui-pickers.esm'>; -} -declare module '@material-ui/pickers/dist/material-ui-pickers.js' { - declare module.exports: $Exports<'@material-ui/pickers/dist/material-ui-pickers'>; -} -declare module '@material-ui/pickers/dist/material-ui-pickers.umd.js' { - declare module.exports: $Exports<'@material-ui/pickers/dist/material-ui-pickers.umd'>; -} -declare module '@material-ui/pickers/dist/material-ui-pickers.umd.min.js' { - declare module.exports: $Exports<'@material-ui/pickers/dist/material-ui-pickers.umd.min'>; -} -declare module '@material-ui/pickers/index' { - declare module.exports: $Exports<'@material-ui/pickers'>; -} -declare module '@material-ui/pickers/index.js' { - declare module.exports: $Exports<'@material-ui/pickers'>; -} -declare module '@material-ui/pickers/LocalizationProvider.js' { - declare module.exports: $Exports<'@material-ui/pickers/LocalizationProvider'>; -} -declare module '@material-ui/pickers/makePickerWithState-d83c633b.js' { - declare module.exports: $Exports<'@material-ui/pickers/makePickerWithState-d83c633b'>; -} -declare module '@material-ui/pickers/Picker-858b30b6.js' { - declare module.exports: $Exports<'@material-ui/pickers/Picker-858b30b6'>; -} -declare module '@material-ui/pickers/Picker.js' { - declare module.exports: $Exports<'@material-ui/pickers/Picker'>; -} -declare module '@material-ui/pickers/TimePicker-af76ca08.js' { - declare module.exports: $Exports<'@material-ui/pickers/TimePicker-af76ca08'>; -} -declare module '@material-ui/pickers/TimePicker.js' { - declare module.exports: $Exports<'@material-ui/pickers/TimePicker'>; -} -declare module '@material-ui/pickers/useCanAutoFocus-1eacc580.js' { - declare module.exports: $Exports<'@material-ui/pickers/useCanAutoFocus-1eacc580'>; -} -declare module '@material-ui/pickers/useKeyDown-5aaf69f9.js' { - declare module.exports: $Exports<'@material-ui/pickers/useKeyDown-5aaf69f9'>; -} diff --git a/flow-typed/npm/@rescripts/cli_vx.x.x.js b/flow-typed/npm/@rescripts/cli_vx.x.x.js deleted file mode 100644 index ea3c1380..00000000 --- a/flow-typed/npm/@rescripts/cli_vx.x.x.js +++ /dev/null @@ -1,67 +0,0 @@ -// flow-typed signature: daf31116cb8d16563fe4950da978eaea -// flow-typed version: <>/@rescripts/cli_v0.0.14/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * '@rescripts/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 '@rescripts/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 '@rescripts/cli/bin/rescripts' { - declare module.exports: any; -} - -declare module '@rescripts/cli/loader' { - declare module.exports: any; -} - -declare module '@rescripts/cli/patch' { - declare module.exports: any; -} - -declare module '@rescripts/cli/scripts/build' { - declare module.exports: any; -} - -declare module '@rescripts/cli/scripts/start' { - declare module.exports: any; -} - -declare module '@rescripts/cli/scripts/test' { - declare module.exports: any; -} - -// Filename aliases -declare module '@rescripts/cli/bin/rescripts.js' { - declare module.exports: $Exports<'@rescripts/cli/bin/rescripts'>; -} -declare module '@rescripts/cli/loader.js' { - declare module.exports: $Exports<'@rescripts/cli/loader'>; -} -declare module '@rescripts/cli/patch.js' { - declare module.exports: $Exports<'@rescripts/cli/patch'>; -} -declare module '@rescripts/cli/scripts/build.js' { - declare module.exports: $Exports<'@rescripts/cli/scripts/build'>; -} -declare module '@rescripts/cli/scripts/start.js' { - declare module.exports: $Exports<'@rescripts/cli/scripts/start'>; -} -declare module '@rescripts/cli/scripts/test.js' { - declare module.exports: $Exports<'@rescripts/cli/scripts/test'>; -} diff --git a/flow-typed/npm/@tiddlygit/tiddlywiki_vx.x.x.js b/flow-typed/npm/@tiddlygit/tiddlywiki_vx.x.x.js deleted file mode 100644 index b776c69b..00000000 --- a/flow-typed/npm/@tiddlygit/tiddlywiki_vx.x.x.js +++ /dev/null @@ -1,3693 +0,0 @@ -// flow-typed signature: 00d082083a46c4cf0a3979c9ac30ebfd -// flow-typed version: <>/@tiddlygit/tiddlywiki_v^5.1.23-prerelease.20201217/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * '@tiddlygit/tiddlywiki' - * - * 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 '@tiddlygit/tiddlywiki' { - 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 '@tiddlygit/tiddlywiki/bin/optimise-svgs' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/boot/boot' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/boot/bootprefix' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/boot/sjcl' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/commander' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/commands/build' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/commands/clearpassword' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/commands/deletetiddlers' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/commands/editions' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/commands/fetch' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/commands/help' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/commands/import' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/commands/init' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/commands/listen' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/commands/load' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/commands/makelibrary' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/commands/output' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/commands/password' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/commands/render' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/commands/rendertiddler' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/commands/rendertiddlers' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/commands/save' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/commands/savelibrarytiddlers' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/commands/savetiddler' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/commands/savetiddlers' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/commands/savewikifolder' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/commands/server' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/commands/setfield' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/commands/unpackplugin' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/commands/verbose' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/commands/version' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/config' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/deserializers' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/editor/engines/framed' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/editor/engines/simple' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/editor/factory' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/editor/operations/bitmap/clear' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/editor/operations/bitmap/resize' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/editor/operations/bitmap/rotate-left' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/editor/operations/text/excise' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/editor/operations/text/make-link' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/editor/operations/text/prefix-lines' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/editor/operations/text/replace-all' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/editor/operations/text/replace-selection' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/editor/operations/text/save-selection' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/editor/operations/text/wrap-lines' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/editor/operations/text/wrap-selection' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filterrunprefixes/all' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filterrunprefixes/and' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filterrunprefixes/else' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filterrunprefixes/except' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filterrunprefixes/filter' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filterrunprefixes/intersection' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filterrunprefixes/or' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filterrunprefixes/reduce' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/addprefix' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/addsuffix' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/after' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/all' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/all/current' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/all/missing' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/all/orphans' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/all/shadows' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/all/tags' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/all/tiddlers' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/backlinks' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/before' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/commands' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/compare' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/contains' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/count' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/days' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/duplicateslugs' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/each' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/eachday' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/editiondescription' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/editions' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/else' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/encodings' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/enlist' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/field' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/fields' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/filter' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/format' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/format/date' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/format/relativedate' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/get' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/getindex' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/getvariable' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/has' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/haschanged' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/indexes' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/insertbefore' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/is' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/is/binary' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/is/blank' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/is/current' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/is/draft' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/is/image' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/is/missing' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/is/orphan' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/is/shadow' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/is/system' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/is/tag' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/is/tiddler' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/is/variable' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/limit' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/links' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/list' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/listed' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/listops' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/lookup' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/match' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/math' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/minlength' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/modules' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/moduletypes' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/next' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/plugintiddlers' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/prefix' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/previous' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/range' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/reduce' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/regexp' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/removeprefix' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/removesuffix' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/sameday' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/search' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/shadowsource' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/slugify' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/sort' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/sortsub' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/splitbefore' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/storyviews' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/strings' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/subfilter' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/subtiddlerfields' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/suffix' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/tag' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/tagging' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/tags' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/then' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/title' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/untagged' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/variables' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/wikiparserrules' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/filters/x-listops' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/indexers/backlinks-index' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/indexers/field-indexer' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/indexers/tag-indexer' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/info/platform' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/keyboard' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/language' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/macros/changecount' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/macros/contrastcolour' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/macros/csvtiddlers' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/macros/displayshortcuts' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/macros/jsontiddler' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/macros/jsontiddlers' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/macros/makedatauri' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/macros/now' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/macros/qualify' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/macros/resolvepath' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/macros/uniquetitle' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/macros/version' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/audioparser' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/binaryparser' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/csvparser' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/htmlparser' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/imageparser' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/parseutils' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/pdfparser' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/textparser' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/videoparser' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/codeblock' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/codeinline' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/commentblock' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/commentinline' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/dash' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/emphasis/bold' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/emphasis/italic' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/emphasis/strikethrough' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/emphasis/subscript' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/emphasis/superscript' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/emphasis/underscore' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/entity' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/extlink' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/filteredtranscludeblock' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/filteredtranscludeinline' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/hardlinebreaks' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/heading' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/horizrule' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/html' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/image' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/import' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/list' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/macrocallblock' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/macrocallinline' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/macrodef' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/prettyextlink' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/prettylink' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/quoteblock' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/rules' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/styleblock' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/styleinline' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/syslink' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/table' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/transcludeblock' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/transcludeinline' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/typedblock' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/whitespace' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/wikilink' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/wikiparser' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/wikirulebase' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/pluginswitcher' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/saver-handler' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/savers/andtidwiki' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/savers/beaker' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/savers/custom' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/savers/download' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/savers/fsosaver' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/savers/gitea' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/savers/github' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/savers/gitlab' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/savers/hyperdrive' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/savers/manualdownload' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/savers/msdownload' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/savers/put' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/savers/tiddlyfox' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/savers/tiddlyie' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/savers/twedit' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/savers/upload' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/server/authenticators/basic' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/server/authenticators/header' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/server/routes/delete-tiddler' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/server/routes/get-favicon' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/server/routes/get-file' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/server/routes/get-index' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/server/routes/get-login-basic' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/server/routes/get-status' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/server/routes/get-tiddler-html' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/server/routes/get-tiddler' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/server/routes/get-tiddlers-json' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/server/routes/put-tiddler' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/server/server' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/startup/browser-messaging' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/startup/commands' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/startup/css-escape-polyfill' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/startup/favicon' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/startup/info' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/startup/load-modules' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/startup/password' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/startup/plugins' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/startup/render' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/startup/rootwidget' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/startup/startup' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/startup/story' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/startup/windows' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/story' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/storyviews/classic' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/storyviews/pop' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/storyviews/zoomin' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/syncer' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/tiddler' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/upgraders/plugins' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/upgraders/system' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/upgraders/themetweaks' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/utils/base64-utf8/base64-utf8.module' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/utils/base64-utf8/base64-utf8.module.min' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/utils/crypto' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/utils/csv' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/utils/diff-match-patch/diff_match_patch_uncompressed' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/utils/diff-match-patch/diff_match_patch' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/utils/dom/animations/slide' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/utils/dom/animator' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/utils/dom/browser' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/utils/dom/csscolorparser' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/utils/dom/dom' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/utils/dom/dragndrop' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/utils/dom/http' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/utils/dom/keyboard' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/utils/dom/modal' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/utils/dom/notifier' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/utils/dom/popup' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/utils/dom/scroller' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/utils/edition-info' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/utils/fakedom' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/utils/filesystem' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/utils/linked-list' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/utils/logger' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/utils/parsetree' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/utils/performance' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/utils/pluginmaker' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/utils/transliterate' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/utils/utils' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/action-createtiddler' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/action-deletefield' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/action-deletetiddler' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/action-listops' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/action-log' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/action-navigate' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/action-popup' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/action-sendmessage' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/action-setfield' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/browse' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/button' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/checkbox' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/codeblock' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/confirm' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/count' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/diff-text' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/draggable' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/droppable' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/dropzone' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/edit-binary' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/edit-bitmap' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/edit-shortcut' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/edit-text' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/edit' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/element' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/encrypt' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/entity' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/eventcatcher' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/fieldmangler' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/fields' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/image' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/importvariables' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/keyboard' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/link' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/linkcatcher' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/list' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/log' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/macrocall' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/navigator' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/password' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/qualify' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/radio' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/range' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/raw' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/reveal' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/scrollable' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/select' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/setvariable' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/text' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/tiddler' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/transclude' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/vars' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/view' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/widget' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/wikify' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/wiki-bulkops' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/core/modules/wiki' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/editions/test/tiddlers/tests/test-backlinks' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/editions/test/tiddlers/tests/test-compare-filter' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/editions/test/tiddlers/tests/test-filters' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/editions/test/tiddlers/tests/test-html-parser' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/editions/test/tiddlers/tests/test-linked-list' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/editions/test/tiddlers/tests/test-prefixes-filter' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/editions/test/tiddlers/tests/test-tags' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/editions/test/tiddlers/tests/test-tiddler' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/editions/test/tiddlers/tests/test-utils' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/editions/test/tiddlers/tests/test-widget' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/editions/test/tiddlers/tests/test-wikitext-parser' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/editions/test/tiddlers/tests/test-wikitext' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/absolute/b' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/absolute/program' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/absolute/submodule/a' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/allTests' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/cyclic/a' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/cyclic/b' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/cyclic/program' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/determinism/program' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/determinism/submodule/a' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/exactExports/a' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/exactExports/program' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/hasOwnProperty/hasOwnProperty' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/hasOwnProperty/program' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/hasOwnProperty/toString' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/method/a' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/method/program' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/missing/program' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/monkeys/a' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/monkeys/program' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/nested/a/b/c/d' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/nested/program' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/relative/program' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/relative/submodule/a' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/relative/submodule/b' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/test' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/transitive/a' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/transitive/b' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/transitive/c' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/transitive/program' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/editions/tw5.com/tiddlers/system/dropbox-url-macro' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/editions/tw5.com/tiddlers/system/if-macro' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/async/files/async.min.v1.5.0' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/aws/modules/command' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/aws/modules/encodings' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/aws/modules/init' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/aws/modules/utils' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/bibtex/deserializer' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/bibtex/files/bibtexParse' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/browser-sniff/browser' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/browser-sniff/files/bowser' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/browser-storage/rawmarkup' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/browser-storage/startup' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/cecily/cecily' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/classictools/modules/recipe' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-autocomplete/files/addon/hint/anyword-hint' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-autocomplete/files/addon/hint/css-hint' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-autocomplete/files/addon/hint/html-hint' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-autocomplete/files/addon/hint/javascript-hint' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-autocomplete/files/addon/hint/show-hint' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-autocomplete/files/addon/hint/xml-hint' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-closebrackets/files/addon/edit/closebrackets' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-closebrackets/files/addon/edit/matchbrackets' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-closetag/files/addon/edit/closetag' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-closetag/files/addon/fold/xml-fold' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-fullscreen-editing/files/addon/fullscreen/fullscreen' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-keymap-emacs/files/keymap/emacs' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-keymap-sublime-text/files/addons/comment/comment' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-keymap-sublime-text/files/keymap/sublime' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-keymap-vim/files/keymap/vim' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-mode-css/files/mode/css/css' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-mode-htmlembedded/files/addon/mode/multiplex' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-mode-htmlembedded/files/mode/htmlembedded/htmlembedded' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-mode-htmlmixed/files/mode/htmlmixed/htmlmixed' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-mode-javascript/files/mode/javascript/javascript' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-mode-markdown/files/mode/markdown/markdown' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-mode-x-tiddlywiki/files/mode/tiddlywiki/tiddlywiki' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-mode-xml/files/mode/xml/xml' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-search-replace/files/addon/search/jump-to-line' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-search-replace/files/addon/search/search' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-search-replace/files/addon/search/searchcursor' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror/edit-codemirror' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror/engine' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror/files/addon/dialog/dialog' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror/files/addon/selection/activeline' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror/files/codemirror' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror/files/mode/tw-meta' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/consent-banner/raw-widget' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/consent-banner/startup' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/d3/barwidget' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/d3/cloudwidget' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/d3/files/cloud/d3.layout.cloud' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/d3/files/d3.min' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/dynannotate/modules/dynannotate' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/dynannotate/modules/selection-tracker' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/dynannotate/modules/textmap' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/dynaview/dynaview' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/evernote/modules/enex-deserializer' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/external-attachments/startup' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/filesystem/filesystemadaptor' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/freelinks/plain-text' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/freelinks/text' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/googleanalytics/googleanalytics' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/hammerjs/files/hammer.min.v2.0.8' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/highlight/files/highlight.pack' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/highlight/highlightblock' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/innerwiki/data' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/innerwiki/innerwiki' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/innerwiki/screenshot' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/jasmine/files/jasmine-core/lib/jasmine-core' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/jasmine/files/jasmine-core/lib/jasmine-core/boot' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/jasmine/files/jasmine-core/lib/jasmine-core/jasmine-html' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/jasmine/files/jasmine-core/lib/jasmine-core/jasmine' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/jasmine/files/jasmine-core/lib/jasmine-core/json2' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/jasmine/files/jasmine-core/lib/jasmine-core/node_boot' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/jasmine/files/jasmine/lib/command' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/jasmine/files/jasmine/lib/filters/console_spec_filter' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/jasmine/files/jasmine/lib/jasmine' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/jasmine/files/jasmine/lib/reporters/completion_reporter' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/jasmine/files/jasmine/lib/reporters/console_reporter' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/jasmine/jasmine-plugin' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/jszip/files/jszip.min.v2.6.1' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/jszip/startup' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/katex/files/katex' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/katex/files/katex.min' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/katex/files/mhchem.min' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/katex/latex-parser' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/katex/wrapper' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/markdown/files/remarkable' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/markdown/wrapper' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/mobiledragdrop/files/ios-drag-drop' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/mobiledragdrop/startup' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/nodewebkitsaver/nodewebkit' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/pluginlibrary/libraryserver' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/qrcode/files/qrcode' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/qrcode/makeqr' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/railroad/components' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/railroad/files/railroad-diagrams' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/railroad/parser' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/railroad/typed-parser' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/railroad/wrapper' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/savetrail/savetrail' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/sax/files/lib/sax' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/share/rawmarkup' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/stacked-view/stacked' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/tahoelafs/saver' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/text-slicer/modules/commands/slice' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/text-slicer/modules/filters/list-children' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/text-slicer/modules/slicer' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/text-slicer/modules/startup/slicer-startup' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/tiddlyweb/tiddlywebadaptor' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/tw2parser/classictransclude' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/tw2parser/entry' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/tw2parser/parameteradapter' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/tw2parser/wikitextparser' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/tw2parser/wikitextrules' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/twitter/startup' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/twitter/twitter-widget' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/upgrade/config' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/xlsx-utils/deserializer' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/xlsx-utils/files/cpexcel' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/xlsx-utils/files/xlsx' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/xlsx-utils/importer' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/xlsx-utils/startup' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/xlsx-utils/xlsx-import-command' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/xmldom/files/dom-parser' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/xmldom/files/dom' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/xmldom/files/entities' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/xmldom/files/sax' { - declare module.exports: any; -} - -declare module '@tiddlygit/tiddlywiki/tiddlywiki' { - declare module.exports: any; -} - -// Filename aliases -declare module '@tiddlygit/tiddlywiki/bin/optimise-svgs.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/bin/optimise-svgs'>; -} -declare module '@tiddlygit/tiddlywiki/boot/boot.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/boot/boot'>; -} -declare module '@tiddlygit/tiddlywiki/boot/bootprefix.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/boot/bootprefix'>; -} -declare module '@tiddlygit/tiddlywiki/boot/sjcl.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/boot/sjcl'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/commander.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/commander'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/commands/build.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/commands/build'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/commands/clearpassword.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/commands/clearpassword'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/commands/deletetiddlers.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/commands/deletetiddlers'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/commands/editions.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/commands/editions'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/commands/fetch.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/commands/fetch'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/commands/help.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/commands/help'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/commands/import.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/commands/import'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/commands/init.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/commands/init'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/commands/listen.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/commands/listen'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/commands/load.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/commands/load'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/commands/makelibrary.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/commands/makelibrary'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/commands/output.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/commands/output'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/commands/password.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/commands/password'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/commands/render.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/commands/render'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/commands/rendertiddler.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/commands/rendertiddler'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/commands/rendertiddlers.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/commands/rendertiddlers'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/commands/save.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/commands/save'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/commands/savelibrarytiddlers.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/commands/savelibrarytiddlers'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/commands/savetiddler.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/commands/savetiddler'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/commands/savetiddlers.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/commands/savetiddlers'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/commands/savewikifolder.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/commands/savewikifolder'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/commands/server.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/commands/server'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/commands/setfield.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/commands/setfield'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/commands/unpackplugin.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/commands/unpackplugin'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/commands/verbose.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/commands/verbose'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/commands/version.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/commands/version'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/config.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/config'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/deserializers.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/deserializers'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/editor/engines/framed.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/editor/engines/framed'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/editor/engines/simple.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/editor/engines/simple'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/editor/factory.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/editor/factory'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/editor/operations/bitmap/clear.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/editor/operations/bitmap/clear'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/editor/operations/bitmap/resize.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/editor/operations/bitmap/resize'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/editor/operations/bitmap/rotate-left.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/editor/operations/bitmap/rotate-left'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/editor/operations/text/excise.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/editor/operations/text/excise'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/editor/operations/text/make-link.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/editor/operations/text/make-link'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/editor/operations/text/prefix-lines.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/editor/operations/text/prefix-lines'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/editor/operations/text/replace-all.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/editor/operations/text/replace-all'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/editor/operations/text/replace-selection.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/editor/operations/text/replace-selection'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/editor/operations/text/save-selection.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/editor/operations/text/save-selection'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/editor/operations/text/wrap-lines.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/editor/operations/text/wrap-lines'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/editor/operations/text/wrap-selection.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/editor/operations/text/wrap-selection'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filterrunprefixes/all.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filterrunprefixes/all'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filterrunprefixes/and.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filterrunprefixes/and'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filterrunprefixes/else.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filterrunprefixes/else'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filterrunprefixes/except.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filterrunprefixes/except'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filterrunprefixes/filter.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filterrunprefixes/filter'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filterrunprefixes/intersection.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filterrunprefixes/intersection'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filterrunprefixes/or.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filterrunprefixes/or'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filterrunprefixes/reduce.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filterrunprefixes/reduce'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/addprefix.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/addprefix'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/addsuffix.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/addsuffix'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/after.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/after'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/all.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/all'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/all/current.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/all/current'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/all/missing.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/all/missing'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/all/orphans.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/all/orphans'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/all/shadows.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/all/shadows'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/all/tags.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/all/tags'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/all/tiddlers.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/all/tiddlers'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/backlinks.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/backlinks'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/before.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/before'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/commands.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/commands'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/compare.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/compare'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/contains.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/contains'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/count.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/count'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/days.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/days'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/duplicateslugs.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/duplicateslugs'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/each.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/each'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/eachday.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/eachday'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/editiondescription.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/editiondescription'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/editions.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/editions'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/else.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/else'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/encodings.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/encodings'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/enlist.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/enlist'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/field.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/field'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/fields.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/fields'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/filter.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/filter'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/format.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/format'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/format/date.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/format/date'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/format/relativedate.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/format/relativedate'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/get.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/get'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/getindex.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/getindex'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/getvariable.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/getvariable'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/has.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/has'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/haschanged.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/haschanged'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/indexes.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/indexes'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/insertbefore.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/insertbefore'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/is.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/is'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/is/binary.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/is/binary'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/is/blank.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/is/blank'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/is/current.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/is/current'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/is/draft.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/is/draft'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/is/image.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/is/image'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/is/missing.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/is/missing'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/is/orphan.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/is/orphan'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/is/shadow.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/is/shadow'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/is/system.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/is/system'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/is/tag.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/is/tag'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/is/tiddler.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/is/tiddler'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/is/variable.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/is/variable'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/limit.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/limit'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/links.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/links'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/list.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/list'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/listed.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/listed'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/listops.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/listops'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/lookup.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/lookup'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/match.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/match'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/math.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/math'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/minlength.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/minlength'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/modules.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/modules'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/moduletypes.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/moduletypes'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/next.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/next'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/plugintiddlers.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/plugintiddlers'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/prefix.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/prefix'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/previous.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/previous'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/range.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/range'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/reduce.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/reduce'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/regexp.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/regexp'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/removeprefix.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/removeprefix'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/removesuffix.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/removesuffix'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/sameday.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/sameday'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/search.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/search'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/shadowsource.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/shadowsource'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/slugify.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/slugify'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/sort.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/sort'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/sortsub.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/sortsub'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/splitbefore.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/splitbefore'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/storyviews.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/storyviews'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/strings.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/strings'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/subfilter.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/subfilter'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/subtiddlerfields.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/subtiddlerfields'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/suffix.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/suffix'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/tag.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/tag'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/tagging.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/tagging'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/tags.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/tags'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/then.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/then'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/title.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/title'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/untagged.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/untagged'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/variables.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/variables'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/wikiparserrules.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/wikiparserrules'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/filters/x-listops.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/filters/x-listops'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/indexers/backlinks-index.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/indexers/backlinks-index'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/indexers/field-indexer.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/indexers/field-indexer'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/indexers/tag-indexer.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/indexers/tag-indexer'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/info/platform.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/info/platform'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/keyboard.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/keyboard'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/language.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/language'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/macros/changecount.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/macros/changecount'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/macros/contrastcolour.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/macros/contrastcolour'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/macros/csvtiddlers.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/macros/csvtiddlers'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/macros/displayshortcuts.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/macros/displayshortcuts'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/macros/jsontiddler.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/macros/jsontiddler'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/macros/jsontiddlers.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/macros/jsontiddlers'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/macros/makedatauri.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/macros/makedatauri'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/macros/now.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/macros/now'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/macros/qualify.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/macros/qualify'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/macros/resolvepath.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/macros/resolvepath'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/macros/uniquetitle.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/macros/uniquetitle'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/macros/version.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/macros/version'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/audioparser.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/parsers/audioparser'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/binaryparser.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/parsers/binaryparser'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/csvparser.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/parsers/csvparser'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/htmlparser.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/parsers/htmlparser'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/imageparser.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/parsers/imageparser'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/parseutils.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/parsers/parseutils'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/pdfparser.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/parsers/pdfparser'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/textparser.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/parsers/textparser'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/videoparser.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/parsers/videoparser'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/codeblock.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/codeblock'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/codeinline.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/codeinline'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/commentblock.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/commentblock'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/commentinline.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/commentinline'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/dash.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/dash'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/emphasis/bold.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/emphasis/bold'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/emphasis/italic.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/emphasis/italic'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/emphasis/strikethrough.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/emphasis/strikethrough'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/emphasis/subscript.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/emphasis/subscript'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/emphasis/superscript.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/emphasis/superscript'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/emphasis/underscore.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/emphasis/underscore'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/entity.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/entity'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/extlink.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/extlink'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/filteredtranscludeblock.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/filteredtranscludeblock'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/filteredtranscludeinline.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/filteredtranscludeinline'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/hardlinebreaks.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/hardlinebreaks'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/heading.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/heading'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/horizrule.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/horizrule'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/html.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/html'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/image.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/image'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/import.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/import'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/list.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/list'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/macrocallblock.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/macrocallblock'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/macrocallinline.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/macrocallinline'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/macrodef.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/macrodef'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/prettyextlink.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/prettyextlink'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/prettylink.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/prettylink'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/quoteblock.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/quoteblock'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/rules.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/rules'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/styleblock.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/styleblock'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/styleinline.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/styleinline'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/syslink.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/syslink'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/table.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/table'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/transcludeblock.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/transcludeblock'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/transcludeinline.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/transcludeinline'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/typedblock.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/typedblock'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/whitespace.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/whitespace'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/wikilink.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/rules/wikilink'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/wikiparser.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/wikiparser'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/wikirulebase.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/parsers/wikiparser/wikirulebase'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/pluginswitcher.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/pluginswitcher'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/saver-handler.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/saver-handler'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/savers/andtidwiki.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/savers/andtidwiki'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/savers/beaker.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/savers/beaker'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/savers/custom.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/savers/custom'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/savers/download.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/savers/download'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/savers/fsosaver.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/savers/fsosaver'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/savers/gitea.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/savers/gitea'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/savers/github.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/savers/github'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/savers/gitlab.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/savers/gitlab'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/savers/hyperdrive.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/savers/hyperdrive'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/savers/manualdownload.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/savers/manualdownload'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/savers/msdownload.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/savers/msdownload'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/savers/put.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/savers/put'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/savers/tiddlyfox.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/savers/tiddlyfox'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/savers/tiddlyie.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/savers/tiddlyie'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/savers/twedit.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/savers/twedit'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/savers/upload.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/savers/upload'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/server/authenticators/basic.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/server/authenticators/basic'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/server/authenticators/header.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/server/authenticators/header'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/server/routes/delete-tiddler.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/server/routes/delete-tiddler'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/server/routes/get-favicon.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/server/routes/get-favicon'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/server/routes/get-file.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/server/routes/get-file'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/server/routes/get-index.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/server/routes/get-index'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/server/routes/get-login-basic.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/server/routes/get-login-basic'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/server/routes/get-status.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/server/routes/get-status'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/server/routes/get-tiddler-html.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/server/routes/get-tiddler-html'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/server/routes/get-tiddler.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/server/routes/get-tiddler'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/server/routes/get-tiddlers-json.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/server/routes/get-tiddlers-json'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/server/routes/put-tiddler.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/server/routes/put-tiddler'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/server/server.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/server/server'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/startup/browser-messaging.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/startup/browser-messaging'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/startup/commands.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/startup/commands'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/startup/css-escape-polyfill.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/startup/css-escape-polyfill'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/startup/favicon.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/startup/favicon'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/startup/info.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/startup/info'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/startup/load-modules.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/startup/load-modules'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/startup/password.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/startup/password'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/startup/plugins.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/startup/plugins'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/startup/render.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/startup/render'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/startup/rootwidget.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/startup/rootwidget'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/startup/startup.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/startup/startup'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/startup/story.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/startup/story'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/startup/windows.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/startup/windows'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/story.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/story'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/storyviews/classic.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/storyviews/classic'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/storyviews/pop.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/storyviews/pop'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/storyviews/zoomin.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/storyviews/zoomin'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/syncer.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/syncer'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/tiddler.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/tiddler'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/upgraders/plugins.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/upgraders/plugins'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/upgraders/system.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/upgraders/system'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/upgraders/themetweaks.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/upgraders/themetweaks'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/utils/base64-utf8/base64-utf8.module.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/utils/base64-utf8/base64-utf8.module'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/utils/base64-utf8/base64-utf8.module.min.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/utils/base64-utf8/base64-utf8.module.min'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/utils/crypto.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/utils/crypto'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/utils/csv.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/utils/csv'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/utils/diff-match-patch/diff_match_patch_uncompressed.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/utils/diff-match-patch/diff_match_patch_uncompressed'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/utils/diff-match-patch/diff_match_patch.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/utils/diff-match-patch/diff_match_patch'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/utils/dom/animations/slide.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/utils/dom/animations/slide'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/utils/dom/animator.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/utils/dom/animator'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/utils/dom/browser.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/utils/dom/browser'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/utils/dom/csscolorparser.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/utils/dom/csscolorparser'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/utils/dom/dom.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/utils/dom/dom'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/utils/dom/dragndrop.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/utils/dom/dragndrop'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/utils/dom/http.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/utils/dom/http'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/utils/dom/keyboard.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/utils/dom/keyboard'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/utils/dom/modal.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/utils/dom/modal'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/utils/dom/notifier.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/utils/dom/notifier'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/utils/dom/popup.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/utils/dom/popup'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/utils/dom/scroller.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/utils/dom/scroller'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/utils/edition-info.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/utils/edition-info'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/utils/fakedom.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/utils/fakedom'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/utils/filesystem.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/utils/filesystem'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/utils/linked-list.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/utils/linked-list'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/utils/logger.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/utils/logger'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/utils/parsetree.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/utils/parsetree'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/utils/performance.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/utils/performance'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/utils/pluginmaker.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/utils/pluginmaker'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/utils/transliterate.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/utils/transliterate'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/utils/utils.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/utils/utils'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/action-createtiddler.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/action-createtiddler'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/action-deletefield.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/action-deletefield'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/action-deletetiddler.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/action-deletetiddler'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/action-listops.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/action-listops'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/action-log.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/action-log'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/action-navigate.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/action-navigate'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/action-popup.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/action-popup'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/action-sendmessage.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/action-sendmessage'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/action-setfield.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/action-setfield'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/browse.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/browse'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/button.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/button'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/checkbox.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/checkbox'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/codeblock.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/codeblock'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/confirm.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/confirm'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/count.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/count'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/diff-text.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/diff-text'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/draggable.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/draggable'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/droppable.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/droppable'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/dropzone.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/dropzone'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/edit-binary.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/edit-binary'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/edit-bitmap.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/edit-bitmap'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/edit-shortcut.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/edit-shortcut'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/edit-text.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/edit-text'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/edit.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/edit'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/element.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/element'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/encrypt.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/encrypt'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/entity.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/entity'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/eventcatcher.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/eventcatcher'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/fieldmangler.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/fieldmangler'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/fields.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/fields'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/image.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/image'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/importvariables.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/importvariables'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/keyboard.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/keyboard'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/link.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/link'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/linkcatcher.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/linkcatcher'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/list.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/list'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/log.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/log'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/macrocall.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/macrocall'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/navigator.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/navigator'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/password.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/password'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/qualify.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/qualify'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/radio.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/radio'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/range.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/range'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/raw.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/raw'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/reveal.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/reveal'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/scrollable.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/scrollable'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/select.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/select'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/setvariable.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/setvariable'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/text.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/text'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/tiddler.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/tiddler'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/transclude.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/transclude'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/vars.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/vars'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/view.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/view'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/widget.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/widget'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/widgets/wikify.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/widgets/wikify'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/wiki-bulkops.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/wiki-bulkops'>; -} -declare module '@tiddlygit/tiddlywiki/core/modules/wiki.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/core/modules/wiki'>; -} -declare module '@tiddlygit/tiddlywiki/editions/test/tiddlers/tests/test-backlinks.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/editions/test/tiddlers/tests/test-backlinks'>; -} -declare module '@tiddlygit/tiddlywiki/editions/test/tiddlers/tests/test-compare-filter.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/editions/test/tiddlers/tests/test-compare-filter'>; -} -declare module '@tiddlygit/tiddlywiki/editions/test/tiddlers/tests/test-filters.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/editions/test/tiddlers/tests/test-filters'>; -} -declare module '@tiddlygit/tiddlywiki/editions/test/tiddlers/tests/test-html-parser.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/editions/test/tiddlers/tests/test-html-parser'>; -} -declare module '@tiddlygit/tiddlywiki/editions/test/tiddlers/tests/test-linked-list.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/editions/test/tiddlers/tests/test-linked-list'>; -} -declare module '@tiddlygit/tiddlywiki/editions/test/tiddlers/tests/test-prefixes-filter.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/editions/test/tiddlers/tests/test-prefixes-filter'>; -} -declare module '@tiddlygit/tiddlywiki/editions/test/tiddlers/tests/test-tags.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/editions/test/tiddlers/tests/test-tags'>; -} -declare module '@tiddlygit/tiddlywiki/editions/test/tiddlers/tests/test-tiddler.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/editions/test/tiddlers/tests/test-tiddler'>; -} -declare module '@tiddlygit/tiddlywiki/editions/test/tiddlers/tests/test-utils.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/editions/test/tiddlers/tests/test-utils'>; -} -declare module '@tiddlygit/tiddlywiki/editions/test/tiddlers/tests/test-widget.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/editions/test/tiddlers/tests/test-widget'>; -} -declare module '@tiddlygit/tiddlywiki/editions/test/tiddlers/tests/test-wikitext-parser.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/editions/test/tiddlers/tests/test-wikitext-parser'>; -} -declare module '@tiddlygit/tiddlywiki/editions/test/tiddlers/tests/test-wikitext.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/editions/test/tiddlers/tests/test-wikitext'>; -} -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/absolute/b.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/absolute/b'>; -} -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/absolute/program.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/absolute/program'>; -} -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/absolute/submodule/a.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/absolute/submodule/a'>; -} -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/allTests.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/allTests'>; -} -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/cyclic/a.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/cyclic/a'>; -} -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/cyclic/b.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/cyclic/b'>; -} -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/cyclic/program.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/cyclic/program'>; -} -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/determinism/program.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/determinism/program'>; -} -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/determinism/submodule/a.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/determinism/submodule/a'>; -} -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/exactExports/a.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/exactExports/a'>; -} -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/exactExports/program.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/exactExports/program'>; -} -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/hasOwnProperty/hasOwnProperty.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/hasOwnProperty/hasOwnProperty'>; -} -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/hasOwnProperty/program.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/hasOwnProperty/program'>; -} -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/hasOwnProperty/toString.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/hasOwnProperty/toString'>; -} -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/method/a.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/method/a'>; -} -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/method/program.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/method/program'>; -} -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/missing/program.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/missing/program'>; -} -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/monkeys/a.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/monkeys/a'>; -} -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/monkeys/program.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/monkeys/program'>; -} -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/nested/a/b/c/d.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/nested/a/b/c/d'>; -} -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/nested/program.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/nested/program'>; -} -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/relative/program.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/relative/program'>; -} -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/relative/submodule/a.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/relative/submodule/a'>; -} -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/relative/submodule/b.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/relative/submodule/b'>; -} -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/test.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/test'>; -} -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/transitive/a.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/transitive/a'>; -} -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/transitive/b.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/transitive/b'>; -} -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/transitive/c.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/transitive/c'>; -} -declare module '@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/transitive/program.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/editions/testcommonjs/tiddlers/transitive/program'>; -} -declare module '@tiddlygit/tiddlywiki/editions/tw5.com/tiddlers/system/dropbox-url-macro.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/editions/tw5.com/tiddlers/system/dropbox-url-macro'>; -} -declare module '@tiddlygit/tiddlywiki/editions/tw5.com/tiddlers/system/if-macro.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/editions/tw5.com/tiddlers/system/if-macro'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/async/files/async.min.v1.5.0.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/async/files/async.min.v1.5.0'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/aws/modules/command.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/aws/modules/command'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/aws/modules/encodings.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/aws/modules/encodings'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/aws/modules/init.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/aws/modules/init'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/aws/modules/utils.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/aws/modules/utils'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/bibtex/deserializer.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/bibtex/deserializer'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/bibtex/files/bibtexParse.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/bibtex/files/bibtexParse'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/browser-sniff/browser.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/browser-sniff/browser'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/browser-sniff/files/bowser.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/browser-sniff/files/bowser'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/browser-storage/rawmarkup.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/browser-storage/rawmarkup'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/browser-storage/startup.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/browser-storage/startup'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/cecily/cecily.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/cecily/cecily'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/classictools/modules/recipe.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/classictools/modules/recipe'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-autocomplete/files/addon/hint/anyword-hint.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-autocomplete/files/addon/hint/anyword-hint'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-autocomplete/files/addon/hint/css-hint.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-autocomplete/files/addon/hint/css-hint'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-autocomplete/files/addon/hint/html-hint.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-autocomplete/files/addon/hint/html-hint'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-autocomplete/files/addon/hint/javascript-hint.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-autocomplete/files/addon/hint/javascript-hint'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-autocomplete/files/addon/hint/show-hint.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-autocomplete/files/addon/hint/show-hint'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-autocomplete/files/addon/hint/xml-hint.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-autocomplete/files/addon/hint/xml-hint'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-closebrackets/files/addon/edit/closebrackets.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-closebrackets/files/addon/edit/closebrackets'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-closebrackets/files/addon/edit/matchbrackets.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-closebrackets/files/addon/edit/matchbrackets'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-closetag/files/addon/edit/closetag.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-closetag/files/addon/edit/closetag'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-closetag/files/addon/fold/xml-fold.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-closetag/files/addon/fold/xml-fold'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-fullscreen-editing/files/addon/fullscreen/fullscreen.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-fullscreen-editing/files/addon/fullscreen/fullscreen'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-keymap-emacs/files/keymap/emacs.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-keymap-emacs/files/keymap/emacs'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-keymap-sublime-text/files/addons/comment/comment.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-keymap-sublime-text/files/addons/comment/comment'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-keymap-sublime-text/files/keymap/sublime.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-keymap-sublime-text/files/keymap/sublime'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-keymap-vim/files/keymap/vim.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-keymap-vim/files/keymap/vim'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-mode-css/files/mode/css/css.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-mode-css/files/mode/css/css'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-mode-htmlembedded/files/addon/mode/multiplex.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-mode-htmlembedded/files/addon/mode/multiplex'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-mode-htmlembedded/files/mode/htmlembedded/htmlembedded.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-mode-htmlembedded/files/mode/htmlembedded/htmlembedded'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-mode-htmlmixed/files/mode/htmlmixed/htmlmixed.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-mode-htmlmixed/files/mode/htmlmixed/htmlmixed'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-mode-javascript/files/mode/javascript/javascript.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-mode-javascript/files/mode/javascript/javascript'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-mode-markdown/files/mode/markdown/markdown.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-mode-markdown/files/mode/markdown/markdown'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-mode-x-tiddlywiki/files/mode/tiddlywiki/tiddlywiki.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-mode-x-tiddlywiki/files/mode/tiddlywiki/tiddlywiki'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-mode-xml/files/mode/xml/xml.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-mode-xml/files/mode/xml/xml'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-search-replace/files/addon/search/jump-to-line.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-search-replace/files/addon/search/jump-to-line'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-search-replace/files/addon/search/search.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-search-replace/files/addon/search/search'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-search-replace/files/addon/search/searchcursor.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror-search-replace/files/addon/search/searchcursor'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror/edit-codemirror.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror/edit-codemirror'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror/engine.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror/engine'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror/files/addon/dialog/dialog.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror/files/addon/dialog/dialog'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror/files/addon/selection/activeline.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror/files/addon/selection/activeline'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror/files/codemirror.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror/files/codemirror'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror/files/mode/tw-meta.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/codemirror/files/mode/tw-meta'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/consent-banner/raw-widget.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/consent-banner/raw-widget'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/consent-banner/startup.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/consent-banner/startup'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/d3/barwidget.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/d3/barwidget'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/d3/cloudwidget.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/d3/cloudwidget'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/d3/files/cloud/d3.layout.cloud.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/d3/files/cloud/d3.layout.cloud'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/d3/files/d3.min.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/d3/files/d3.min'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/dynannotate/modules/dynannotate.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/dynannotate/modules/dynannotate'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/dynannotate/modules/selection-tracker.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/dynannotate/modules/selection-tracker'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/dynannotate/modules/textmap.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/dynannotate/modules/textmap'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/dynaview/dynaview.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/dynaview/dynaview'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/evernote/modules/enex-deserializer.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/evernote/modules/enex-deserializer'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/external-attachments/startup.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/external-attachments/startup'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/filesystem/filesystemadaptor.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/filesystem/filesystemadaptor'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/freelinks/plain-text.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/freelinks/plain-text'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/freelinks/text.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/freelinks/text'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/googleanalytics/googleanalytics.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/googleanalytics/googleanalytics'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/hammerjs/files/hammer.min.v2.0.8.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/hammerjs/files/hammer.min.v2.0.8'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/highlight/files/highlight.pack.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/highlight/files/highlight.pack'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/highlight/highlightblock.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/highlight/highlightblock'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/innerwiki/data.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/innerwiki/data'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/innerwiki/innerwiki.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/innerwiki/innerwiki'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/innerwiki/screenshot.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/innerwiki/screenshot'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/jasmine/files/jasmine-core/lib/jasmine-core.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/jasmine/files/jasmine-core/lib/jasmine-core'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/jasmine/files/jasmine-core/lib/jasmine-core/boot.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/jasmine/files/jasmine-core/lib/jasmine-core/boot'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/jasmine/files/jasmine-core/lib/jasmine-core/jasmine-html.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/jasmine/files/jasmine-core/lib/jasmine-core/jasmine-html'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/jasmine/files/jasmine-core/lib/jasmine-core/jasmine.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/jasmine/files/jasmine-core/lib/jasmine-core/jasmine'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/jasmine/files/jasmine-core/lib/jasmine-core/json2.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/jasmine/files/jasmine-core/lib/jasmine-core/json2'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/jasmine/files/jasmine-core/lib/jasmine-core/node_boot.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/jasmine/files/jasmine-core/lib/jasmine-core/node_boot'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/jasmine/files/jasmine/lib/command.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/jasmine/files/jasmine/lib/command'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/jasmine/files/jasmine/lib/filters/console_spec_filter.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/jasmine/files/jasmine/lib/filters/console_spec_filter'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/jasmine/files/jasmine/lib/jasmine.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/jasmine/files/jasmine/lib/jasmine'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/jasmine/files/jasmine/lib/reporters/completion_reporter.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/jasmine/files/jasmine/lib/reporters/completion_reporter'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/jasmine/files/jasmine/lib/reporters/console_reporter.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/jasmine/files/jasmine/lib/reporters/console_reporter'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/jasmine/jasmine-plugin.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/jasmine/jasmine-plugin'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/jszip/files/jszip.min.v2.6.1.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/jszip/files/jszip.min.v2.6.1'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/jszip/startup.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/jszip/startup'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/katex/files/katex.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/katex/files/katex'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/katex/files/katex.min.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/katex/files/katex.min'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/katex/files/mhchem.min.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/katex/files/mhchem.min'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/katex/latex-parser.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/katex/latex-parser'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/katex/wrapper.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/katex/wrapper'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/markdown/files/remarkable.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/markdown/files/remarkable'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/markdown/wrapper.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/markdown/wrapper'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/mobiledragdrop/files/ios-drag-drop.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/mobiledragdrop/files/ios-drag-drop'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/mobiledragdrop/startup.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/mobiledragdrop/startup'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/nodewebkitsaver/nodewebkit.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/nodewebkitsaver/nodewebkit'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/pluginlibrary/libraryserver.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/pluginlibrary/libraryserver'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/qrcode/files/qrcode.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/qrcode/files/qrcode'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/qrcode/makeqr.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/qrcode/makeqr'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/railroad/components.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/railroad/components'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/railroad/files/railroad-diagrams.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/railroad/files/railroad-diagrams'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/railroad/parser.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/railroad/parser'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/railroad/typed-parser.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/railroad/typed-parser'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/railroad/wrapper.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/railroad/wrapper'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/savetrail/savetrail.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/savetrail/savetrail'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/sax/files/lib/sax.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/sax/files/lib/sax'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/share/rawmarkup.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/share/rawmarkup'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/stacked-view/stacked.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/stacked-view/stacked'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/tahoelafs/saver.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/tahoelafs/saver'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/text-slicer/modules/commands/slice.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/text-slicer/modules/commands/slice'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/text-slicer/modules/filters/list-children.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/text-slicer/modules/filters/list-children'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/text-slicer/modules/slicer.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/text-slicer/modules/slicer'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/text-slicer/modules/startup/slicer-startup.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/text-slicer/modules/startup/slicer-startup'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/tiddlyweb/tiddlywebadaptor.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/tiddlyweb/tiddlywebadaptor'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/tw2parser/classictransclude.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/tw2parser/classictransclude'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/tw2parser/entry.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/tw2parser/entry'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/tw2parser/parameteradapter.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/tw2parser/parameteradapter'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/tw2parser/wikitextparser.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/tw2parser/wikitextparser'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/tw2parser/wikitextrules.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/tw2parser/wikitextrules'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/twitter/startup.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/twitter/startup'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/twitter/twitter-widget.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/twitter/twitter-widget'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/upgrade/config.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/upgrade/config'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/xlsx-utils/deserializer.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/xlsx-utils/deserializer'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/xlsx-utils/files/cpexcel.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/xlsx-utils/files/cpexcel'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/xlsx-utils/files/xlsx.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/xlsx-utils/files/xlsx'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/xlsx-utils/importer.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/xlsx-utils/importer'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/xlsx-utils/startup.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/xlsx-utils/startup'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/xlsx-utils/xlsx-import-command.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/xlsx-utils/xlsx-import-command'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/xmldom/files/dom-parser.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/xmldom/files/dom-parser'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/xmldom/files/dom.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/xmldom/files/dom'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/xmldom/files/entities.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/xmldom/files/entities'>; -} -declare module '@tiddlygit/tiddlywiki/plugins/tiddlywiki/xmldom/files/sax.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/plugins/tiddlywiki/xmldom/files/sax'>; -} -declare module '@tiddlygit/tiddlywiki/tiddlywiki.js' { - declare module.exports: $Exports<'@tiddlygit/tiddlywiki/tiddlywiki'>; -} diff --git a/flow-typed/npm/ace-builds_vx.x.x.js b/flow-typed/npm/ace-builds_vx.x.x.js deleted file mode 100644 index c21e30d1..00000000 --- a/flow-typed/npm/ace-builds_vx.x.x.js +++ /dev/null @@ -1,11694 +0,0 @@ -// flow-typed signature: 4ddb21acd921d7f885590c43dbf93cd0 -// flow-typed version: <>/ace-builds_v1.4.12/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'ace-builds' - * - * 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 'ace-builds' { - 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 'ace-builds/demo/r' { - declare module.exports: any; -} - -declare module 'ace-builds/demo/show_own_source' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/ace' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/ext-beautify' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/ext-code_lens' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/ext-elastic_tabstops_lite' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/ext-emmet' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/ext-error_marker' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/ext-keybinding_menu' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/ext-language_tools' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/ext-linking' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/ext-modelist' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/ext-options' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/ext-prompt' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/ext-rtl' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/ext-searchbox' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/ext-settings_menu' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/ext-spellcheck' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/ext-split' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/ext-static_highlight' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/ext-statusbar' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/ext-textarea' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/ext-themelist' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/ext-whitespace' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/keybinding-emacs' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/keybinding-sublime' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/keybinding-vim' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/keybinding-vscode' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-abap' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-abc' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-actionscript' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-ada' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-alda' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-apache_conf' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-apex' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-applescript' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-aql' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-asciidoc' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-asl' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-assembly_x86' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-autohotkey' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-batchfile' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-c_cpp' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-c9search' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-cirru' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-clojure' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-cobol' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-coffee' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-coldfusion' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-crystal' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-csharp' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-csound_document' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-csound_orchestra' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-csound_score' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-csp' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-css' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-curly' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-d' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-dart' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-diff' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-django' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-dockerfile' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-dot' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-drools' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-edifact' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-eiffel' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-ejs' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-elixir' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-elm' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-erlang' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-forth' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-fortran' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-fsharp' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-fsl' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-ftl' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-gcode' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-gherkin' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-gitignore' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-glsl' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-gobstones' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-golang' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-graphqlschema' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-groovy' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-haml' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-handlebars' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-haskell_cabal' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-haskell' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-haxe' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-hjson' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-html_elixir' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-html_ruby' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-html' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-ini' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-io' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-jack' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-jade' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-java' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-javascript' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-json' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-json5' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-jsoniq' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-jsp' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-jssm' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-jsx' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-julia' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-kotlin' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-latex' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-less' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-liquid' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-lisp' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-livescript' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-logiql' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-logtalk' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-lsl' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-lua' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-luapage' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-lucene' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-makefile' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-markdown' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-mask' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-matlab' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-maze' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-mediawiki' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-mel' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-mixal' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-mushcode' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-mysql' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-nginx' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-nim' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-nix' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-nsis' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-nunjucks' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-objectivec' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-ocaml' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-pascal' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-perl' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-perl6' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-pgsql' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-php_laravel_blade' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-php' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-pig' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-plain_text' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-powershell' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-praat' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-prisma' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-prolog' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-properties' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-protobuf' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-puppet' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-python' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-qml' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-r' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-razor' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-rdoc' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-red' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-redshift' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-rhtml' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-rst' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-ruby' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-rust' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-sass' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-scad' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-scala' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-scheme' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-scss' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-sh' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-sjs' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-slim' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-smarty' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-snippets' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-soy_template' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-space' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-sparql' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-sql' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-sqlserver' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-stylus' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-svg' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-swift' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-tcl' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-terraform' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-tex' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-text' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-textile' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-toml' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-tsx' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-turtle' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-twig' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-typescript' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-vala' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-vbscript' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-velocity' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-verilog' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-vhdl' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-visualforce' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-wollok' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-xml' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-xquery' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-yaml' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/mode-zeek' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/abap' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/abc' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/actionscript' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/ada' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/alda' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/apache_conf' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/apex' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/applescript' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/aql' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/asciidoc' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/asl' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/assembly_x86' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/autohotkey' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/batchfile' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/c_cpp' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/c9search' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/cirru' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/clojure' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/cobol' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/coffee' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/coldfusion' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/crystal' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/csharp' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/csound_document' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/csound_orchestra' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/csound_score' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/csp' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/css' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/curly' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/d' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/dart' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/diff' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/django' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/dockerfile' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/dot' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/drools' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/edifact' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/eiffel' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/ejs' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/elixir' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/elm' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/erlang' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/forth' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/fortran' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/fsharp' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/fsl' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/ftl' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/gcode' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/gherkin' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/gitignore' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/glsl' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/gobstones' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/golang' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/graphqlschema' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/groovy' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/haml' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/handlebars' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/haskell_cabal' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/haskell' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/haxe' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/hjson' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/html_elixir' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/html_ruby' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/html' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/ini' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/io' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/jack' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/jade' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/java' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/javascript' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/json' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/json5' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/jsoniq' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/jsp' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/jssm' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/jsx' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/julia' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/kotlin' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/latex' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/less' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/liquid' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/lisp' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/livescript' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/logiql' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/logtalk' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/lsl' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/lua' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/luapage' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/lucene' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/makefile' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/markdown' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/mask' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/matlab' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/maze' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/mediawiki' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/mel' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/mixal' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/mushcode' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/mysql' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/nginx' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/nim' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/nix' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/nsis' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/nunjucks' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/objectivec' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/ocaml' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/pascal' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/perl' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/perl6' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/pgsql' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/php_laravel_blade' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/php' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/pig' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/plain_text' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/powershell' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/praat' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/prisma' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/prolog' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/properties' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/protobuf' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/puppet' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/python' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/qml' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/r' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/razor' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/rdoc' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/red' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/redshift' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/rhtml' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/rst' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/ruby' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/rust' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/sass' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/scad' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/scala' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/scheme' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/scss' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/sh' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/sjs' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/slim' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/smarty' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/snippets' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/soy_template' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/space' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/sparql' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/sql' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/sqlserver' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/stylus' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/svg' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/swift' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/tcl' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/terraform' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/tex' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/text' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/textile' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/toml' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/tsx' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/turtle' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/twig' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/typescript' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/vala' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/vbscript' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/velocity' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/verilog' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/vhdl' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/visualforce' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/wollok' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/xml' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/xquery' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/yaml' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/snippets/zeek' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/theme-ambiance' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/theme-chaos' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/theme-chrome' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/theme-clouds_midnight' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/theme-clouds' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/theme-cobalt' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/theme-crimson_editor' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/theme-dawn' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/theme-dracula' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/theme-dreamweaver' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/theme-eclipse' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/theme-github' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/theme-gob' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/theme-gruvbox' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/theme-idle_fingers' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/theme-iplastic' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/theme-katzenmilch' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/theme-kr_theme' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/theme-kuroir' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/theme-merbivore_soft' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/theme-merbivore' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/theme-mono_industrial' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/theme-monokai' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/theme-nord_dark' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/theme-pastel_on_dark' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/theme-solarized_dark' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/theme-solarized_light' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/theme-sqlserver' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/theme-terminal' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/theme-textmate' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/theme-tomorrow_night_blue' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/theme-tomorrow_night_bright' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/theme-tomorrow_night_eighties' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/theme-tomorrow_night' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/theme-tomorrow' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/theme-twilight' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/theme-vibrant_ink' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/theme-xcode' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/worker-base' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/worker-coffee' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/worker-css' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/worker-html' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/worker-javascript' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/worker-json' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/worker-lua' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/worker-php' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/worker-xml' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min-noconflict/worker-xquery' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/ace' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/ext-beautify' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/ext-code_lens' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/ext-elastic_tabstops_lite' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/ext-emmet' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/ext-error_marker' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/ext-keybinding_menu' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/ext-language_tools' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/ext-linking' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/ext-modelist' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/ext-options' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/ext-prompt' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/ext-rtl' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/ext-searchbox' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/ext-settings_menu' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/ext-spellcheck' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/ext-split' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/ext-static_highlight' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/ext-statusbar' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/ext-textarea' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/ext-themelist' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/ext-whitespace' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/keybinding-emacs' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/keybinding-sublime' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/keybinding-vim' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/keybinding-vscode' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-abap' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-abc' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-actionscript' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-ada' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-alda' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-apache_conf' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-apex' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-applescript' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-aql' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-asciidoc' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-asl' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-assembly_x86' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-autohotkey' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-batchfile' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-c_cpp' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-c9search' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-cirru' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-clojure' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-cobol' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-coffee' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-coldfusion' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-crystal' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-csharp' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-csound_document' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-csound_orchestra' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-csound_score' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-csp' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-css' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-curly' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-d' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-dart' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-diff' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-django' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-dockerfile' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-dot' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-drools' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-edifact' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-eiffel' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-ejs' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-elixir' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-elm' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-erlang' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-forth' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-fortran' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-fsharp' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-fsl' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-ftl' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-gcode' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-gherkin' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-gitignore' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-glsl' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-gobstones' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-golang' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-graphqlschema' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-groovy' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-haml' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-handlebars' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-haskell_cabal' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-haskell' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-haxe' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-hjson' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-html_elixir' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-html_ruby' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-html' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-ini' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-io' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-jack' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-jade' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-java' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-javascript' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-json' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-json5' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-jsoniq' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-jsp' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-jssm' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-jsx' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-julia' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-kotlin' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-latex' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-less' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-liquid' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-lisp' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-livescript' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-logiql' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-logtalk' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-lsl' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-lua' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-luapage' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-lucene' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-makefile' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-markdown' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-mask' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-matlab' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-maze' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-mediawiki' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-mel' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-mixal' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-mushcode' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-mysql' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-nginx' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-nim' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-nix' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-nsis' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-nunjucks' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-objectivec' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-ocaml' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-pascal' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-perl' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-perl6' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-pgsql' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-php_laravel_blade' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-php' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-pig' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-plain_text' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-powershell' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-praat' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-prisma' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-prolog' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-properties' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-protobuf' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-puppet' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-python' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-qml' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-r' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-razor' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-rdoc' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-red' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-redshift' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-rhtml' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-rst' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-ruby' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-rust' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-sass' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-scad' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-scala' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-scheme' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-scss' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-sh' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-sjs' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-slim' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-smarty' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-snippets' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-soy_template' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-space' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-sparql' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-sql' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-sqlserver' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-stylus' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-svg' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-swift' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-tcl' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-terraform' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-tex' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-text' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-textile' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-toml' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-tsx' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-turtle' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-twig' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-typescript' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-vala' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-vbscript' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-velocity' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-verilog' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-vhdl' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-visualforce' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-wollok' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-xml' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-xquery' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-yaml' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/mode-zeek' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/abap' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/abc' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/actionscript' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/ada' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/alda' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/apache_conf' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/apex' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/applescript' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/aql' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/asciidoc' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/asl' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/assembly_x86' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/autohotkey' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/batchfile' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/c_cpp' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/c9search' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/cirru' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/clojure' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/cobol' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/coffee' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/coldfusion' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/crystal' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/csharp' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/csound_document' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/csound_orchestra' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/csound_score' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/csp' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/css' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/curly' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/d' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/dart' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/diff' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/django' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/dockerfile' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/dot' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/drools' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/edifact' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/eiffel' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/ejs' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/elixir' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/elm' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/erlang' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/forth' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/fortran' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/fsharp' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/fsl' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/ftl' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/gcode' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/gherkin' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/gitignore' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/glsl' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/gobstones' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/golang' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/graphqlschema' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/groovy' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/haml' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/handlebars' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/haskell_cabal' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/haskell' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/haxe' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/hjson' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/html_elixir' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/html_ruby' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/html' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/ini' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/io' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/jack' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/jade' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/java' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/javascript' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/json' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/json5' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/jsoniq' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/jsp' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/jssm' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/jsx' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/julia' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/kotlin' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/latex' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/less' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/liquid' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/lisp' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/livescript' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/logiql' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/logtalk' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/lsl' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/lua' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/luapage' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/lucene' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/makefile' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/markdown' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/mask' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/matlab' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/maze' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/mediawiki' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/mel' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/mixal' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/mushcode' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/mysql' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/nginx' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/nim' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/nix' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/nsis' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/nunjucks' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/objectivec' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/ocaml' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/pascal' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/perl' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/perl6' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/pgsql' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/php_laravel_blade' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/php' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/pig' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/plain_text' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/powershell' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/praat' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/prisma' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/prolog' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/properties' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/protobuf' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/puppet' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/python' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/qml' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/r' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/razor' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/rdoc' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/red' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/redshift' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/rhtml' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/rst' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/ruby' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/rust' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/sass' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/scad' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/scala' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/scheme' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/scss' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/sh' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/sjs' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/slim' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/smarty' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/snippets' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/soy_template' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/space' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/sparql' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/sql' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/sqlserver' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/stylus' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/svg' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/swift' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/tcl' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/terraform' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/tex' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/text' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/textile' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/toml' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/tsx' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/turtle' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/twig' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/typescript' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/vala' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/vbscript' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/velocity' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/verilog' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/vhdl' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/visualforce' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/wollok' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/xml' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/xquery' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/yaml' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/snippets/zeek' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/theme-ambiance' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/theme-chaos' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/theme-chrome' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/theme-clouds_midnight' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/theme-clouds' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/theme-cobalt' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/theme-crimson_editor' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/theme-dawn' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/theme-dracula' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/theme-dreamweaver' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/theme-eclipse' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/theme-github' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/theme-gob' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/theme-gruvbox' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/theme-idle_fingers' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/theme-iplastic' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/theme-katzenmilch' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/theme-kr_theme' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/theme-kuroir' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/theme-merbivore_soft' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/theme-merbivore' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/theme-mono_industrial' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/theme-monokai' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/theme-nord_dark' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/theme-pastel_on_dark' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/theme-solarized_dark' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/theme-solarized_light' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/theme-sqlserver' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/theme-terminal' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/theme-textmate' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/theme-tomorrow_night_blue' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/theme-tomorrow_night_bright' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/theme-tomorrow_night_eighties' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/theme-tomorrow_night' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/theme-tomorrow' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/theme-twilight' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/theme-vibrant_ink' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/theme-xcode' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/worker-base' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/worker-coffee' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/worker-css' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/worker-html' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/worker-javascript' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/worker-json' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/worker-lua' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/worker-php' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/worker-xml' { - declare module.exports: any; -} - -declare module 'ace-builds/src-min/worker-xquery' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/ace' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/ext-beautify' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/ext-code_lens' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/ext-elastic_tabstops_lite' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/ext-emmet' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/ext-error_marker' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/ext-keybinding_menu' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/ext-language_tools' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/ext-linking' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/ext-modelist' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/ext-options' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/ext-prompt' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/ext-rtl' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/ext-searchbox' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/ext-settings_menu' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/ext-spellcheck' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/ext-split' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/ext-static_highlight' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/ext-statusbar' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/ext-textarea' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/ext-themelist' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/ext-whitespace' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/keybinding-emacs' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/keybinding-sublime' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/keybinding-vim' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/keybinding-vscode' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-abap' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-abc' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-actionscript' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-ada' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-alda' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-apache_conf' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-apex' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-applescript' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-aql' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-asciidoc' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-asl' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-assembly_x86' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-autohotkey' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-batchfile' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-c_cpp' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-c9search' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-cirru' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-clojure' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-cobol' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-coffee' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-coldfusion' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-crystal' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-csharp' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-csound_document' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-csound_orchestra' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-csound_score' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-csp' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-css' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-curly' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-d' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-dart' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-diff' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-django' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-dockerfile' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-dot' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-drools' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-edifact' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-eiffel' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-ejs' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-elixir' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-elm' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-erlang' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-forth' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-fortran' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-fsharp' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-fsl' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-ftl' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-gcode' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-gherkin' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-gitignore' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-glsl' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-gobstones' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-golang' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-graphqlschema' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-groovy' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-haml' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-handlebars' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-haskell_cabal' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-haskell' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-haxe' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-hjson' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-html_elixir' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-html_ruby' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-html' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-ini' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-io' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-jack' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-jade' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-java' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-javascript' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-json' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-json5' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-jsoniq' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-jsp' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-jssm' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-jsx' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-julia' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-kotlin' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-latex' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-less' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-liquid' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-lisp' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-livescript' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-logiql' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-logtalk' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-lsl' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-lua' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-luapage' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-lucene' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-makefile' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-markdown' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-mask' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-matlab' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-maze' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-mediawiki' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-mel' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-mixal' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-mushcode' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-mysql' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-nginx' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-nim' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-nix' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-nsis' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-nunjucks' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-objectivec' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-ocaml' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-pascal' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-perl' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-perl6' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-pgsql' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-php_laravel_blade' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-php' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-pig' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-plain_text' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-powershell' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-praat' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-prisma' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-prolog' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-properties' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-protobuf' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-puppet' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-python' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-qml' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-r' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-razor' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-rdoc' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-red' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-redshift' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-rhtml' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-rst' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-ruby' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-rust' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-sass' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-scad' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-scala' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-scheme' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-scss' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-sh' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-sjs' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-slim' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-smarty' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-snippets' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-soy_template' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-space' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-sparql' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-sql' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-sqlserver' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-stylus' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-svg' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-swift' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-tcl' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-terraform' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-tex' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-text' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-textile' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-toml' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-tsx' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-turtle' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-twig' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-typescript' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-vala' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-vbscript' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-velocity' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-verilog' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-vhdl' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-visualforce' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-wollok' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-xml' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-xquery' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-yaml' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/mode-zeek' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/abap' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/abc' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/actionscript' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/ada' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/alda' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/apache_conf' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/apex' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/applescript' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/aql' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/asciidoc' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/asl' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/assembly_x86' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/autohotkey' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/batchfile' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/c_cpp' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/c9search' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/cirru' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/clojure' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/cobol' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/coffee' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/coldfusion' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/crystal' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/csharp' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/csound_document' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/csound_orchestra' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/csound_score' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/csp' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/css' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/curly' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/d' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/dart' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/diff' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/django' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/dockerfile' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/dot' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/drools' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/edifact' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/eiffel' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/ejs' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/elixir' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/elm' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/erlang' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/forth' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/fortran' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/fsharp' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/fsl' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/ftl' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/gcode' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/gherkin' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/gitignore' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/glsl' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/gobstones' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/golang' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/graphqlschema' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/groovy' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/haml' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/handlebars' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/haskell_cabal' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/haskell' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/haxe' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/hjson' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/html_elixir' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/html_ruby' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/html' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/ini' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/io' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/jack' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/jade' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/java' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/javascript' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/json' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/json5' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/jsoniq' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/jsp' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/jssm' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/jsx' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/julia' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/kotlin' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/latex' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/less' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/liquid' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/lisp' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/livescript' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/logiql' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/logtalk' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/lsl' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/lua' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/luapage' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/lucene' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/makefile' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/markdown' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/mask' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/matlab' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/maze' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/mediawiki' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/mel' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/mixal' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/mushcode' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/mysql' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/nginx' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/nim' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/nix' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/nsis' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/nunjucks' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/objectivec' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/ocaml' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/pascal' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/perl' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/perl6' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/pgsql' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/php_laravel_blade' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/php' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/pig' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/plain_text' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/powershell' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/praat' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/prisma' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/prolog' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/properties' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/protobuf' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/puppet' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/python' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/qml' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/r' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/razor' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/rdoc' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/red' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/redshift' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/rhtml' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/rst' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/ruby' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/rust' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/sass' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/scad' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/scala' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/scheme' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/scss' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/sh' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/sjs' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/slim' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/smarty' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/snippets' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/soy_template' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/space' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/sparql' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/sql' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/sqlserver' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/stylus' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/svg' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/swift' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/tcl' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/terraform' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/tex' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/text' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/textile' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/toml' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/tsx' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/turtle' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/twig' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/typescript' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/vala' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/vbscript' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/velocity' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/verilog' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/vhdl' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/visualforce' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/wollok' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/xml' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/xquery' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/yaml' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/snippets/zeek' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/theme-ambiance' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/theme-chaos' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/theme-chrome' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/theme-clouds_midnight' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/theme-clouds' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/theme-cobalt' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/theme-crimson_editor' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/theme-dawn' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/theme-dracula' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/theme-dreamweaver' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/theme-eclipse' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/theme-github' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/theme-gob' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/theme-gruvbox' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/theme-idle_fingers' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/theme-iplastic' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/theme-katzenmilch' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/theme-kr_theme' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/theme-kuroir' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/theme-merbivore_soft' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/theme-merbivore' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/theme-mono_industrial' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/theme-monokai' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/theme-nord_dark' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/theme-pastel_on_dark' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/theme-solarized_dark' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/theme-solarized_light' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/theme-sqlserver' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/theme-terminal' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/theme-textmate' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/theme-tomorrow_night_blue' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/theme-tomorrow_night_bright' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/theme-tomorrow_night_eighties' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/theme-tomorrow_night' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/theme-tomorrow' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/theme-twilight' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/theme-vibrant_ink' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/theme-xcode' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/worker-base' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/worker-coffee' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/worker-css' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/worker-html' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/worker-javascript' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/worker-json' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/worker-lua' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/worker-php' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/worker-xml' { - declare module.exports: any; -} - -declare module 'ace-builds/src-noconflict/worker-xquery' { - declare module.exports: any; -} - -declare module 'ace-builds/src/ace' { - declare module.exports: any; -} - -declare module 'ace-builds/src/ext-beautify' { - declare module.exports: any; -} - -declare module 'ace-builds/src/ext-code_lens' { - declare module.exports: any; -} - -declare module 'ace-builds/src/ext-elastic_tabstops_lite' { - declare module.exports: any; -} - -declare module 'ace-builds/src/ext-emmet' { - declare module.exports: any; -} - -declare module 'ace-builds/src/ext-error_marker' { - declare module.exports: any; -} - -declare module 'ace-builds/src/ext-keybinding_menu' { - declare module.exports: any; -} - -declare module 'ace-builds/src/ext-language_tools' { - declare module.exports: any; -} - -declare module 'ace-builds/src/ext-linking' { - declare module.exports: any; -} - -declare module 'ace-builds/src/ext-modelist' { - declare module.exports: any; -} - -declare module 'ace-builds/src/ext-options' { - declare module.exports: any; -} - -declare module 'ace-builds/src/ext-prompt' { - declare module.exports: any; -} - -declare module 'ace-builds/src/ext-rtl' { - declare module.exports: any; -} - -declare module 'ace-builds/src/ext-searchbox' { - declare module.exports: any; -} - -declare module 'ace-builds/src/ext-settings_menu' { - declare module.exports: any; -} - -declare module 'ace-builds/src/ext-spellcheck' { - declare module.exports: any; -} - -declare module 'ace-builds/src/ext-split' { - declare module.exports: any; -} - -declare module 'ace-builds/src/ext-static_highlight' { - declare module.exports: any; -} - -declare module 'ace-builds/src/ext-statusbar' { - declare module.exports: any; -} - -declare module 'ace-builds/src/ext-textarea' { - declare module.exports: any; -} - -declare module 'ace-builds/src/ext-themelist' { - declare module.exports: any; -} - -declare module 'ace-builds/src/ext-whitespace' { - declare module.exports: any; -} - -declare module 'ace-builds/src/keybinding-emacs' { - declare module.exports: any; -} - -declare module 'ace-builds/src/keybinding-sublime' { - declare module.exports: any; -} - -declare module 'ace-builds/src/keybinding-vim' { - declare module.exports: any; -} - -declare module 'ace-builds/src/keybinding-vscode' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-abap' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-abc' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-actionscript' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-ada' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-alda' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-apache_conf' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-apex' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-applescript' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-aql' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-asciidoc' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-asl' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-assembly_x86' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-autohotkey' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-batchfile' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-c_cpp' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-c9search' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-cirru' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-clojure' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-cobol' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-coffee' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-coldfusion' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-crystal' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-csharp' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-csound_document' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-csound_orchestra' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-csound_score' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-csp' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-css' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-curly' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-d' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-dart' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-diff' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-django' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-dockerfile' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-dot' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-drools' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-edifact' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-eiffel' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-ejs' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-elixir' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-elm' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-erlang' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-forth' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-fortran' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-fsharp' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-fsl' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-ftl' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-gcode' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-gherkin' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-gitignore' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-glsl' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-gobstones' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-golang' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-graphqlschema' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-groovy' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-haml' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-handlebars' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-haskell_cabal' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-haskell' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-haxe' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-hjson' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-html_elixir' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-html_ruby' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-html' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-ini' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-io' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-jack' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-jade' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-java' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-javascript' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-json' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-json5' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-jsoniq' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-jsp' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-jssm' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-jsx' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-julia' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-kotlin' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-latex' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-less' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-liquid' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-lisp' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-livescript' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-logiql' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-logtalk' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-lsl' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-lua' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-luapage' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-lucene' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-makefile' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-markdown' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-mask' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-matlab' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-maze' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-mediawiki' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-mel' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-mixal' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-mushcode' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-mysql' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-nginx' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-nim' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-nix' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-nsis' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-nunjucks' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-objectivec' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-ocaml' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-pascal' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-perl' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-perl6' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-pgsql' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-php_laravel_blade' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-php' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-pig' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-plain_text' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-powershell' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-praat' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-prisma' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-prolog' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-properties' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-protobuf' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-puppet' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-python' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-qml' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-r' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-razor' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-rdoc' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-red' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-redshift' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-rhtml' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-rst' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-ruby' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-rust' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-sass' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-scad' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-scala' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-scheme' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-scss' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-sh' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-sjs' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-slim' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-smarty' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-snippets' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-soy_template' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-space' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-sparql' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-sql' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-sqlserver' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-stylus' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-svg' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-swift' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-tcl' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-terraform' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-tex' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-text' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-textile' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-toml' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-tsx' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-turtle' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-twig' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-typescript' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-vala' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-vbscript' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-velocity' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-verilog' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-vhdl' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-visualforce' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-wollok' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-xml' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-xquery' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-yaml' { - declare module.exports: any; -} - -declare module 'ace-builds/src/mode-zeek' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/abap' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/abc' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/actionscript' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/ada' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/alda' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/apache_conf' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/apex' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/applescript' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/aql' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/asciidoc' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/asl' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/assembly_x86' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/autohotkey' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/batchfile' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/c_cpp' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/c9search' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/cirru' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/clojure' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/cobol' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/coffee' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/coldfusion' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/crystal' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/csharp' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/csound_document' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/csound_orchestra' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/csound_score' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/csp' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/css' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/curly' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/d' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/dart' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/diff' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/django' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/dockerfile' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/dot' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/drools' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/edifact' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/eiffel' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/ejs' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/elixir' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/elm' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/erlang' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/forth' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/fortran' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/fsharp' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/fsl' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/ftl' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/gcode' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/gherkin' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/gitignore' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/glsl' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/gobstones' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/golang' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/graphqlschema' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/groovy' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/haml' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/handlebars' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/haskell_cabal' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/haskell' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/haxe' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/hjson' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/html_elixir' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/html_ruby' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/html' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/ini' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/io' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/jack' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/jade' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/java' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/javascript' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/json' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/json5' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/jsoniq' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/jsp' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/jssm' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/jsx' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/julia' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/kotlin' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/latex' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/less' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/liquid' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/lisp' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/livescript' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/logiql' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/logtalk' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/lsl' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/lua' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/luapage' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/lucene' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/makefile' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/markdown' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/mask' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/matlab' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/maze' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/mediawiki' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/mel' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/mixal' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/mushcode' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/mysql' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/nginx' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/nim' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/nix' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/nsis' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/nunjucks' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/objectivec' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/ocaml' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/pascal' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/perl' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/perl6' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/pgsql' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/php_laravel_blade' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/php' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/pig' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/plain_text' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/powershell' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/praat' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/prisma' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/prolog' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/properties' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/protobuf' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/puppet' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/python' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/qml' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/r' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/razor' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/rdoc' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/red' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/redshift' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/rhtml' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/rst' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/ruby' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/rust' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/sass' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/scad' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/scala' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/scheme' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/scss' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/sh' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/sjs' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/slim' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/smarty' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/snippets' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/soy_template' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/space' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/sparql' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/sql' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/sqlserver' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/stylus' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/svg' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/swift' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/tcl' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/terraform' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/tex' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/text' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/textile' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/toml' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/tsx' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/turtle' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/twig' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/typescript' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/vala' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/vbscript' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/velocity' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/verilog' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/vhdl' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/visualforce' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/wollok' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/xml' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/xquery' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/yaml' { - declare module.exports: any; -} - -declare module 'ace-builds/src/snippets/zeek' { - declare module.exports: any; -} - -declare module 'ace-builds/src/theme-ambiance' { - declare module.exports: any; -} - -declare module 'ace-builds/src/theme-chaos' { - declare module.exports: any; -} - -declare module 'ace-builds/src/theme-chrome' { - declare module.exports: any; -} - -declare module 'ace-builds/src/theme-clouds_midnight' { - declare module.exports: any; -} - -declare module 'ace-builds/src/theme-clouds' { - declare module.exports: any; -} - -declare module 'ace-builds/src/theme-cobalt' { - declare module.exports: any; -} - -declare module 'ace-builds/src/theme-crimson_editor' { - declare module.exports: any; -} - -declare module 'ace-builds/src/theme-dawn' { - declare module.exports: any; -} - -declare module 'ace-builds/src/theme-dracula' { - declare module.exports: any; -} - -declare module 'ace-builds/src/theme-dreamweaver' { - declare module.exports: any; -} - -declare module 'ace-builds/src/theme-eclipse' { - declare module.exports: any; -} - -declare module 'ace-builds/src/theme-github' { - declare module.exports: any; -} - -declare module 'ace-builds/src/theme-gob' { - declare module.exports: any; -} - -declare module 'ace-builds/src/theme-gruvbox' { - declare module.exports: any; -} - -declare module 'ace-builds/src/theme-idle_fingers' { - declare module.exports: any; -} - -declare module 'ace-builds/src/theme-iplastic' { - declare module.exports: any; -} - -declare module 'ace-builds/src/theme-katzenmilch' { - declare module.exports: any; -} - -declare module 'ace-builds/src/theme-kr_theme' { - declare module.exports: any; -} - -declare module 'ace-builds/src/theme-kuroir' { - declare module.exports: any; -} - -declare module 'ace-builds/src/theme-merbivore_soft' { - declare module.exports: any; -} - -declare module 'ace-builds/src/theme-merbivore' { - declare module.exports: any; -} - -declare module 'ace-builds/src/theme-mono_industrial' { - declare module.exports: any; -} - -declare module 'ace-builds/src/theme-monokai' { - declare module.exports: any; -} - -declare module 'ace-builds/src/theme-nord_dark' { - declare module.exports: any; -} - -declare module 'ace-builds/src/theme-pastel_on_dark' { - declare module.exports: any; -} - -declare module 'ace-builds/src/theme-solarized_dark' { - declare module.exports: any; -} - -declare module 'ace-builds/src/theme-solarized_light' { - declare module.exports: any; -} - -declare module 'ace-builds/src/theme-sqlserver' { - declare module.exports: any; -} - -declare module 'ace-builds/src/theme-terminal' { - declare module.exports: any; -} - -declare module 'ace-builds/src/theme-textmate' { - declare module.exports: any; -} - -declare module 'ace-builds/src/theme-tomorrow_night_blue' { - declare module.exports: any; -} - -declare module 'ace-builds/src/theme-tomorrow_night_bright' { - declare module.exports: any; -} - -declare module 'ace-builds/src/theme-tomorrow_night_eighties' { - declare module.exports: any; -} - -declare module 'ace-builds/src/theme-tomorrow_night' { - declare module.exports: any; -} - -declare module 'ace-builds/src/theme-tomorrow' { - declare module.exports: any; -} - -declare module 'ace-builds/src/theme-twilight' { - declare module.exports: any; -} - -declare module 'ace-builds/src/theme-vibrant_ink' { - declare module.exports: any; -} - -declare module 'ace-builds/src/theme-xcode' { - declare module.exports: any; -} - -declare module 'ace-builds/src/worker-base' { - declare module.exports: any; -} - -declare module 'ace-builds/src/worker-coffee' { - declare module.exports: any; -} - -declare module 'ace-builds/src/worker-css' { - declare module.exports: any; -} - -declare module 'ace-builds/src/worker-html' { - declare module.exports: any; -} - -declare module 'ace-builds/src/worker-javascript' { - declare module.exports: any; -} - -declare module 'ace-builds/src/worker-json' { - declare module.exports: any; -} - -declare module 'ace-builds/src/worker-lua' { - declare module.exports: any; -} - -declare module 'ace-builds/src/worker-php' { - declare module.exports: any; -} - -declare module 'ace-builds/src/worker-xml' { - declare module.exports: any; -} - -declare module 'ace-builds/src/worker-xquery' { - declare module.exports: any; -} - -declare module 'ace-builds/webpack-resolver' { - declare module.exports: any; -} - -// Filename aliases -declare module 'ace-builds/demo/r.js' { - declare module.exports: $Exports<'ace-builds/demo/r'>; -} -declare module 'ace-builds/demo/show_own_source.js' { - declare module.exports: $Exports<'ace-builds/demo/show_own_source'>; -} -declare module 'ace-builds/src-min-noconflict/ace.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/ace'>; -} -declare module 'ace-builds/src-min-noconflict/ext-beautify.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/ext-beautify'>; -} -declare module 'ace-builds/src-min-noconflict/ext-code_lens.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/ext-code_lens'>; -} -declare module 'ace-builds/src-min-noconflict/ext-elastic_tabstops_lite.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/ext-elastic_tabstops_lite'>; -} -declare module 'ace-builds/src-min-noconflict/ext-emmet.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/ext-emmet'>; -} -declare module 'ace-builds/src-min-noconflict/ext-error_marker.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/ext-error_marker'>; -} -declare module 'ace-builds/src-min-noconflict/ext-keybinding_menu.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/ext-keybinding_menu'>; -} -declare module 'ace-builds/src-min-noconflict/ext-language_tools.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/ext-language_tools'>; -} -declare module 'ace-builds/src-min-noconflict/ext-linking.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/ext-linking'>; -} -declare module 'ace-builds/src-min-noconflict/ext-modelist.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/ext-modelist'>; -} -declare module 'ace-builds/src-min-noconflict/ext-options.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/ext-options'>; -} -declare module 'ace-builds/src-min-noconflict/ext-prompt.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/ext-prompt'>; -} -declare module 'ace-builds/src-min-noconflict/ext-rtl.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/ext-rtl'>; -} -declare module 'ace-builds/src-min-noconflict/ext-searchbox.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/ext-searchbox'>; -} -declare module 'ace-builds/src-min-noconflict/ext-settings_menu.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/ext-settings_menu'>; -} -declare module 'ace-builds/src-min-noconflict/ext-spellcheck.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/ext-spellcheck'>; -} -declare module 'ace-builds/src-min-noconflict/ext-split.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/ext-split'>; -} -declare module 'ace-builds/src-min-noconflict/ext-static_highlight.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/ext-static_highlight'>; -} -declare module 'ace-builds/src-min-noconflict/ext-statusbar.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/ext-statusbar'>; -} -declare module 'ace-builds/src-min-noconflict/ext-textarea.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/ext-textarea'>; -} -declare module 'ace-builds/src-min-noconflict/ext-themelist.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/ext-themelist'>; -} -declare module 'ace-builds/src-min-noconflict/ext-whitespace.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/ext-whitespace'>; -} -declare module 'ace-builds/src-min-noconflict/keybinding-emacs.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/keybinding-emacs'>; -} -declare module 'ace-builds/src-min-noconflict/keybinding-sublime.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/keybinding-sublime'>; -} -declare module 'ace-builds/src-min-noconflict/keybinding-vim.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/keybinding-vim'>; -} -declare module 'ace-builds/src-min-noconflict/keybinding-vscode.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/keybinding-vscode'>; -} -declare module 'ace-builds/src-min-noconflict/mode-abap.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-abap'>; -} -declare module 'ace-builds/src-min-noconflict/mode-abc.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-abc'>; -} -declare module 'ace-builds/src-min-noconflict/mode-actionscript.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-actionscript'>; -} -declare module 'ace-builds/src-min-noconflict/mode-ada.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-ada'>; -} -declare module 'ace-builds/src-min-noconflict/mode-alda.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-alda'>; -} -declare module 'ace-builds/src-min-noconflict/mode-apache_conf.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-apache_conf'>; -} -declare module 'ace-builds/src-min-noconflict/mode-apex.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-apex'>; -} -declare module 'ace-builds/src-min-noconflict/mode-applescript.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-applescript'>; -} -declare module 'ace-builds/src-min-noconflict/mode-aql.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-aql'>; -} -declare module 'ace-builds/src-min-noconflict/mode-asciidoc.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-asciidoc'>; -} -declare module 'ace-builds/src-min-noconflict/mode-asl.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-asl'>; -} -declare module 'ace-builds/src-min-noconflict/mode-assembly_x86.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-assembly_x86'>; -} -declare module 'ace-builds/src-min-noconflict/mode-autohotkey.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-autohotkey'>; -} -declare module 'ace-builds/src-min-noconflict/mode-batchfile.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-batchfile'>; -} -declare module 'ace-builds/src-min-noconflict/mode-c_cpp.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-c_cpp'>; -} -declare module 'ace-builds/src-min-noconflict/mode-c9search.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-c9search'>; -} -declare module 'ace-builds/src-min-noconflict/mode-cirru.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-cirru'>; -} -declare module 'ace-builds/src-min-noconflict/mode-clojure.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-clojure'>; -} -declare module 'ace-builds/src-min-noconflict/mode-cobol.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-cobol'>; -} -declare module 'ace-builds/src-min-noconflict/mode-coffee.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-coffee'>; -} -declare module 'ace-builds/src-min-noconflict/mode-coldfusion.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-coldfusion'>; -} -declare module 'ace-builds/src-min-noconflict/mode-crystal.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-crystal'>; -} -declare module 'ace-builds/src-min-noconflict/mode-csharp.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-csharp'>; -} -declare module 'ace-builds/src-min-noconflict/mode-csound_document.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-csound_document'>; -} -declare module 'ace-builds/src-min-noconflict/mode-csound_orchestra.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-csound_orchestra'>; -} -declare module 'ace-builds/src-min-noconflict/mode-csound_score.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-csound_score'>; -} -declare module 'ace-builds/src-min-noconflict/mode-csp.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-csp'>; -} -declare module 'ace-builds/src-min-noconflict/mode-css.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-css'>; -} -declare module 'ace-builds/src-min-noconflict/mode-curly.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-curly'>; -} -declare module 'ace-builds/src-min-noconflict/mode-d.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-d'>; -} -declare module 'ace-builds/src-min-noconflict/mode-dart.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-dart'>; -} -declare module 'ace-builds/src-min-noconflict/mode-diff.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-diff'>; -} -declare module 'ace-builds/src-min-noconflict/mode-django.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-django'>; -} -declare module 'ace-builds/src-min-noconflict/mode-dockerfile.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-dockerfile'>; -} -declare module 'ace-builds/src-min-noconflict/mode-dot.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-dot'>; -} -declare module 'ace-builds/src-min-noconflict/mode-drools.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-drools'>; -} -declare module 'ace-builds/src-min-noconflict/mode-edifact.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-edifact'>; -} -declare module 'ace-builds/src-min-noconflict/mode-eiffel.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-eiffel'>; -} -declare module 'ace-builds/src-min-noconflict/mode-ejs.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-ejs'>; -} -declare module 'ace-builds/src-min-noconflict/mode-elixir.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-elixir'>; -} -declare module 'ace-builds/src-min-noconflict/mode-elm.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-elm'>; -} -declare module 'ace-builds/src-min-noconflict/mode-erlang.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-erlang'>; -} -declare module 'ace-builds/src-min-noconflict/mode-forth.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-forth'>; -} -declare module 'ace-builds/src-min-noconflict/mode-fortran.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-fortran'>; -} -declare module 'ace-builds/src-min-noconflict/mode-fsharp.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-fsharp'>; -} -declare module 'ace-builds/src-min-noconflict/mode-fsl.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-fsl'>; -} -declare module 'ace-builds/src-min-noconflict/mode-ftl.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-ftl'>; -} -declare module 'ace-builds/src-min-noconflict/mode-gcode.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-gcode'>; -} -declare module 'ace-builds/src-min-noconflict/mode-gherkin.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-gherkin'>; -} -declare module 'ace-builds/src-min-noconflict/mode-gitignore.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-gitignore'>; -} -declare module 'ace-builds/src-min-noconflict/mode-glsl.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-glsl'>; -} -declare module 'ace-builds/src-min-noconflict/mode-gobstones.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-gobstones'>; -} -declare module 'ace-builds/src-min-noconflict/mode-golang.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-golang'>; -} -declare module 'ace-builds/src-min-noconflict/mode-graphqlschema.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-graphqlschema'>; -} -declare module 'ace-builds/src-min-noconflict/mode-groovy.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-groovy'>; -} -declare module 'ace-builds/src-min-noconflict/mode-haml.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-haml'>; -} -declare module 'ace-builds/src-min-noconflict/mode-handlebars.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-handlebars'>; -} -declare module 'ace-builds/src-min-noconflict/mode-haskell_cabal.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-haskell_cabal'>; -} -declare module 'ace-builds/src-min-noconflict/mode-haskell.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-haskell'>; -} -declare module 'ace-builds/src-min-noconflict/mode-haxe.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-haxe'>; -} -declare module 'ace-builds/src-min-noconflict/mode-hjson.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-hjson'>; -} -declare module 'ace-builds/src-min-noconflict/mode-html_elixir.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-html_elixir'>; -} -declare module 'ace-builds/src-min-noconflict/mode-html_ruby.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-html_ruby'>; -} -declare module 'ace-builds/src-min-noconflict/mode-html.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-html'>; -} -declare module 'ace-builds/src-min-noconflict/mode-ini.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-ini'>; -} -declare module 'ace-builds/src-min-noconflict/mode-io.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-io'>; -} -declare module 'ace-builds/src-min-noconflict/mode-jack.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-jack'>; -} -declare module 'ace-builds/src-min-noconflict/mode-jade.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-jade'>; -} -declare module 'ace-builds/src-min-noconflict/mode-java.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-java'>; -} -declare module 'ace-builds/src-min-noconflict/mode-javascript.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-javascript'>; -} -declare module 'ace-builds/src-min-noconflict/mode-json.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-json'>; -} -declare module 'ace-builds/src-min-noconflict/mode-json5.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-json5'>; -} -declare module 'ace-builds/src-min-noconflict/mode-jsoniq.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-jsoniq'>; -} -declare module 'ace-builds/src-min-noconflict/mode-jsp.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-jsp'>; -} -declare module 'ace-builds/src-min-noconflict/mode-jssm.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-jssm'>; -} -declare module 'ace-builds/src-min-noconflict/mode-jsx.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-jsx'>; -} -declare module 'ace-builds/src-min-noconflict/mode-julia.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-julia'>; -} -declare module 'ace-builds/src-min-noconflict/mode-kotlin.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-kotlin'>; -} -declare module 'ace-builds/src-min-noconflict/mode-latex.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-latex'>; -} -declare module 'ace-builds/src-min-noconflict/mode-less.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-less'>; -} -declare module 'ace-builds/src-min-noconflict/mode-liquid.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-liquid'>; -} -declare module 'ace-builds/src-min-noconflict/mode-lisp.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-lisp'>; -} -declare module 'ace-builds/src-min-noconflict/mode-livescript.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-livescript'>; -} -declare module 'ace-builds/src-min-noconflict/mode-logiql.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-logiql'>; -} -declare module 'ace-builds/src-min-noconflict/mode-logtalk.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-logtalk'>; -} -declare module 'ace-builds/src-min-noconflict/mode-lsl.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-lsl'>; -} -declare module 'ace-builds/src-min-noconflict/mode-lua.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-lua'>; -} -declare module 'ace-builds/src-min-noconflict/mode-luapage.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-luapage'>; -} -declare module 'ace-builds/src-min-noconflict/mode-lucene.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-lucene'>; -} -declare module 'ace-builds/src-min-noconflict/mode-makefile.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-makefile'>; -} -declare module 'ace-builds/src-min-noconflict/mode-markdown.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-markdown'>; -} -declare module 'ace-builds/src-min-noconflict/mode-mask.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-mask'>; -} -declare module 'ace-builds/src-min-noconflict/mode-matlab.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-matlab'>; -} -declare module 'ace-builds/src-min-noconflict/mode-maze.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-maze'>; -} -declare module 'ace-builds/src-min-noconflict/mode-mediawiki.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-mediawiki'>; -} -declare module 'ace-builds/src-min-noconflict/mode-mel.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-mel'>; -} -declare module 'ace-builds/src-min-noconflict/mode-mixal.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-mixal'>; -} -declare module 'ace-builds/src-min-noconflict/mode-mushcode.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-mushcode'>; -} -declare module 'ace-builds/src-min-noconflict/mode-mysql.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-mysql'>; -} -declare module 'ace-builds/src-min-noconflict/mode-nginx.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-nginx'>; -} -declare module 'ace-builds/src-min-noconflict/mode-nim.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-nim'>; -} -declare module 'ace-builds/src-min-noconflict/mode-nix.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-nix'>; -} -declare module 'ace-builds/src-min-noconflict/mode-nsis.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-nsis'>; -} -declare module 'ace-builds/src-min-noconflict/mode-nunjucks.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-nunjucks'>; -} -declare module 'ace-builds/src-min-noconflict/mode-objectivec.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-objectivec'>; -} -declare module 'ace-builds/src-min-noconflict/mode-ocaml.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-ocaml'>; -} -declare module 'ace-builds/src-min-noconflict/mode-pascal.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-pascal'>; -} -declare module 'ace-builds/src-min-noconflict/mode-perl.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-perl'>; -} -declare module 'ace-builds/src-min-noconflict/mode-perl6.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-perl6'>; -} -declare module 'ace-builds/src-min-noconflict/mode-pgsql.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-pgsql'>; -} -declare module 'ace-builds/src-min-noconflict/mode-php_laravel_blade.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-php_laravel_blade'>; -} -declare module 'ace-builds/src-min-noconflict/mode-php.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-php'>; -} -declare module 'ace-builds/src-min-noconflict/mode-pig.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-pig'>; -} -declare module 'ace-builds/src-min-noconflict/mode-plain_text.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-plain_text'>; -} -declare module 'ace-builds/src-min-noconflict/mode-powershell.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-powershell'>; -} -declare module 'ace-builds/src-min-noconflict/mode-praat.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-praat'>; -} -declare module 'ace-builds/src-min-noconflict/mode-prisma.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-prisma'>; -} -declare module 'ace-builds/src-min-noconflict/mode-prolog.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-prolog'>; -} -declare module 'ace-builds/src-min-noconflict/mode-properties.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-properties'>; -} -declare module 'ace-builds/src-min-noconflict/mode-protobuf.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-protobuf'>; -} -declare module 'ace-builds/src-min-noconflict/mode-puppet.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-puppet'>; -} -declare module 'ace-builds/src-min-noconflict/mode-python.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-python'>; -} -declare module 'ace-builds/src-min-noconflict/mode-qml.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-qml'>; -} -declare module 'ace-builds/src-min-noconflict/mode-r.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-r'>; -} -declare module 'ace-builds/src-min-noconflict/mode-razor.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-razor'>; -} -declare module 'ace-builds/src-min-noconflict/mode-rdoc.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-rdoc'>; -} -declare module 'ace-builds/src-min-noconflict/mode-red.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-red'>; -} -declare module 'ace-builds/src-min-noconflict/mode-redshift.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-redshift'>; -} -declare module 'ace-builds/src-min-noconflict/mode-rhtml.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-rhtml'>; -} -declare module 'ace-builds/src-min-noconflict/mode-rst.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-rst'>; -} -declare module 'ace-builds/src-min-noconflict/mode-ruby.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-ruby'>; -} -declare module 'ace-builds/src-min-noconflict/mode-rust.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-rust'>; -} -declare module 'ace-builds/src-min-noconflict/mode-sass.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-sass'>; -} -declare module 'ace-builds/src-min-noconflict/mode-scad.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-scad'>; -} -declare module 'ace-builds/src-min-noconflict/mode-scala.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-scala'>; -} -declare module 'ace-builds/src-min-noconflict/mode-scheme.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-scheme'>; -} -declare module 'ace-builds/src-min-noconflict/mode-scss.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-scss'>; -} -declare module 'ace-builds/src-min-noconflict/mode-sh.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-sh'>; -} -declare module 'ace-builds/src-min-noconflict/mode-sjs.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-sjs'>; -} -declare module 'ace-builds/src-min-noconflict/mode-slim.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-slim'>; -} -declare module 'ace-builds/src-min-noconflict/mode-smarty.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-smarty'>; -} -declare module 'ace-builds/src-min-noconflict/mode-snippets.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-snippets'>; -} -declare module 'ace-builds/src-min-noconflict/mode-soy_template.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-soy_template'>; -} -declare module 'ace-builds/src-min-noconflict/mode-space.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-space'>; -} -declare module 'ace-builds/src-min-noconflict/mode-sparql.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-sparql'>; -} -declare module 'ace-builds/src-min-noconflict/mode-sql.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-sql'>; -} -declare module 'ace-builds/src-min-noconflict/mode-sqlserver.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-sqlserver'>; -} -declare module 'ace-builds/src-min-noconflict/mode-stylus.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-stylus'>; -} -declare module 'ace-builds/src-min-noconflict/mode-svg.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-svg'>; -} -declare module 'ace-builds/src-min-noconflict/mode-swift.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-swift'>; -} -declare module 'ace-builds/src-min-noconflict/mode-tcl.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-tcl'>; -} -declare module 'ace-builds/src-min-noconflict/mode-terraform.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-terraform'>; -} -declare module 'ace-builds/src-min-noconflict/mode-tex.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-tex'>; -} -declare module 'ace-builds/src-min-noconflict/mode-text.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-text'>; -} -declare module 'ace-builds/src-min-noconflict/mode-textile.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-textile'>; -} -declare module 'ace-builds/src-min-noconflict/mode-toml.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-toml'>; -} -declare module 'ace-builds/src-min-noconflict/mode-tsx.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-tsx'>; -} -declare module 'ace-builds/src-min-noconflict/mode-turtle.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-turtle'>; -} -declare module 'ace-builds/src-min-noconflict/mode-twig.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-twig'>; -} -declare module 'ace-builds/src-min-noconflict/mode-typescript.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-typescript'>; -} -declare module 'ace-builds/src-min-noconflict/mode-vala.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-vala'>; -} -declare module 'ace-builds/src-min-noconflict/mode-vbscript.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-vbscript'>; -} -declare module 'ace-builds/src-min-noconflict/mode-velocity.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-velocity'>; -} -declare module 'ace-builds/src-min-noconflict/mode-verilog.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-verilog'>; -} -declare module 'ace-builds/src-min-noconflict/mode-vhdl.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-vhdl'>; -} -declare module 'ace-builds/src-min-noconflict/mode-visualforce.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-visualforce'>; -} -declare module 'ace-builds/src-min-noconflict/mode-wollok.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-wollok'>; -} -declare module 'ace-builds/src-min-noconflict/mode-xml.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-xml'>; -} -declare module 'ace-builds/src-min-noconflict/mode-xquery.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-xquery'>; -} -declare module 'ace-builds/src-min-noconflict/mode-yaml.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-yaml'>; -} -declare module 'ace-builds/src-min-noconflict/mode-zeek.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/mode-zeek'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/abap.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/abap'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/abc.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/abc'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/actionscript.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/actionscript'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/ada.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/ada'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/alda.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/alda'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/apache_conf.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/apache_conf'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/apex.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/apex'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/applescript.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/applescript'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/aql.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/aql'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/asciidoc.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/asciidoc'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/asl.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/asl'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/assembly_x86.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/assembly_x86'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/autohotkey.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/autohotkey'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/batchfile.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/batchfile'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/c_cpp.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/c_cpp'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/c9search.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/c9search'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/cirru.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/cirru'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/clojure.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/clojure'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/cobol.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/cobol'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/coffee.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/coffee'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/coldfusion.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/coldfusion'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/crystal.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/crystal'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/csharp.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/csharp'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/csound_document.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/csound_document'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/csound_orchestra.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/csound_orchestra'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/csound_score.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/csound_score'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/csp.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/csp'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/css.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/css'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/curly.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/curly'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/d.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/d'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/dart.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/dart'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/diff.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/diff'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/django.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/django'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/dockerfile.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/dockerfile'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/dot.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/dot'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/drools.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/drools'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/edifact.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/edifact'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/eiffel.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/eiffel'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/ejs.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/ejs'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/elixir.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/elixir'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/elm.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/elm'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/erlang.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/erlang'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/forth.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/forth'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/fortran.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/fortran'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/fsharp.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/fsharp'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/fsl.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/fsl'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/ftl.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/ftl'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/gcode.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/gcode'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/gherkin.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/gherkin'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/gitignore.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/gitignore'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/glsl.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/glsl'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/gobstones.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/gobstones'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/golang.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/golang'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/graphqlschema.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/graphqlschema'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/groovy.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/groovy'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/haml.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/haml'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/handlebars.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/handlebars'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/haskell_cabal.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/haskell_cabal'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/haskell.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/haskell'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/haxe.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/haxe'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/hjson.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/hjson'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/html_elixir.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/html_elixir'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/html_ruby.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/html_ruby'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/html.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/html'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/ini.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/ini'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/io.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/io'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/jack.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/jack'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/jade.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/jade'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/java.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/java'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/javascript.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/javascript'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/json.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/json'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/json5.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/json5'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/jsoniq.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/jsoniq'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/jsp.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/jsp'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/jssm.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/jssm'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/jsx.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/jsx'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/julia.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/julia'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/kotlin.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/kotlin'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/latex.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/latex'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/less.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/less'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/liquid.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/liquid'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/lisp.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/lisp'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/livescript.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/livescript'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/logiql.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/logiql'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/logtalk.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/logtalk'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/lsl.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/lsl'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/lua.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/lua'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/luapage.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/luapage'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/lucene.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/lucene'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/makefile.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/makefile'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/markdown.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/markdown'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/mask.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/mask'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/matlab.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/matlab'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/maze.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/maze'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/mediawiki.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/mediawiki'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/mel.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/mel'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/mixal.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/mixal'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/mushcode.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/mushcode'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/mysql.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/mysql'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/nginx.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/nginx'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/nim.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/nim'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/nix.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/nix'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/nsis.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/nsis'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/nunjucks.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/nunjucks'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/objectivec.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/objectivec'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/ocaml.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/ocaml'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/pascal.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/pascal'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/perl.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/perl'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/perl6.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/perl6'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/pgsql.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/pgsql'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/php_laravel_blade.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/php_laravel_blade'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/php.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/php'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/pig.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/pig'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/plain_text.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/plain_text'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/powershell.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/powershell'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/praat.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/praat'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/prisma.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/prisma'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/prolog.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/prolog'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/properties.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/properties'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/protobuf.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/protobuf'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/puppet.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/puppet'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/python.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/python'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/qml.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/qml'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/r.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/r'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/razor.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/razor'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/rdoc.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/rdoc'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/red.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/red'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/redshift.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/redshift'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/rhtml.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/rhtml'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/rst.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/rst'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/ruby.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/ruby'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/rust.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/rust'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/sass.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/sass'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/scad.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/scad'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/scala.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/scala'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/scheme.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/scheme'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/scss.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/scss'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/sh.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/sh'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/sjs.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/sjs'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/slim.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/slim'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/smarty.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/smarty'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/snippets.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/snippets'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/soy_template.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/soy_template'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/space.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/space'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/sparql.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/sparql'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/sql.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/sql'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/sqlserver.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/sqlserver'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/stylus.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/stylus'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/svg.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/svg'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/swift.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/swift'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/tcl.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/tcl'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/terraform.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/terraform'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/tex.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/tex'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/text.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/text'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/textile.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/textile'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/toml.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/toml'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/tsx.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/tsx'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/turtle.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/turtle'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/twig.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/twig'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/typescript.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/typescript'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/vala.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/vala'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/vbscript.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/vbscript'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/velocity.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/velocity'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/verilog.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/verilog'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/vhdl.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/vhdl'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/visualforce.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/visualforce'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/wollok.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/wollok'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/xml.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/xml'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/xquery.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/xquery'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/yaml.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/yaml'>; -} -declare module 'ace-builds/src-min-noconflict/snippets/zeek.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/snippets/zeek'>; -} -declare module 'ace-builds/src-min-noconflict/theme-ambiance.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/theme-ambiance'>; -} -declare module 'ace-builds/src-min-noconflict/theme-chaos.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/theme-chaos'>; -} -declare module 'ace-builds/src-min-noconflict/theme-chrome.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/theme-chrome'>; -} -declare module 'ace-builds/src-min-noconflict/theme-clouds_midnight.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/theme-clouds_midnight'>; -} -declare module 'ace-builds/src-min-noconflict/theme-clouds.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/theme-clouds'>; -} -declare module 'ace-builds/src-min-noconflict/theme-cobalt.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/theme-cobalt'>; -} -declare module 'ace-builds/src-min-noconflict/theme-crimson_editor.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/theme-crimson_editor'>; -} -declare module 'ace-builds/src-min-noconflict/theme-dawn.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/theme-dawn'>; -} -declare module 'ace-builds/src-min-noconflict/theme-dracula.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/theme-dracula'>; -} -declare module 'ace-builds/src-min-noconflict/theme-dreamweaver.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/theme-dreamweaver'>; -} -declare module 'ace-builds/src-min-noconflict/theme-eclipse.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/theme-eclipse'>; -} -declare module 'ace-builds/src-min-noconflict/theme-github.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/theme-github'>; -} -declare module 'ace-builds/src-min-noconflict/theme-gob.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/theme-gob'>; -} -declare module 'ace-builds/src-min-noconflict/theme-gruvbox.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/theme-gruvbox'>; -} -declare module 'ace-builds/src-min-noconflict/theme-idle_fingers.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/theme-idle_fingers'>; -} -declare module 'ace-builds/src-min-noconflict/theme-iplastic.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/theme-iplastic'>; -} -declare module 'ace-builds/src-min-noconflict/theme-katzenmilch.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/theme-katzenmilch'>; -} -declare module 'ace-builds/src-min-noconflict/theme-kr_theme.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/theme-kr_theme'>; -} -declare module 'ace-builds/src-min-noconflict/theme-kuroir.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/theme-kuroir'>; -} -declare module 'ace-builds/src-min-noconflict/theme-merbivore_soft.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/theme-merbivore_soft'>; -} -declare module 'ace-builds/src-min-noconflict/theme-merbivore.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/theme-merbivore'>; -} -declare module 'ace-builds/src-min-noconflict/theme-mono_industrial.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/theme-mono_industrial'>; -} -declare module 'ace-builds/src-min-noconflict/theme-monokai.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/theme-monokai'>; -} -declare module 'ace-builds/src-min-noconflict/theme-nord_dark.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/theme-nord_dark'>; -} -declare module 'ace-builds/src-min-noconflict/theme-pastel_on_dark.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/theme-pastel_on_dark'>; -} -declare module 'ace-builds/src-min-noconflict/theme-solarized_dark.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/theme-solarized_dark'>; -} -declare module 'ace-builds/src-min-noconflict/theme-solarized_light.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/theme-solarized_light'>; -} -declare module 'ace-builds/src-min-noconflict/theme-sqlserver.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/theme-sqlserver'>; -} -declare module 'ace-builds/src-min-noconflict/theme-terminal.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/theme-terminal'>; -} -declare module 'ace-builds/src-min-noconflict/theme-textmate.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/theme-textmate'>; -} -declare module 'ace-builds/src-min-noconflict/theme-tomorrow_night_blue.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/theme-tomorrow_night_blue'>; -} -declare module 'ace-builds/src-min-noconflict/theme-tomorrow_night_bright.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/theme-tomorrow_night_bright'>; -} -declare module 'ace-builds/src-min-noconflict/theme-tomorrow_night_eighties.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/theme-tomorrow_night_eighties'>; -} -declare module 'ace-builds/src-min-noconflict/theme-tomorrow_night.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/theme-tomorrow_night'>; -} -declare module 'ace-builds/src-min-noconflict/theme-tomorrow.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/theme-tomorrow'>; -} -declare module 'ace-builds/src-min-noconflict/theme-twilight.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/theme-twilight'>; -} -declare module 'ace-builds/src-min-noconflict/theme-vibrant_ink.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/theme-vibrant_ink'>; -} -declare module 'ace-builds/src-min-noconflict/theme-xcode.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/theme-xcode'>; -} -declare module 'ace-builds/src-min-noconflict/worker-base.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/worker-base'>; -} -declare module 'ace-builds/src-min-noconflict/worker-coffee.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/worker-coffee'>; -} -declare module 'ace-builds/src-min-noconflict/worker-css.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/worker-css'>; -} -declare module 'ace-builds/src-min-noconflict/worker-html.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/worker-html'>; -} -declare module 'ace-builds/src-min-noconflict/worker-javascript.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/worker-javascript'>; -} -declare module 'ace-builds/src-min-noconflict/worker-json.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/worker-json'>; -} -declare module 'ace-builds/src-min-noconflict/worker-lua.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/worker-lua'>; -} -declare module 'ace-builds/src-min-noconflict/worker-php.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/worker-php'>; -} -declare module 'ace-builds/src-min-noconflict/worker-xml.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/worker-xml'>; -} -declare module 'ace-builds/src-min-noconflict/worker-xquery.js' { - declare module.exports: $Exports<'ace-builds/src-min-noconflict/worker-xquery'>; -} -declare module 'ace-builds/src-min/ace.js' { - declare module.exports: $Exports<'ace-builds/src-min/ace'>; -} -declare module 'ace-builds/src-min/ext-beautify.js' { - declare module.exports: $Exports<'ace-builds/src-min/ext-beautify'>; -} -declare module 'ace-builds/src-min/ext-code_lens.js' { - declare module.exports: $Exports<'ace-builds/src-min/ext-code_lens'>; -} -declare module 'ace-builds/src-min/ext-elastic_tabstops_lite.js' { - declare module.exports: $Exports<'ace-builds/src-min/ext-elastic_tabstops_lite'>; -} -declare module 'ace-builds/src-min/ext-emmet.js' { - declare module.exports: $Exports<'ace-builds/src-min/ext-emmet'>; -} -declare module 'ace-builds/src-min/ext-error_marker.js' { - declare module.exports: $Exports<'ace-builds/src-min/ext-error_marker'>; -} -declare module 'ace-builds/src-min/ext-keybinding_menu.js' { - declare module.exports: $Exports<'ace-builds/src-min/ext-keybinding_menu'>; -} -declare module 'ace-builds/src-min/ext-language_tools.js' { - declare module.exports: $Exports<'ace-builds/src-min/ext-language_tools'>; -} -declare module 'ace-builds/src-min/ext-linking.js' { - declare module.exports: $Exports<'ace-builds/src-min/ext-linking'>; -} -declare module 'ace-builds/src-min/ext-modelist.js' { - declare module.exports: $Exports<'ace-builds/src-min/ext-modelist'>; -} -declare module 'ace-builds/src-min/ext-options.js' { - declare module.exports: $Exports<'ace-builds/src-min/ext-options'>; -} -declare module 'ace-builds/src-min/ext-prompt.js' { - declare module.exports: $Exports<'ace-builds/src-min/ext-prompt'>; -} -declare module 'ace-builds/src-min/ext-rtl.js' { - declare module.exports: $Exports<'ace-builds/src-min/ext-rtl'>; -} -declare module 'ace-builds/src-min/ext-searchbox.js' { - declare module.exports: $Exports<'ace-builds/src-min/ext-searchbox'>; -} -declare module 'ace-builds/src-min/ext-settings_menu.js' { - declare module.exports: $Exports<'ace-builds/src-min/ext-settings_menu'>; -} -declare module 'ace-builds/src-min/ext-spellcheck.js' { - declare module.exports: $Exports<'ace-builds/src-min/ext-spellcheck'>; -} -declare module 'ace-builds/src-min/ext-split.js' { - declare module.exports: $Exports<'ace-builds/src-min/ext-split'>; -} -declare module 'ace-builds/src-min/ext-static_highlight.js' { - declare module.exports: $Exports<'ace-builds/src-min/ext-static_highlight'>; -} -declare module 'ace-builds/src-min/ext-statusbar.js' { - declare module.exports: $Exports<'ace-builds/src-min/ext-statusbar'>; -} -declare module 'ace-builds/src-min/ext-textarea.js' { - declare module.exports: $Exports<'ace-builds/src-min/ext-textarea'>; -} -declare module 'ace-builds/src-min/ext-themelist.js' { - declare module.exports: $Exports<'ace-builds/src-min/ext-themelist'>; -} -declare module 'ace-builds/src-min/ext-whitespace.js' { - declare module.exports: $Exports<'ace-builds/src-min/ext-whitespace'>; -} -declare module 'ace-builds/src-min/keybinding-emacs.js' { - declare module.exports: $Exports<'ace-builds/src-min/keybinding-emacs'>; -} -declare module 'ace-builds/src-min/keybinding-sublime.js' { - declare module.exports: $Exports<'ace-builds/src-min/keybinding-sublime'>; -} -declare module 'ace-builds/src-min/keybinding-vim.js' { - declare module.exports: $Exports<'ace-builds/src-min/keybinding-vim'>; -} -declare module 'ace-builds/src-min/keybinding-vscode.js' { - declare module.exports: $Exports<'ace-builds/src-min/keybinding-vscode'>; -} -declare module 'ace-builds/src-min/mode-abap.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-abap'>; -} -declare module 'ace-builds/src-min/mode-abc.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-abc'>; -} -declare module 'ace-builds/src-min/mode-actionscript.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-actionscript'>; -} -declare module 'ace-builds/src-min/mode-ada.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-ada'>; -} -declare module 'ace-builds/src-min/mode-alda.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-alda'>; -} -declare module 'ace-builds/src-min/mode-apache_conf.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-apache_conf'>; -} -declare module 'ace-builds/src-min/mode-apex.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-apex'>; -} -declare module 'ace-builds/src-min/mode-applescript.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-applescript'>; -} -declare module 'ace-builds/src-min/mode-aql.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-aql'>; -} -declare module 'ace-builds/src-min/mode-asciidoc.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-asciidoc'>; -} -declare module 'ace-builds/src-min/mode-asl.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-asl'>; -} -declare module 'ace-builds/src-min/mode-assembly_x86.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-assembly_x86'>; -} -declare module 'ace-builds/src-min/mode-autohotkey.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-autohotkey'>; -} -declare module 'ace-builds/src-min/mode-batchfile.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-batchfile'>; -} -declare module 'ace-builds/src-min/mode-c_cpp.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-c_cpp'>; -} -declare module 'ace-builds/src-min/mode-c9search.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-c9search'>; -} -declare module 'ace-builds/src-min/mode-cirru.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-cirru'>; -} -declare module 'ace-builds/src-min/mode-clojure.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-clojure'>; -} -declare module 'ace-builds/src-min/mode-cobol.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-cobol'>; -} -declare module 'ace-builds/src-min/mode-coffee.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-coffee'>; -} -declare module 'ace-builds/src-min/mode-coldfusion.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-coldfusion'>; -} -declare module 'ace-builds/src-min/mode-crystal.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-crystal'>; -} -declare module 'ace-builds/src-min/mode-csharp.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-csharp'>; -} -declare module 'ace-builds/src-min/mode-csound_document.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-csound_document'>; -} -declare module 'ace-builds/src-min/mode-csound_orchestra.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-csound_orchestra'>; -} -declare module 'ace-builds/src-min/mode-csound_score.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-csound_score'>; -} -declare module 'ace-builds/src-min/mode-csp.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-csp'>; -} -declare module 'ace-builds/src-min/mode-css.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-css'>; -} -declare module 'ace-builds/src-min/mode-curly.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-curly'>; -} -declare module 'ace-builds/src-min/mode-d.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-d'>; -} -declare module 'ace-builds/src-min/mode-dart.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-dart'>; -} -declare module 'ace-builds/src-min/mode-diff.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-diff'>; -} -declare module 'ace-builds/src-min/mode-django.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-django'>; -} -declare module 'ace-builds/src-min/mode-dockerfile.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-dockerfile'>; -} -declare module 'ace-builds/src-min/mode-dot.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-dot'>; -} -declare module 'ace-builds/src-min/mode-drools.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-drools'>; -} -declare module 'ace-builds/src-min/mode-edifact.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-edifact'>; -} -declare module 'ace-builds/src-min/mode-eiffel.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-eiffel'>; -} -declare module 'ace-builds/src-min/mode-ejs.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-ejs'>; -} -declare module 'ace-builds/src-min/mode-elixir.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-elixir'>; -} -declare module 'ace-builds/src-min/mode-elm.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-elm'>; -} -declare module 'ace-builds/src-min/mode-erlang.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-erlang'>; -} -declare module 'ace-builds/src-min/mode-forth.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-forth'>; -} -declare module 'ace-builds/src-min/mode-fortran.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-fortran'>; -} -declare module 'ace-builds/src-min/mode-fsharp.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-fsharp'>; -} -declare module 'ace-builds/src-min/mode-fsl.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-fsl'>; -} -declare module 'ace-builds/src-min/mode-ftl.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-ftl'>; -} -declare module 'ace-builds/src-min/mode-gcode.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-gcode'>; -} -declare module 'ace-builds/src-min/mode-gherkin.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-gherkin'>; -} -declare module 'ace-builds/src-min/mode-gitignore.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-gitignore'>; -} -declare module 'ace-builds/src-min/mode-glsl.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-glsl'>; -} -declare module 'ace-builds/src-min/mode-gobstones.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-gobstones'>; -} -declare module 'ace-builds/src-min/mode-golang.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-golang'>; -} -declare module 'ace-builds/src-min/mode-graphqlschema.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-graphqlschema'>; -} -declare module 'ace-builds/src-min/mode-groovy.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-groovy'>; -} -declare module 'ace-builds/src-min/mode-haml.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-haml'>; -} -declare module 'ace-builds/src-min/mode-handlebars.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-handlebars'>; -} -declare module 'ace-builds/src-min/mode-haskell_cabal.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-haskell_cabal'>; -} -declare module 'ace-builds/src-min/mode-haskell.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-haskell'>; -} -declare module 'ace-builds/src-min/mode-haxe.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-haxe'>; -} -declare module 'ace-builds/src-min/mode-hjson.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-hjson'>; -} -declare module 'ace-builds/src-min/mode-html_elixir.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-html_elixir'>; -} -declare module 'ace-builds/src-min/mode-html_ruby.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-html_ruby'>; -} -declare module 'ace-builds/src-min/mode-html.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-html'>; -} -declare module 'ace-builds/src-min/mode-ini.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-ini'>; -} -declare module 'ace-builds/src-min/mode-io.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-io'>; -} -declare module 'ace-builds/src-min/mode-jack.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-jack'>; -} -declare module 'ace-builds/src-min/mode-jade.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-jade'>; -} -declare module 'ace-builds/src-min/mode-java.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-java'>; -} -declare module 'ace-builds/src-min/mode-javascript.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-javascript'>; -} -declare module 'ace-builds/src-min/mode-json.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-json'>; -} -declare module 'ace-builds/src-min/mode-json5.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-json5'>; -} -declare module 'ace-builds/src-min/mode-jsoniq.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-jsoniq'>; -} -declare module 'ace-builds/src-min/mode-jsp.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-jsp'>; -} -declare module 'ace-builds/src-min/mode-jssm.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-jssm'>; -} -declare module 'ace-builds/src-min/mode-jsx.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-jsx'>; -} -declare module 'ace-builds/src-min/mode-julia.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-julia'>; -} -declare module 'ace-builds/src-min/mode-kotlin.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-kotlin'>; -} -declare module 'ace-builds/src-min/mode-latex.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-latex'>; -} -declare module 'ace-builds/src-min/mode-less.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-less'>; -} -declare module 'ace-builds/src-min/mode-liquid.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-liquid'>; -} -declare module 'ace-builds/src-min/mode-lisp.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-lisp'>; -} -declare module 'ace-builds/src-min/mode-livescript.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-livescript'>; -} -declare module 'ace-builds/src-min/mode-logiql.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-logiql'>; -} -declare module 'ace-builds/src-min/mode-logtalk.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-logtalk'>; -} -declare module 'ace-builds/src-min/mode-lsl.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-lsl'>; -} -declare module 'ace-builds/src-min/mode-lua.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-lua'>; -} -declare module 'ace-builds/src-min/mode-luapage.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-luapage'>; -} -declare module 'ace-builds/src-min/mode-lucene.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-lucene'>; -} -declare module 'ace-builds/src-min/mode-makefile.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-makefile'>; -} -declare module 'ace-builds/src-min/mode-markdown.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-markdown'>; -} -declare module 'ace-builds/src-min/mode-mask.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-mask'>; -} -declare module 'ace-builds/src-min/mode-matlab.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-matlab'>; -} -declare module 'ace-builds/src-min/mode-maze.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-maze'>; -} -declare module 'ace-builds/src-min/mode-mediawiki.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-mediawiki'>; -} -declare module 'ace-builds/src-min/mode-mel.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-mel'>; -} -declare module 'ace-builds/src-min/mode-mixal.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-mixal'>; -} -declare module 'ace-builds/src-min/mode-mushcode.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-mushcode'>; -} -declare module 'ace-builds/src-min/mode-mysql.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-mysql'>; -} -declare module 'ace-builds/src-min/mode-nginx.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-nginx'>; -} -declare module 'ace-builds/src-min/mode-nim.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-nim'>; -} -declare module 'ace-builds/src-min/mode-nix.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-nix'>; -} -declare module 'ace-builds/src-min/mode-nsis.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-nsis'>; -} -declare module 'ace-builds/src-min/mode-nunjucks.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-nunjucks'>; -} -declare module 'ace-builds/src-min/mode-objectivec.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-objectivec'>; -} -declare module 'ace-builds/src-min/mode-ocaml.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-ocaml'>; -} -declare module 'ace-builds/src-min/mode-pascal.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-pascal'>; -} -declare module 'ace-builds/src-min/mode-perl.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-perl'>; -} -declare module 'ace-builds/src-min/mode-perl6.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-perl6'>; -} -declare module 'ace-builds/src-min/mode-pgsql.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-pgsql'>; -} -declare module 'ace-builds/src-min/mode-php_laravel_blade.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-php_laravel_blade'>; -} -declare module 'ace-builds/src-min/mode-php.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-php'>; -} -declare module 'ace-builds/src-min/mode-pig.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-pig'>; -} -declare module 'ace-builds/src-min/mode-plain_text.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-plain_text'>; -} -declare module 'ace-builds/src-min/mode-powershell.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-powershell'>; -} -declare module 'ace-builds/src-min/mode-praat.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-praat'>; -} -declare module 'ace-builds/src-min/mode-prisma.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-prisma'>; -} -declare module 'ace-builds/src-min/mode-prolog.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-prolog'>; -} -declare module 'ace-builds/src-min/mode-properties.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-properties'>; -} -declare module 'ace-builds/src-min/mode-protobuf.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-protobuf'>; -} -declare module 'ace-builds/src-min/mode-puppet.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-puppet'>; -} -declare module 'ace-builds/src-min/mode-python.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-python'>; -} -declare module 'ace-builds/src-min/mode-qml.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-qml'>; -} -declare module 'ace-builds/src-min/mode-r.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-r'>; -} -declare module 'ace-builds/src-min/mode-razor.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-razor'>; -} -declare module 'ace-builds/src-min/mode-rdoc.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-rdoc'>; -} -declare module 'ace-builds/src-min/mode-red.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-red'>; -} -declare module 'ace-builds/src-min/mode-redshift.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-redshift'>; -} -declare module 'ace-builds/src-min/mode-rhtml.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-rhtml'>; -} -declare module 'ace-builds/src-min/mode-rst.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-rst'>; -} -declare module 'ace-builds/src-min/mode-ruby.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-ruby'>; -} -declare module 'ace-builds/src-min/mode-rust.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-rust'>; -} -declare module 'ace-builds/src-min/mode-sass.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-sass'>; -} -declare module 'ace-builds/src-min/mode-scad.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-scad'>; -} -declare module 'ace-builds/src-min/mode-scala.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-scala'>; -} -declare module 'ace-builds/src-min/mode-scheme.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-scheme'>; -} -declare module 'ace-builds/src-min/mode-scss.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-scss'>; -} -declare module 'ace-builds/src-min/mode-sh.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-sh'>; -} -declare module 'ace-builds/src-min/mode-sjs.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-sjs'>; -} -declare module 'ace-builds/src-min/mode-slim.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-slim'>; -} -declare module 'ace-builds/src-min/mode-smarty.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-smarty'>; -} -declare module 'ace-builds/src-min/mode-snippets.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-snippets'>; -} -declare module 'ace-builds/src-min/mode-soy_template.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-soy_template'>; -} -declare module 'ace-builds/src-min/mode-space.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-space'>; -} -declare module 'ace-builds/src-min/mode-sparql.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-sparql'>; -} -declare module 'ace-builds/src-min/mode-sql.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-sql'>; -} -declare module 'ace-builds/src-min/mode-sqlserver.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-sqlserver'>; -} -declare module 'ace-builds/src-min/mode-stylus.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-stylus'>; -} -declare module 'ace-builds/src-min/mode-svg.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-svg'>; -} -declare module 'ace-builds/src-min/mode-swift.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-swift'>; -} -declare module 'ace-builds/src-min/mode-tcl.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-tcl'>; -} -declare module 'ace-builds/src-min/mode-terraform.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-terraform'>; -} -declare module 'ace-builds/src-min/mode-tex.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-tex'>; -} -declare module 'ace-builds/src-min/mode-text.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-text'>; -} -declare module 'ace-builds/src-min/mode-textile.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-textile'>; -} -declare module 'ace-builds/src-min/mode-toml.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-toml'>; -} -declare module 'ace-builds/src-min/mode-tsx.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-tsx'>; -} -declare module 'ace-builds/src-min/mode-turtle.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-turtle'>; -} -declare module 'ace-builds/src-min/mode-twig.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-twig'>; -} -declare module 'ace-builds/src-min/mode-typescript.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-typescript'>; -} -declare module 'ace-builds/src-min/mode-vala.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-vala'>; -} -declare module 'ace-builds/src-min/mode-vbscript.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-vbscript'>; -} -declare module 'ace-builds/src-min/mode-velocity.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-velocity'>; -} -declare module 'ace-builds/src-min/mode-verilog.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-verilog'>; -} -declare module 'ace-builds/src-min/mode-vhdl.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-vhdl'>; -} -declare module 'ace-builds/src-min/mode-visualforce.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-visualforce'>; -} -declare module 'ace-builds/src-min/mode-wollok.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-wollok'>; -} -declare module 'ace-builds/src-min/mode-xml.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-xml'>; -} -declare module 'ace-builds/src-min/mode-xquery.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-xquery'>; -} -declare module 'ace-builds/src-min/mode-yaml.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-yaml'>; -} -declare module 'ace-builds/src-min/mode-zeek.js' { - declare module.exports: $Exports<'ace-builds/src-min/mode-zeek'>; -} -declare module 'ace-builds/src-min/snippets/abap.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/abap'>; -} -declare module 'ace-builds/src-min/snippets/abc.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/abc'>; -} -declare module 'ace-builds/src-min/snippets/actionscript.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/actionscript'>; -} -declare module 'ace-builds/src-min/snippets/ada.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/ada'>; -} -declare module 'ace-builds/src-min/snippets/alda.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/alda'>; -} -declare module 'ace-builds/src-min/snippets/apache_conf.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/apache_conf'>; -} -declare module 'ace-builds/src-min/snippets/apex.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/apex'>; -} -declare module 'ace-builds/src-min/snippets/applescript.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/applescript'>; -} -declare module 'ace-builds/src-min/snippets/aql.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/aql'>; -} -declare module 'ace-builds/src-min/snippets/asciidoc.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/asciidoc'>; -} -declare module 'ace-builds/src-min/snippets/asl.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/asl'>; -} -declare module 'ace-builds/src-min/snippets/assembly_x86.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/assembly_x86'>; -} -declare module 'ace-builds/src-min/snippets/autohotkey.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/autohotkey'>; -} -declare module 'ace-builds/src-min/snippets/batchfile.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/batchfile'>; -} -declare module 'ace-builds/src-min/snippets/c_cpp.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/c_cpp'>; -} -declare module 'ace-builds/src-min/snippets/c9search.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/c9search'>; -} -declare module 'ace-builds/src-min/snippets/cirru.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/cirru'>; -} -declare module 'ace-builds/src-min/snippets/clojure.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/clojure'>; -} -declare module 'ace-builds/src-min/snippets/cobol.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/cobol'>; -} -declare module 'ace-builds/src-min/snippets/coffee.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/coffee'>; -} -declare module 'ace-builds/src-min/snippets/coldfusion.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/coldfusion'>; -} -declare module 'ace-builds/src-min/snippets/crystal.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/crystal'>; -} -declare module 'ace-builds/src-min/snippets/csharp.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/csharp'>; -} -declare module 'ace-builds/src-min/snippets/csound_document.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/csound_document'>; -} -declare module 'ace-builds/src-min/snippets/csound_orchestra.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/csound_orchestra'>; -} -declare module 'ace-builds/src-min/snippets/csound_score.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/csound_score'>; -} -declare module 'ace-builds/src-min/snippets/csp.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/csp'>; -} -declare module 'ace-builds/src-min/snippets/css.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/css'>; -} -declare module 'ace-builds/src-min/snippets/curly.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/curly'>; -} -declare module 'ace-builds/src-min/snippets/d.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/d'>; -} -declare module 'ace-builds/src-min/snippets/dart.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/dart'>; -} -declare module 'ace-builds/src-min/snippets/diff.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/diff'>; -} -declare module 'ace-builds/src-min/snippets/django.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/django'>; -} -declare module 'ace-builds/src-min/snippets/dockerfile.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/dockerfile'>; -} -declare module 'ace-builds/src-min/snippets/dot.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/dot'>; -} -declare module 'ace-builds/src-min/snippets/drools.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/drools'>; -} -declare module 'ace-builds/src-min/snippets/edifact.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/edifact'>; -} -declare module 'ace-builds/src-min/snippets/eiffel.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/eiffel'>; -} -declare module 'ace-builds/src-min/snippets/ejs.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/ejs'>; -} -declare module 'ace-builds/src-min/snippets/elixir.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/elixir'>; -} -declare module 'ace-builds/src-min/snippets/elm.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/elm'>; -} -declare module 'ace-builds/src-min/snippets/erlang.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/erlang'>; -} -declare module 'ace-builds/src-min/snippets/forth.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/forth'>; -} -declare module 'ace-builds/src-min/snippets/fortran.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/fortran'>; -} -declare module 'ace-builds/src-min/snippets/fsharp.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/fsharp'>; -} -declare module 'ace-builds/src-min/snippets/fsl.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/fsl'>; -} -declare module 'ace-builds/src-min/snippets/ftl.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/ftl'>; -} -declare module 'ace-builds/src-min/snippets/gcode.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/gcode'>; -} -declare module 'ace-builds/src-min/snippets/gherkin.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/gherkin'>; -} -declare module 'ace-builds/src-min/snippets/gitignore.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/gitignore'>; -} -declare module 'ace-builds/src-min/snippets/glsl.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/glsl'>; -} -declare module 'ace-builds/src-min/snippets/gobstones.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/gobstones'>; -} -declare module 'ace-builds/src-min/snippets/golang.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/golang'>; -} -declare module 'ace-builds/src-min/snippets/graphqlschema.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/graphqlschema'>; -} -declare module 'ace-builds/src-min/snippets/groovy.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/groovy'>; -} -declare module 'ace-builds/src-min/snippets/haml.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/haml'>; -} -declare module 'ace-builds/src-min/snippets/handlebars.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/handlebars'>; -} -declare module 'ace-builds/src-min/snippets/haskell_cabal.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/haskell_cabal'>; -} -declare module 'ace-builds/src-min/snippets/haskell.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/haskell'>; -} -declare module 'ace-builds/src-min/snippets/haxe.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/haxe'>; -} -declare module 'ace-builds/src-min/snippets/hjson.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/hjson'>; -} -declare module 'ace-builds/src-min/snippets/html_elixir.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/html_elixir'>; -} -declare module 'ace-builds/src-min/snippets/html_ruby.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/html_ruby'>; -} -declare module 'ace-builds/src-min/snippets/html.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/html'>; -} -declare module 'ace-builds/src-min/snippets/ini.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/ini'>; -} -declare module 'ace-builds/src-min/snippets/io.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/io'>; -} -declare module 'ace-builds/src-min/snippets/jack.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/jack'>; -} -declare module 'ace-builds/src-min/snippets/jade.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/jade'>; -} -declare module 'ace-builds/src-min/snippets/java.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/java'>; -} -declare module 'ace-builds/src-min/snippets/javascript.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/javascript'>; -} -declare module 'ace-builds/src-min/snippets/json.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/json'>; -} -declare module 'ace-builds/src-min/snippets/json5.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/json5'>; -} -declare module 'ace-builds/src-min/snippets/jsoniq.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/jsoniq'>; -} -declare module 'ace-builds/src-min/snippets/jsp.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/jsp'>; -} -declare module 'ace-builds/src-min/snippets/jssm.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/jssm'>; -} -declare module 'ace-builds/src-min/snippets/jsx.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/jsx'>; -} -declare module 'ace-builds/src-min/snippets/julia.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/julia'>; -} -declare module 'ace-builds/src-min/snippets/kotlin.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/kotlin'>; -} -declare module 'ace-builds/src-min/snippets/latex.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/latex'>; -} -declare module 'ace-builds/src-min/snippets/less.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/less'>; -} -declare module 'ace-builds/src-min/snippets/liquid.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/liquid'>; -} -declare module 'ace-builds/src-min/snippets/lisp.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/lisp'>; -} -declare module 'ace-builds/src-min/snippets/livescript.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/livescript'>; -} -declare module 'ace-builds/src-min/snippets/logiql.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/logiql'>; -} -declare module 'ace-builds/src-min/snippets/logtalk.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/logtalk'>; -} -declare module 'ace-builds/src-min/snippets/lsl.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/lsl'>; -} -declare module 'ace-builds/src-min/snippets/lua.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/lua'>; -} -declare module 'ace-builds/src-min/snippets/luapage.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/luapage'>; -} -declare module 'ace-builds/src-min/snippets/lucene.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/lucene'>; -} -declare module 'ace-builds/src-min/snippets/makefile.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/makefile'>; -} -declare module 'ace-builds/src-min/snippets/markdown.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/markdown'>; -} -declare module 'ace-builds/src-min/snippets/mask.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/mask'>; -} -declare module 'ace-builds/src-min/snippets/matlab.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/matlab'>; -} -declare module 'ace-builds/src-min/snippets/maze.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/maze'>; -} -declare module 'ace-builds/src-min/snippets/mediawiki.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/mediawiki'>; -} -declare module 'ace-builds/src-min/snippets/mel.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/mel'>; -} -declare module 'ace-builds/src-min/snippets/mixal.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/mixal'>; -} -declare module 'ace-builds/src-min/snippets/mushcode.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/mushcode'>; -} -declare module 'ace-builds/src-min/snippets/mysql.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/mysql'>; -} -declare module 'ace-builds/src-min/snippets/nginx.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/nginx'>; -} -declare module 'ace-builds/src-min/snippets/nim.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/nim'>; -} -declare module 'ace-builds/src-min/snippets/nix.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/nix'>; -} -declare module 'ace-builds/src-min/snippets/nsis.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/nsis'>; -} -declare module 'ace-builds/src-min/snippets/nunjucks.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/nunjucks'>; -} -declare module 'ace-builds/src-min/snippets/objectivec.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/objectivec'>; -} -declare module 'ace-builds/src-min/snippets/ocaml.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/ocaml'>; -} -declare module 'ace-builds/src-min/snippets/pascal.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/pascal'>; -} -declare module 'ace-builds/src-min/snippets/perl.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/perl'>; -} -declare module 'ace-builds/src-min/snippets/perl6.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/perl6'>; -} -declare module 'ace-builds/src-min/snippets/pgsql.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/pgsql'>; -} -declare module 'ace-builds/src-min/snippets/php_laravel_blade.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/php_laravel_blade'>; -} -declare module 'ace-builds/src-min/snippets/php.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/php'>; -} -declare module 'ace-builds/src-min/snippets/pig.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/pig'>; -} -declare module 'ace-builds/src-min/snippets/plain_text.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/plain_text'>; -} -declare module 'ace-builds/src-min/snippets/powershell.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/powershell'>; -} -declare module 'ace-builds/src-min/snippets/praat.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/praat'>; -} -declare module 'ace-builds/src-min/snippets/prisma.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/prisma'>; -} -declare module 'ace-builds/src-min/snippets/prolog.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/prolog'>; -} -declare module 'ace-builds/src-min/snippets/properties.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/properties'>; -} -declare module 'ace-builds/src-min/snippets/protobuf.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/protobuf'>; -} -declare module 'ace-builds/src-min/snippets/puppet.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/puppet'>; -} -declare module 'ace-builds/src-min/snippets/python.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/python'>; -} -declare module 'ace-builds/src-min/snippets/qml.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/qml'>; -} -declare module 'ace-builds/src-min/snippets/r.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/r'>; -} -declare module 'ace-builds/src-min/snippets/razor.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/razor'>; -} -declare module 'ace-builds/src-min/snippets/rdoc.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/rdoc'>; -} -declare module 'ace-builds/src-min/snippets/red.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/red'>; -} -declare module 'ace-builds/src-min/snippets/redshift.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/redshift'>; -} -declare module 'ace-builds/src-min/snippets/rhtml.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/rhtml'>; -} -declare module 'ace-builds/src-min/snippets/rst.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/rst'>; -} -declare module 'ace-builds/src-min/snippets/ruby.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/ruby'>; -} -declare module 'ace-builds/src-min/snippets/rust.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/rust'>; -} -declare module 'ace-builds/src-min/snippets/sass.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/sass'>; -} -declare module 'ace-builds/src-min/snippets/scad.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/scad'>; -} -declare module 'ace-builds/src-min/snippets/scala.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/scala'>; -} -declare module 'ace-builds/src-min/snippets/scheme.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/scheme'>; -} -declare module 'ace-builds/src-min/snippets/scss.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/scss'>; -} -declare module 'ace-builds/src-min/snippets/sh.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/sh'>; -} -declare module 'ace-builds/src-min/snippets/sjs.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/sjs'>; -} -declare module 'ace-builds/src-min/snippets/slim.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/slim'>; -} -declare module 'ace-builds/src-min/snippets/smarty.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/smarty'>; -} -declare module 'ace-builds/src-min/snippets/snippets.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/snippets'>; -} -declare module 'ace-builds/src-min/snippets/soy_template.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/soy_template'>; -} -declare module 'ace-builds/src-min/snippets/space.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/space'>; -} -declare module 'ace-builds/src-min/snippets/sparql.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/sparql'>; -} -declare module 'ace-builds/src-min/snippets/sql.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/sql'>; -} -declare module 'ace-builds/src-min/snippets/sqlserver.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/sqlserver'>; -} -declare module 'ace-builds/src-min/snippets/stylus.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/stylus'>; -} -declare module 'ace-builds/src-min/snippets/svg.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/svg'>; -} -declare module 'ace-builds/src-min/snippets/swift.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/swift'>; -} -declare module 'ace-builds/src-min/snippets/tcl.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/tcl'>; -} -declare module 'ace-builds/src-min/snippets/terraform.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/terraform'>; -} -declare module 'ace-builds/src-min/snippets/tex.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/tex'>; -} -declare module 'ace-builds/src-min/snippets/text.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/text'>; -} -declare module 'ace-builds/src-min/snippets/textile.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/textile'>; -} -declare module 'ace-builds/src-min/snippets/toml.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/toml'>; -} -declare module 'ace-builds/src-min/snippets/tsx.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/tsx'>; -} -declare module 'ace-builds/src-min/snippets/turtle.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/turtle'>; -} -declare module 'ace-builds/src-min/snippets/twig.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/twig'>; -} -declare module 'ace-builds/src-min/snippets/typescript.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/typescript'>; -} -declare module 'ace-builds/src-min/snippets/vala.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/vala'>; -} -declare module 'ace-builds/src-min/snippets/vbscript.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/vbscript'>; -} -declare module 'ace-builds/src-min/snippets/velocity.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/velocity'>; -} -declare module 'ace-builds/src-min/snippets/verilog.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/verilog'>; -} -declare module 'ace-builds/src-min/snippets/vhdl.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/vhdl'>; -} -declare module 'ace-builds/src-min/snippets/visualforce.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/visualforce'>; -} -declare module 'ace-builds/src-min/snippets/wollok.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/wollok'>; -} -declare module 'ace-builds/src-min/snippets/xml.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/xml'>; -} -declare module 'ace-builds/src-min/snippets/xquery.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/xquery'>; -} -declare module 'ace-builds/src-min/snippets/yaml.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/yaml'>; -} -declare module 'ace-builds/src-min/snippets/zeek.js' { - declare module.exports: $Exports<'ace-builds/src-min/snippets/zeek'>; -} -declare module 'ace-builds/src-min/theme-ambiance.js' { - declare module.exports: $Exports<'ace-builds/src-min/theme-ambiance'>; -} -declare module 'ace-builds/src-min/theme-chaos.js' { - declare module.exports: $Exports<'ace-builds/src-min/theme-chaos'>; -} -declare module 'ace-builds/src-min/theme-chrome.js' { - declare module.exports: $Exports<'ace-builds/src-min/theme-chrome'>; -} -declare module 'ace-builds/src-min/theme-clouds_midnight.js' { - declare module.exports: $Exports<'ace-builds/src-min/theme-clouds_midnight'>; -} -declare module 'ace-builds/src-min/theme-clouds.js' { - declare module.exports: $Exports<'ace-builds/src-min/theme-clouds'>; -} -declare module 'ace-builds/src-min/theme-cobalt.js' { - declare module.exports: $Exports<'ace-builds/src-min/theme-cobalt'>; -} -declare module 'ace-builds/src-min/theme-crimson_editor.js' { - declare module.exports: $Exports<'ace-builds/src-min/theme-crimson_editor'>; -} -declare module 'ace-builds/src-min/theme-dawn.js' { - declare module.exports: $Exports<'ace-builds/src-min/theme-dawn'>; -} -declare module 'ace-builds/src-min/theme-dracula.js' { - declare module.exports: $Exports<'ace-builds/src-min/theme-dracula'>; -} -declare module 'ace-builds/src-min/theme-dreamweaver.js' { - declare module.exports: $Exports<'ace-builds/src-min/theme-dreamweaver'>; -} -declare module 'ace-builds/src-min/theme-eclipse.js' { - declare module.exports: $Exports<'ace-builds/src-min/theme-eclipse'>; -} -declare module 'ace-builds/src-min/theme-github.js' { - declare module.exports: $Exports<'ace-builds/src-min/theme-github'>; -} -declare module 'ace-builds/src-min/theme-gob.js' { - declare module.exports: $Exports<'ace-builds/src-min/theme-gob'>; -} -declare module 'ace-builds/src-min/theme-gruvbox.js' { - declare module.exports: $Exports<'ace-builds/src-min/theme-gruvbox'>; -} -declare module 'ace-builds/src-min/theme-idle_fingers.js' { - declare module.exports: $Exports<'ace-builds/src-min/theme-idle_fingers'>; -} -declare module 'ace-builds/src-min/theme-iplastic.js' { - declare module.exports: $Exports<'ace-builds/src-min/theme-iplastic'>; -} -declare module 'ace-builds/src-min/theme-katzenmilch.js' { - declare module.exports: $Exports<'ace-builds/src-min/theme-katzenmilch'>; -} -declare module 'ace-builds/src-min/theme-kr_theme.js' { - declare module.exports: $Exports<'ace-builds/src-min/theme-kr_theme'>; -} -declare module 'ace-builds/src-min/theme-kuroir.js' { - declare module.exports: $Exports<'ace-builds/src-min/theme-kuroir'>; -} -declare module 'ace-builds/src-min/theme-merbivore_soft.js' { - declare module.exports: $Exports<'ace-builds/src-min/theme-merbivore_soft'>; -} -declare module 'ace-builds/src-min/theme-merbivore.js' { - declare module.exports: $Exports<'ace-builds/src-min/theme-merbivore'>; -} -declare module 'ace-builds/src-min/theme-mono_industrial.js' { - declare module.exports: $Exports<'ace-builds/src-min/theme-mono_industrial'>; -} -declare module 'ace-builds/src-min/theme-monokai.js' { - declare module.exports: $Exports<'ace-builds/src-min/theme-monokai'>; -} -declare module 'ace-builds/src-min/theme-nord_dark.js' { - declare module.exports: $Exports<'ace-builds/src-min/theme-nord_dark'>; -} -declare module 'ace-builds/src-min/theme-pastel_on_dark.js' { - declare module.exports: $Exports<'ace-builds/src-min/theme-pastel_on_dark'>; -} -declare module 'ace-builds/src-min/theme-solarized_dark.js' { - declare module.exports: $Exports<'ace-builds/src-min/theme-solarized_dark'>; -} -declare module 'ace-builds/src-min/theme-solarized_light.js' { - declare module.exports: $Exports<'ace-builds/src-min/theme-solarized_light'>; -} -declare module 'ace-builds/src-min/theme-sqlserver.js' { - declare module.exports: $Exports<'ace-builds/src-min/theme-sqlserver'>; -} -declare module 'ace-builds/src-min/theme-terminal.js' { - declare module.exports: $Exports<'ace-builds/src-min/theme-terminal'>; -} -declare module 'ace-builds/src-min/theme-textmate.js' { - declare module.exports: $Exports<'ace-builds/src-min/theme-textmate'>; -} -declare module 'ace-builds/src-min/theme-tomorrow_night_blue.js' { - declare module.exports: $Exports<'ace-builds/src-min/theme-tomorrow_night_blue'>; -} -declare module 'ace-builds/src-min/theme-tomorrow_night_bright.js' { - declare module.exports: $Exports<'ace-builds/src-min/theme-tomorrow_night_bright'>; -} -declare module 'ace-builds/src-min/theme-tomorrow_night_eighties.js' { - declare module.exports: $Exports<'ace-builds/src-min/theme-tomorrow_night_eighties'>; -} -declare module 'ace-builds/src-min/theme-tomorrow_night.js' { - declare module.exports: $Exports<'ace-builds/src-min/theme-tomorrow_night'>; -} -declare module 'ace-builds/src-min/theme-tomorrow.js' { - declare module.exports: $Exports<'ace-builds/src-min/theme-tomorrow'>; -} -declare module 'ace-builds/src-min/theme-twilight.js' { - declare module.exports: $Exports<'ace-builds/src-min/theme-twilight'>; -} -declare module 'ace-builds/src-min/theme-vibrant_ink.js' { - declare module.exports: $Exports<'ace-builds/src-min/theme-vibrant_ink'>; -} -declare module 'ace-builds/src-min/theme-xcode.js' { - declare module.exports: $Exports<'ace-builds/src-min/theme-xcode'>; -} -declare module 'ace-builds/src-min/worker-base.js' { - declare module.exports: $Exports<'ace-builds/src-min/worker-base'>; -} -declare module 'ace-builds/src-min/worker-coffee.js' { - declare module.exports: $Exports<'ace-builds/src-min/worker-coffee'>; -} -declare module 'ace-builds/src-min/worker-css.js' { - declare module.exports: $Exports<'ace-builds/src-min/worker-css'>; -} -declare module 'ace-builds/src-min/worker-html.js' { - declare module.exports: $Exports<'ace-builds/src-min/worker-html'>; -} -declare module 'ace-builds/src-min/worker-javascript.js' { - declare module.exports: $Exports<'ace-builds/src-min/worker-javascript'>; -} -declare module 'ace-builds/src-min/worker-json.js' { - declare module.exports: $Exports<'ace-builds/src-min/worker-json'>; -} -declare module 'ace-builds/src-min/worker-lua.js' { - declare module.exports: $Exports<'ace-builds/src-min/worker-lua'>; -} -declare module 'ace-builds/src-min/worker-php.js' { - declare module.exports: $Exports<'ace-builds/src-min/worker-php'>; -} -declare module 'ace-builds/src-min/worker-xml.js' { - declare module.exports: $Exports<'ace-builds/src-min/worker-xml'>; -} -declare module 'ace-builds/src-min/worker-xquery.js' { - declare module.exports: $Exports<'ace-builds/src-min/worker-xquery'>; -} -declare module 'ace-builds/src-noconflict/ace.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/ace'>; -} -declare module 'ace-builds/src-noconflict/ext-beautify.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/ext-beautify'>; -} -declare module 'ace-builds/src-noconflict/ext-code_lens.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/ext-code_lens'>; -} -declare module 'ace-builds/src-noconflict/ext-elastic_tabstops_lite.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/ext-elastic_tabstops_lite'>; -} -declare module 'ace-builds/src-noconflict/ext-emmet.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/ext-emmet'>; -} -declare module 'ace-builds/src-noconflict/ext-error_marker.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/ext-error_marker'>; -} -declare module 'ace-builds/src-noconflict/ext-keybinding_menu.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/ext-keybinding_menu'>; -} -declare module 'ace-builds/src-noconflict/ext-language_tools.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/ext-language_tools'>; -} -declare module 'ace-builds/src-noconflict/ext-linking.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/ext-linking'>; -} -declare module 'ace-builds/src-noconflict/ext-modelist.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/ext-modelist'>; -} -declare module 'ace-builds/src-noconflict/ext-options.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/ext-options'>; -} -declare module 'ace-builds/src-noconflict/ext-prompt.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/ext-prompt'>; -} -declare module 'ace-builds/src-noconflict/ext-rtl.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/ext-rtl'>; -} -declare module 'ace-builds/src-noconflict/ext-searchbox.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/ext-searchbox'>; -} -declare module 'ace-builds/src-noconflict/ext-settings_menu.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/ext-settings_menu'>; -} -declare module 'ace-builds/src-noconflict/ext-spellcheck.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/ext-spellcheck'>; -} -declare module 'ace-builds/src-noconflict/ext-split.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/ext-split'>; -} -declare module 'ace-builds/src-noconflict/ext-static_highlight.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/ext-static_highlight'>; -} -declare module 'ace-builds/src-noconflict/ext-statusbar.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/ext-statusbar'>; -} -declare module 'ace-builds/src-noconflict/ext-textarea.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/ext-textarea'>; -} -declare module 'ace-builds/src-noconflict/ext-themelist.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/ext-themelist'>; -} -declare module 'ace-builds/src-noconflict/ext-whitespace.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/ext-whitespace'>; -} -declare module 'ace-builds/src-noconflict/keybinding-emacs.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/keybinding-emacs'>; -} -declare module 'ace-builds/src-noconflict/keybinding-sublime.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/keybinding-sublime'>; -} -declare module 'ace-builds/src-noconflict/keybinding-vim.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/keybinding-vim'>; -} -declare module 'ace-builds/src-noconflict/keybinding-vscode.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/keybinding-vscode'>; -} -declare module 'ace-builds/src-noconflict/mode-abap.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-abap'>; -} -declare module 'ace-builds/src-noconflict/mode-abc.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-abc'>; -} -declare module 'ace-builds/src-noconflict/mode-actionscript.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-actionscript'>; -} -declare module 'ace-builds/src-noconflict/mode-ada.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-ada'>; -} -declare module 'ace-builds/src-noconflict/mode-alda.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-alda'>; -} -declare module 'ace-builds/src-noconflict/mode-apache_conf.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-apache_conf'>; -} -declare module 'ace-builds/src-noconflict/mode-apex.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-apex'>; -} -declare module 'ace-builds/src-noconflict/mode-applescript.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-applescript'>; -} -declare module 'ace-builds/src-noconflict/mode-aql.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-aql'>; -} -declare module 'ace-builds/src-noconflict/mode-asciidoc.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-asciidoc'>; -} -declare module 'ace-builds/src-noconflict/mode-asl.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-asl'>; -} -declare module 'ace-builds/src-noconflict/mode-assembly_x86.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-assembly_x86'>; -} -declare module 'ace-builds/src-noconflict/mode-autohotkey.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-autohotkey'>; -} -declare module 'ace-builds/src-noconflict/mode-batchfile.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-batchfile'>; -} -declare module 'ace-builds/src-noconflict/mode-c_cpp.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-c_cpp'>; -} -declare module 'ace-builds/src-noconflict/mode-c9search.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-c9search'>; -} -declare module 'ace-builds/src-noconflict/mode-cirru.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-cirru'>; -} -declare module 'ace-builds/src-noconflict/mode-clojure.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-clojure'>; -} -declare module 'ace-builds/src-noconflict/mode-cobol.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-cobol'>; -} -declare module 'ace-builds/src-noconflict/mode-coffee.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-coffee'>; -} -declare module 'ace-builds/src-noconflict/mode-coldfusion.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-coldfusion'>; -} -declare module 'ace-builds/src-noconflict/mode-crystal.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-crystal'>; -} -declare module 'ace-builds/src-noconflict/mode-csharp.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-csharp'>; -} -declare module 'ace-builds/src-noconflict/mode-csound_document.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-csound_document'>; -} -declare module 'ace-builds/src-noconflict/mode-csound_orchestra.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-csound_orchestra'>; -} -declare module 'ace-builds/src-noconflict/mode-csound_score.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-csound_score'>; -} -declare module 'ace-builds/src-noconflict/mode-csp.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-csp'>; -} -declare module 'ace-builds/src-noconflict/mode-css.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-css'>; -} -declare module 'ace-builds/src-noconflict/mode-curly.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-curly'>; -} -declare module 'ace-builds/src-noconflict/mode-d.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-d'>; -} -declare module 'ace-builds/src-noconflict/mode-dart.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-dart'>; -} -declare module 'ace-builds/src-noconflict/mode-diff.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-diff'>; -} -declare module 'ace-builds/src-noconflict/mode-django.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-django'>; -} -declare module 'ace-builds/src-noconflict/mode-dockerfile.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-dockerfile'>; -} -declare module 'ace-builds/src-noconflict/mode-dot.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-dot'>; -} -declare module 'ace-builds/src-noconflict/mode-drools.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-drools'>; -} -declare module 'ace-builds/src-noconflict/mode-edifact.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-edifact'>; -} -declare module 'ace-builds/src-noconflict/mode-eiffel.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-eiffel'>; -} -declare module 'ace-builds/src-noconflict/mode-ejs.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-ejs'>; -} -declare module 'ace-builds/src-noconflict/mode-elixir.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-elixir'>; -} -declare module 'ace-builds/src-noconflict/mode-elm.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-elm'>; -} -declare module 'ace-builds/src-noconflict/mode-erlang.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-erlang'>; -} -declare module 'ace-builds/src-noconflict/mode-forth.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-forth'>; -} -declare module 'ace-builds/src-noconflict/mode-fortran.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-fortran'>; -} -declare module 'ace-builds/src-noconflict/mode-fsharp.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-fsharp'>; -} -declare module 'ace-builds/src-noconflict/mode-fsl.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-fsl'>; -} -declare module 'ace-builds/src-noconflict/mode-ftl.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-ftl'>; -} -declare module 'ace-builds/src-noconflict/mode-gcode.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-gcode'>; -} -declare module 'ace-builds/src-noconflict/mode-gherkin.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-gherkin'>; -} -declare module 'ace-builds/src-noconflict/mode-gitignore.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-gitignore'>; -} -declare module 'ace-builds/src-noconflict/mode-glsl.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-glsl'>; -} -declare module 'ace-builds/src-noconflict/mode-gobstones.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-gobstones'>; -} -declare module 'ace-builds/src-noconflict/mode-golang.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-golang'>; -} -declare module 'ace-builds/src-noconflict/mode-graphqlschema.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-graphqlschema'>; -} -declare module 'ace-builds/src-noconflict/mode-groovy.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-groovy'>; -} -declare module 'ace-builds/src-noconflict/mode-haml.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-haml'>; -} -declare module 'ace-builds/src-noconflict/mode-handlebars.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-handlebars'>; -} -declare module 'ace-builds/src-noconflict/mode-haskell_cabal.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-haskell_cabal'>; -} -declare module 'ace-builds/src-noconflict/mode-haskell.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-haskell'>; -} -declare module 'ace-builds/src-noconflict/mode-haxe.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-haxe'>; -} -declare module 'ace-builds/src-noconflict/mode-hjson.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-hjson'>; -} -declare module 'ace-builds/src-noconflict/mode-html_elixir.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-html_elixir'>; -} -declare module 'ace-builds/src-noconflict/mode-html_ruby.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-html_ruby'>; -} -declare module 'ace-builds/src-noconflict/mode-html.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-html'>; -} -declare module 'ace-builds/src-noconflict/mode-ini.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-ini'>; -} -declare module 'ace-builds/src-noconflict/mode-io.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-io'>; -} -declare module 'ace-builds/src-noconflict/mode-jack.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-jack'>; -} -declare module 'ace-builds/src-noconflict/mode-jade.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-jade'>; -} -declare module 'ace-builds/src-noconflict/mode-java.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-java'>; -} -declare module 'ace-builds/src-noconflict/mode-javascript.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-javascript'>; -} -declare module 'ace-builds/src-noconflict/mode-json.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-json'>; -} -declare module 'ace-builds/src-noconflict/mode-json5.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-json5'>; -} -declare module 'ace-builds/src-noconflict/mode-jsoniq.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-jsoniq'>; -} -declare module 'ace-builds/src-noconflict/mode-jsp.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-jsp'>; -} -declare module 'ace-builds/src-noconflict/mode-jssm.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-jssm'>; -} -declare module 'ace-builds/src-noconflict/mode-jsx.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-jsx'>; -} -declare module 'ace-builds/src-noconflict/mode-julia.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-julia'>; -} -declare module 'ace-builds/src-noconflict/mode-kotlin.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-kotlin'>; -} -declare module 'ace-builds/src-noconflict/mode-latex.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-latex'>; -} -declare module 'ace-builds/src-noconflict/mode-less.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-less'>; -} -declare module 'ace-builds/src-noconflict/mode-liquid.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-liquid'>; -} -declare module 'ace-builds/src-noconflict/mode-lisp.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-lisp'>; -} -declare module 'ace-builds/src-noconflict/mode-livescript.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-livescript'>; -} -declare module 'ace-builds/src-noconflict/mode-logiql.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-logiql'>; -} -declare module 'ace-builds/src-noconflict/mode-logtalk.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-logtalk'>; -} -declare module 'ace-builds/src-noconflict/mode-lsl.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-lsl'>; -} -declare module 'ace-builds/src-noconflict/mode-lua.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-lua'>; -} -declare module 'ace-builds/src-noconflict/mode-luapage.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-luapage'>; -} -declare module 'ace-builds/src-noconflict/mode-lucene.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-lucene'>; -} -declare module 'ace-builds/src-noconflict/mode-makefile.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-makefile'>; -} -declare module 'ace-builds/src-noconflict/mode-markdown.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-markdown'>; -} -declare module 'ace-builds/src-noconflict/mode-mask.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-mask'>; -} -declare module 'ace-builds/src-noconflict/mode-matlab.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-matlab'>; -} -declare module 'ace-builds/src-noconflict/mode-maze.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-maze'>; -} -declare module 'ace-builds/src-noconflict/mode-mediawiki.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-mediawiki'>; -} -declare module 'ace-builds/src-noconflict/mode-mel.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-mel'>; -} -declare module 'ace-builds/src-noconflict/mode-mixal.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-mixal'>; -} -declare module 'ace-builds/src-noconflict/mode-mushcode.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-mushcode'>; -} -declare module 'ace-builds/src-noconflict/mode-mysql.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-mysql'>; -} -declare module 'ace-builds/src-noconflict/mode-nginx.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-nginx'>; -} -declare module 'ace-builds/src-noconflict/mode-nim.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-nim'>; -} -declare module 'ace-builds/src-noconflict/mode-nix.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-nix'>; -} -declare module 'ace-builds/src-noconflict/mode-nsis.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-nsis'>; -} -declare module 'ace-builds/src-noconflict/mode-nunjucks.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-nunjucks'>; -} -declare module 'ace-builds/src-noconflict/mode-objectivec.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-objectivec'>; -} -declare module 'ace-builds/src-noconflict/mode-ocaml.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-ocaml'>; -} -declare module 'ace-builds/src-noconflict/mode-pascal.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-pascal'>; -} -declare module 'ace-builds/src-noconflict/mode-perl.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-perl'>; -} -declare module 'ace-builds/src-noconflict/mode-perl6.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-perl6'>; -} -declare module 'ace-builds/src-noconflict/mode-pgsql.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-pgsql'>; -} -declare module 'ace-builds/src-noconflict/mode-php_laravel_blade.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-php_laravel_blade'>; -} -declare module 'ace-builds/src-noconflict/mode-php.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-php'>; -} -declare module 'ace-builds/src-noconflict/mode-pig.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-pig'>; -} -declare module 'ace-builds/src-noconflict/mode-plain_text.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-plain_text'>; -} -declare module 'ace-builds/src-noconflict/mode-powershell.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-powershell'>; -} -declare module 'ace-builds/src-noconflict/mode-praat.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-praat'>; -} -declare module 'ace-builds/src-noconflict/mode-prisma.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-prisma'>; -} -declare module 'ace-builds/src-noconflict/mode-prolog.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-prolog'>; -} -declare module 'ace-builds/src-noconflict/mode-properties.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-properties'>; -} -declare module 'ace-builds/src-noconflict/mode-protobuf.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-protobuf'>; -} -declare module 'ace-builds/src-noconflict/mode-puppet.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-puppet'>; -} -declare module 'ace-builds/src-noconflict/mode-python.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-python'>; -} -declare module 'ace-builds/src-noconflict/mode-qml.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-qml'>; -} -declare module 'ace-builds/src-noconflict/mode-r.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-r'>; -} -declare module 'ace-builds/src-noconflict/mode-razor.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-razor'>; -} -declare module 'ace-builds/src-noconflict/mode-rdoc.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-rdoc'>; -} -declare module 'ace-builds/src-noconflict/mode-red.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-red'>; -} -declare module 'ace-builds/src-noconflict/mode-redshift.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-redshift'>; -} -declare module 'ace-builds/src-noconflict/mode-rhtml.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-rhtml'>; -} -declare module 'ace-builds/src-noconflict/mode-rst.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-rst'>; -} -declare module 'ace-builds/src-noconflict/mode-ruby.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-ruby'>; -} -declare module 'ace-builds/src-noconflict/mode-rust.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-rust'>; -} -declare module 'ace-builds/src-noconflict/mode-sass.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-sass'>; -} -declare module 'ace-builds/src-noconflict/mode-scad.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-scad'>; -} -declare module 'ace-builds/src-noconflict/mode-scala.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-scala'>; -} -declare module 'ace-builds/src-noconflict/mode-scheme.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-scheme'>; -} -declare module 'ace-builds/src-noconflict/mode-scss.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-scss'>; -} -declare module 'ace-builds/src-noconflict/mode-sh.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-sh'>; -} -declare module 'ace-builds/src-noconflict/mode-sjs.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-sjs'>; -} -declare module 'ace-builds/src-noconflict/mode-slim.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-slim'>; -} -declare module 'ace-builds/src-noconflict/mode-smarty.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-smarty'>; -} -declare module 'ace-builds/src-noconflict/mode-snippets.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-snippets'>; -} -declare module 'ace-builds/src-noconflict/mode-soy_template.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-soy_template'>; -} -declare module 'ace-builds/src-noconflict/mode-space.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-space'>; -} -declare module 'ace-builds/src-noconflict/mode-sparql.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-sparql'>; -} -declare module 'ace-builds/src-noconflict/mode-sql.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-sql'>; -} -declare module 'ace-builds/src-noconflict/mode-sqlserver.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-sqlserver'>; -} -declare module 'ace-builds/src-noconflict/mode-stylus.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-stylus'>; -} -declare module 'ace-builds/src-noconflict/mode-svg.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-svg'>; -} -declare module 'ace-builds/src-noconflict/mode-swift.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-swift'>; -} -declare module 'ace-builds/src-noconflict/mode-tcl.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-tcl'>; -} -declare module 'ace-builds/src-noconflict/mode-terraform.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-terraform'>; -} -declare module 'ace-builds/src-noconflict/mode-tex.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-tex'>; -} -declare module 'ace-builds/src-noconflict/mode-text.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-text'>; -} -declare module 'ace-builds/src-noconflict/mode-textile.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-textile'>; -} -declare module 'ace-builds/src-noconflict/mode-toml.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-toml'>; -} -declare module 'ace-builds/src-noconflict/mode-tsx.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-tsx'>; -} -declare module 'ace-builds/src-noconflict/mode-turtle.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-turtle'>; -} -declare module 'ace-builds/src-noconflict/mode-twig.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-twig'>; -} -declare module 'ace-builds/src-noconflict/mode-typescript.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-typescript'>; -} -declare module 'ace-builds/src-noconflict/mode-vala.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-vala'>; -} -declare module 'ace-builds/src-noconflict/mode-vbscript.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-vbscript'>; -} -declare module 'ace-builds/src-noconflict/mode-velocity.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-velocity'>; -} -declare module 'ace-builds/src-noconflict/mode-verilog.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-verilog'>; -} -declare module 'ace-builds/src-noconflict/mode-vhdl.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-vhdl'>; -} -declare module 'ace-builds/src-noconflict/mode-visualforce.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-visualforce'>; -} -declare module 'ace-builds/src-noconflict/mode-wollok.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-wollok'>; -} -declare module 'ace-builds/src-noconflict/mode-xml.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-xml'>; -} -declare module 'ace-builds/src-noconflict/mode-xquery.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-xquery'>; -} -declare module 'ace-builds/src-noconflict/mode-yaml.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-yaml'>; -} -declare module 'ace-builds/src-noconflict/mode-zeek.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/mode-zeek'>; -} -declare module 'ace-builds/src-noconflict/snippets/abap.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/abap'>; -} -declare module 'ace-builds/src-noconflict/snippets/abc.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/abc'>; -} -declare module 'ace-builds/src-noconflict/snippets/actionscript.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/actionscript'>; -} -declare module 'ace-builds/src-noconflict/snippets/ada.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/ada'>; -} -declare module 'ace-builds/src-noconflict/snippets/alda.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/alda'>; -} -declare module 'ace-builds/src-noconflict/snippets/apache_conf.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/apache_conf'>; -} -declare module 'ace-builds/src-noconflict/snippets/apex.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/apex'>; -} -declare module 'ace-builds/src-noconflict/snippets/applescript.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/applescript'>; -} -declare module 'ace-builds/src-noconflict/snippets/aql.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/aql'>; -} -declare module 'ace-builds/src-noconflict/snippets/asciidoc.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/asciidoc'>; -} -declare module 'ace-builds/src-noconflict/snippets/asl.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/asl'>; -} -declare module 'ace-builds/src-noconflict/snippets/assembly_x86.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/assembly_x86'>; -} -declare module 'ace-builds/src-noconflict/snippets/autohotkey.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/autohotkey'>; -} -declare module 'ace-builds/src-noconflict/snippets/batchfile.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/batchfile'>; -} -declare module 'ace-builds/src-noconflict/snippets/c_cpp.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/c_cpp'>; -} -declare module 'ace-builds/src-noconflict/snippets/c9search.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/c9search'>; -} -declare module 'ace-builds/src-noconflict/snippets/cirru.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/cirru'>; -} -declare module 'ace-builds/src-noconflict/snippets/clojure.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/clojure'>; -} -declare module 'ace-builds/src-noconflict/snippets/cobol.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/cobol'>; -} -declare module 'ace-builds/src-noconflict/snippets/coffee.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/coffee'>; -} -declare module 'ace-builds/src-noconflict/snippets/coldfusion.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/coldfusion'>; -} -declare module 'ace-builds/src-noconflict/snippets/crystal.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/crystal'>; -} -declare module 'ace-builds/src-noconflict/snippets/csharp.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/csharp'>; -} -declare module 'ace-builds/src-noconflict/snippets/csound_document.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/csound_document'>; -} -declare module 'ace-builds/src-noconflict/snippets/csound_orchestra.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/csound_orchestra'>; -} -declare module 'ace-builds/src-noconflict/snippets/csound_score.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/csound_score'>; -} -declare module 'ace-builds/src-noconflict/snippets/csp.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/csp'>; -} -declare module 'ace-builds/src-noconflict/snippets/css.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/css'>; -} -declare module 'ace-builds/src-noconflict/snippets/curly.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/curly'>; -} -declare module 'ace-builds/src-noconflict/snippets/d.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/d'>; -} -declare module 'ace-builds/src-noconflict/snippets/dart.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/dart'>; -} -declare module 'ace-builds/src-noconflict/snippets/diff.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/diff'>; -} -declare module 'ace-builds/src-noconflict/snippets/django.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/django'>; -} -declare module 'ace-builds/src-noconflict/snippets/dockerfile.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/dockerfile'>; -} -declare module 'ace-builds/src-noconflict/snippets/dot.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/dot'>; -} -declare module 'ace-builds/src-noconflict/snippets/drools.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/drools'>; -} -declare module 'ace-builds/src-noconflict/snippets/edifact.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/edifact'>; -} -declare module 'ace-builds/src-noconflict/snippets/eiffel.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/eiffel'>; -} -declare module 'ace-builds/src-noconflict/snippets/ejs.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/ejs'>; -} -declare module 'ace-builds/src-noconflict/snippets/elixir.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/elixir'>; -} -declare module 'ace-builds/src-noconflict/snippets/elm.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/elm'>; -} -declare module 'ace-builds/src-noconflict/snippets/erlang.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/erlang'>; -} -declare module 'ace-builds/src-noconflict/snippets/forth.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/forth'>; -} -declare module 'ace-builds/src-noconflict/snippets/fortran.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/fortran'>; -} -declare module 'ace-builds/src-noconflict/snippets/fsharp.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/fsharp'>; -} -declare module 'ace-builds/src-noconflict/snippets/fsl.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/fsl'>; -} -declare module 'ace-builds/src-noconflict/snippets/ftl.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/ftl'>; -} -declare module 'ace-builds/src-noconflict/snippets/gcode.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/gcode'>; -} -declare module 'ace-builds/src-noconflict/snippets/gherkin.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/gherkin'>; -} -declare module 'ace-builds/src-noconflict/snippets/gitignore.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/gitignore'>; -} -declare module 'ace-builds/src-noconflict/snippets/glsl.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/glsl'>; -} -declare module 'ace-builds/src-noconflict/snippets/gobstones.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/gobstones'>; -} -declare module 'ace-builds/src-noconflict/snippets/golang.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/golang'>; -} -declare module 'ace-builds/src-noconflict/snippets/graphqlschema.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/graphqlschema'>; -} -declare module 'ace-builds/src-noconflict/snippets/groovy.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/groovy'>; -} -declare module 'ace-builds/src-noconflict/snippets/haml.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/haml'>; -} -declare module 'ace-builds/src-noconflict/snippets/handlebars.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/handlebars'>; -} -declare module 'ace-builds/src-noconflict/snippets/haskell_cabal.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/haskell_cabal'>; -} -declare module 'ace-builds/src-noconflict/snippets/haskell.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/haskell'>; -} -declare module 'ace-builds/src-noconflict/snippets/haxe.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/haxe'>; -} -declare module 'ace-builds/src-noconflict/snippets/hjson.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/hjson'>; -} -declare module 'ace-builds/src-noconflict/snippets/html_elixir.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/html_elixir'>; -} -declare module 'ace-builds/src-noconflict/snippets/html_ruby.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/html_ruby'>; -} -declare module 'ace-builds/src-noconflict/snippets/html.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/html'>; -} -declare module 'ace-builds/src-noconflict/snippets/ini.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/ini'>; -} -declare module 'ace-builds/src-noconflict/snippets/io.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/io'>; -} -declare module 'ace-builds/src-noconflict/snippets/jack.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/jack'>; -} -declare module 'ace-builds/src-noconflict/snippets/jade.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/jade'>; -} -declare module 'ace-builds/src-noconflict/snippets/java.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/java'>; -} -declare module 'ace-builds/src-noconflict/snippets/javascript.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/javascript'>; -} -declare module 'ace-builds/src-noconflict/snippets/json.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/json'>; -} -declare module 'ace-builds/src-noconflict/snippets/json5.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/json5'>; -} -declare module 'ace-builds/src-noconflict/snippets/jsoniq.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/jsoniq'>; -} -declare module 'ace-builds/src-noconflict/snippets/jsp.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/jsp'>; -} -declare module 'ace-builds/src-noconflict/snippets/jssm.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/jssm'>; -} -declare module 'ace-builds/src-noconflict/snippets/jsx.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/jsx'>; -} -declare module 'ace-builds/src-noconflict/snippets/julia.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/julia'>; -} -declare module 'ace-builds/src-noconflict/snippets/kotlin.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/kotlin'>; -} -declare module 'ace-builds/src-noconflict/snippets/latex.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/latex'>; -} -declare module 'ace-builds/src-noconflict/snippets/less.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/less'>; -} -declare module 'ace-builds/src-noconflict/snippets/liquid.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/liquid'>; -} -declare module 'ace-builds/src-noconflict/snippets/lisp.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/lisp'>; -} -declare module 'ace-builds/src-noconflict/snippets/livescript.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/livescript'>; -} -declare module 'ace-builds/src-noconflict/snippets/logiql.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/logiql'>; -} -declare module 'ace-builds/src-noconflict/snippets/logtalk.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/logtalk'>; -} -declare module 'ace-builds/src-noconflict/snippets/lsl.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/lsl'>; -} -declare module 'ace-builds/src-noconflict/snippets/lua.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/lua'>; -} -declare module 'ace-builds/src-noconflict/snippets/luapage.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/luapage'>; -} -declare module 'ace-builds/src-noconflict/snippets/lucene.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/lucene'>; -} -declare module 'ace-builds/src-noconflict/snippets/makefile.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/makefile'>; -} -declare module 'ace-builds/src-noconflict/snippets/markdown.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/markdown'>; -} -declare module 'ace-builds/src-noconflict/snippets/mask.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/mask'>; -} -declare module 'ace-builds/src-noconflict/snippets/matlab.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/matlab'>; -} -declare module 'ace-builds/src-noconflict/snippets/maze.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/maze'>; -} -declare module 'ace-builds/src-noconflict/snippets/mediawiki.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/mediawiki'>; -} -declare module 'ace-builds/src-noconflict/snippets/mel.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/mel'>; -} -declare module 'ace-builds/src-noconflict/snippets/mixal.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/mixal'>; -} -declare module 'ace-builds/src-noconflict/snippets/mushcode.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/mushcode'>; -} -declare module 'ace-builds/src-noconflict/snippets/mysql.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/mysql'>; -} -declare module 'ace-builds/src-noconflict/snippets/nginx.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/nginx'>; -} -declare module 'ace-builds/src-noconflict/snippets/nim.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/nim'>; -} -declare module 'ace-builds/src-noconflict/snippets/nix.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/nix'>; -} -declare module 'ace-builds/src-noconflict/snippets/nsis.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/nsis'>; -} -declare module 'ace-builds/src-noconflict/snippets/nunjucks.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/nunjucks'>; -} -declare module 'ace-builds/src-noconflict/snippets/objectivec.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/objectivec'>; -} -declare module 'ace-builds/src-noconflict/snippets/ocaml.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/ocaml'>; -} -declare module 'ace-builds/src-noconflict/snippets/pascal.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/pascal'>; -} -declare module 'ace-builds/src-noconflict/snippets/perl.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/perl'>; -} -declare module 'ace-builds/src-noconflict/snippets/perl6.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/perl6'>; -} -declare module 'ace-builds/src-noconflict/snippets/pgsql.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/pgsql'>; -} -declare module 'ace-builds/src-noconflict/snippets/php_laravel_blade.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/php_laravel_blade'>; -} -declare module 'ace-builds/src-noconflict/snippets/php.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/php'>; -} -declare module 'ace-builds/src-noconflict/snippets/pig.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/pig'>; -} -declare module 'ace-builds/src-noconflict/snippets/plain_text.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/plain_text'>; -} -declare module 'ace-builds/src-noconflict/snippets/powershell.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/powershell'>; -} -declare module 'ace-builds/src-noconflict/snippets/praat.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/praat'>; -} -declare module 'ace-builds/src-noconflict/snippets/prisma.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/prisma'>; -} -declare module 'ace-builds/src-noconflict/snippets/prolog.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/prolog'>; -} -declare module 'ace-builds/src-noconflict/snippets/properties.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/properties'>; -} -declare module 'ace-builds/src-noconflict/snippets/protobuf.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/protobuf'>; -} -declare module 'ace-builds/src-noconflict/snippets/puppet.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/puppet'>; -} -declare module 'ace-builds/src-noconflict/snippets/python.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/python'>; -} -declare module 'ace-builds/src-noconflict/snippets/qml.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/qml'>; -} -declare module 'ace-builds/src-noconflict/snippets/r.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/r'>; -} -declare module 'ace-builds/src-noconflict/snippets/razor.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/razor'>; -} -declare module 'ace-builds/src-noconflict/snippets/rdoc.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/rdoc'>; -} -declare module 'ace-builds/src-noconflict/snippets/red.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/red'>; -} -declare module 'ace-builds/src-noconflict/snippets/redshift.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/redshift'>; -} -declare module 'ace-builds/src-noconflict/snippets/rhtml.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/rhtml'>; -} -declare module 'ace-builds/src-noconflict/snippets/rst.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/rst'>; -} -declare module 'ace-builds/src-noconflict/snippets/ruby.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/ruby'>; -} -declare module 'ace-builds/src-noconflict/snippets/rust.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/rust'>; -} -declare module 'ace-builds/src-noconflict/snippets/sass.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/sass'>; -} -declare module 'ace-builds/src-noconflict/snippets/scad.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/scad'>; -} -declare module 'ace-builds/src-noconflict/snippets/scala.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/scala'>; -} -declare module 'ace-builds/src-noconflict/snippets/scheme.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/scheme'>; -} -declare module 'ace-builds/src-noconflict/snippets/scss.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/scss'>; -} -declare module 'ace-builds/src-noconflict/snippets/sh.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/sh'>; -} -declare module 'ace-builds/src-noconflict/snippets/sjs.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/sjs'>; -} -declare module 'ace-builds/src-noconflict/snippets/slim.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/slim'>; -} -declare module 'ace-builds/src-noconflict/snippets/smarty.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/smarty'>; -} -declare module 'ace-builds/src-noconflict/snippets/snippets.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/snippets'>; -} -declare module 'ace-builds/src-noconflict/snippets/soy_template.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/soy_template'>; -} -declare module 'ace-builds/src-noconflict/snippets/space.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/space'>; -} -declare module 'ace-builds/src-noconflict/snippets/sparql.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/sparql'>; -} -declare module 'ace-builds/src-noconflict/snippets/sql.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/sql'>; -} -declare module 'ace-builds/src-noconflict/snippets/sqlserver.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/sqlserver'>; -} -declare module 'ace-builds/src-noconflict/snippets/stylus.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/stylus'>; -} -declare module 'ace-builds/src-noconflict/snippets/svg.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/svg'>; -} -declare module 'ace-builds/src-noconflict/snippets/swift.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/swift'>; -} -declare module 'ace-builds/src-noconflict/snippets/tcl.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/tcl'>; -} -declare module 'ace-builds/src-noconflict/snippets/terraform.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/terraform'>; -} -declare module 'ace-builds/src-noconflict/snippets/tex.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/tex'>; -} -declare module 'ace-builds/src-noconflict/snippets/text.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/text'>; -} -declare module 'ace-builds/src-noconflict/snippets/textile.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/textile'>; -} -declare module 'ace-builds/src-noconflict/snippets/toml.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/toml'>; -} -declare module 'ace-builds/src-noconflict/snippets/tsx.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/tsx'>; -} -declare module 'ace-builds/src-noconflict/snippets/turtle.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/turtle'>; -} -declare module 'ace-builds/src-noconflict/snippets/twig.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/twig'>; -} -declare module 'ace-builds/src-noconflict/snippets/typescript.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/typescript'>; -} -declare module 'ace-builds/src-noconflict/snippets/vala.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/vala'>; -} -declare module 'ace-builds/src-noconflict/snippets/vbscript.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/vbscript'>; -} -declare module 'ace-builds/src-noconflict/snippets/velocity.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/velocity'>; -} -declare module 'ace-builds/src-noconflict/snippets/verilog.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/verilog'>; -} -declare module 'ace-builds/src-noconflict/snippets/vhdl.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/vhdl'>; -} -declare module 'ace-builds/src-noconflict/snippets/visualforce.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/visualforce'>; -} -declare module 'ace-builds/src-noconflict/snippets/wollok.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/wollok'>; -} -declare module 'ace-builds/src-noconflict/snippets/xml.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/xml'>; -} -declare module 'ace-builds/src-noconflict/snippets/xquery.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/xquery'>; -} -declare module 'ace-builds/src-noconflict/snippets/yaml.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/yaml'>; -} -declare module 'ace-builds/src-noconflict/snippets/zeek.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/snippets/zeek'>; -} -declare module 'ace-builds/src-noconflict/theme-ambiance.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/theme-ambiance'>; -} -declare module 'ace-builds/src-noconflict/theme-chaos.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/theme-chaos'>; -} -declare module 'ace-builds/src-noconflict/theme-chrome.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/theme-chrome'>; -} -declare module 'ace-builds/src-noconflict/theme-clouds_midnight.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/theme-clouds_midnight'>; -} -declare module 'ace-builds/src-noconflict/theme-clouds.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/theme-clouds'>; -} -declare module 'ace-builds/src-noconflict/theme-cobalt.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/theme-cobalt'>; -} -declare module 'ace-builds/src-noconflict/theme-crimson_editor.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/theme-crimson_editor'>; -} -declare module 'ace-builds/src-noconflict/theme-dawn.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/theme-dawn'>; -} -declare module 'ace-builds/src-noconflict/theme-dracula.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/theme-dracula'>; -} -declare module 'ace-builds/src-noconflict/theme-dreamweaver.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/theme-dreamweaver'>; -} -declare module 'ace-builds/src-noconflict/theme-eclipse.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/theme-eclipse'>; -} -declare module 'ace-builds/src-noconflict/theme-github.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/theme-github'>; -} -declare module 'ace-builds/src-noconflict/theme-gob.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/theme-gob'>; -} -declare module 'ace-builds/src-noconflict/theme-gruvbox.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/theme-gruvbox'>; -} -declare module 'ace-builds/src-noconflict/theme-idle_fingers.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/theme-idle_fingers'>; -} -declare module 'ace-builds/src-noconflict/theme-iplastic.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/theme-iplastic'>; -} -declare module 'ace-builds/src-noconflict/theme-katzenmilch.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/theme-katzenmilch'>; -} -declare module 'ace-builds/src-noconflict/theme-kr_theme.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/theme-kr_theme'>; -} -declare module 'ace-builds/src-noconflict/theme-kuroir.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/theme-kuroir'>; -} -declare module 'ace-builds/src-noconflict/theme-merbivore_soft.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/theme-merbivore_soft'>; -} -declare module 'ace-builds/src-noconflict/theme-merbivore.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/theme-merbivore'>; -} -declare module 'ace-builds/src-noconflict/theme-mono_industrial.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/theme-mono_industrial'>; -} -declare module 'ace-builds/src-noconflict/theme-monokai.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/theme-monokai'>; -} -declare module 'ace-builds/src-noconflict/theme-nord_dark.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/theme-nord_dark'>; -} -declare module 'ace-builds/src-noconflict/theme-pastel_on_dark.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/theme-pastel_on_dark'>; -} -declare module 'ace-builds/src-noconflict/theme-solarized_dark.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/theme-solarized_dark'>; -} -declare module 'ace-builds/src-noconflict/theme-solarized_light.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/theme-solarized_light'>; -} -declare module 'ace-builds/src-noconflict/theme-sqlserver.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/theme-sqlserver'>; -} -declare module 'ace-builds/src-noconflict/theme-terminal.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/theme-terminal'>; -} -declare module 'ace-builds/src-noconflict/theme-textmate.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/theme-textmate'>; -} -declare module 'ace-builds/src-noconflict/theme-tomorrow_night_blue.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/theme-tomorrow_night_blue'>; -} -declare module 'ace-builds/src-noconflict/theme-tomorrow_night_bright.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/theme-tomorrow_night_bright'>; -} -declare module 'ace-builds/src-noconflict/theme-tomorrow_night_eighties.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/theme-tomorrow_night_eighties'>; -} -declare module 'ace-builds/src-noconflict/theme-tomorrow_night.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/theme-tomorrow_night'>; -} -declare module 'ace-builds/src-noconflict/theme-tomorrow.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/theme-tomorrow'>; -} -declare module 'ace-builds/src-noconflict/theme-twilight.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/theme-twilight'>; -} -declare module 'ace-builds/src-noconflict/theme-vibrant_ink.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/theme-vibrant_ink'>; -} -declare module 'ace-builds/src-noconflict/theme-xcode.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/theme-xcode'>; -} -declare module 'ace-builds/src-noconflict/worker-base.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/worker-base'>; -} -declare module 'ace-builds/src-noconflict/worker-coffee.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/worker-coffee'>; -} -declare module 'ace-builds/src-noconflict/worker-css.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/worker-css'>; -} -declare module 'ace-builds/src-noconflict/worker-html.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/worker-html'>; -} -declare module 'ace-builds/src-noconflict/worker-javascript.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/worker-javascript'>; -} -declare module 'ace-builds/src-noconflict/worker-json.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/worker-json'>; -} -declare module 'ace-builds/src-noconflict/worker-lua.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/worker-lua'>; -} -declare module 'ace-builds/src-noconflict/worker-php.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/worker-php'>; -} -declare module 'ace-builds/src-noconflict/worker-xml.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/worker-xml'>; -} -declare module 'ace-builds/src-noconflict/worker-xquery.js' { - declare module.exports: $Exports<'ace-builds/src-noconflict/worker-xquery'>; -} -declare module 'ace-builds/src/ace.js' { - declare module.exports: $Exports<'ace-builds/src/ace'>; -} -declare module 'ace-builds/src/ext-beautify.js' { - declare module.exports: $Exports<'ace-builds/src/ext-beautify'>; -} -declare module 'ace-builds/src/ext-code_lens.js' { - declare module.exports: $Exports<'ace-builds/src/ext-code_lens'>; -} -declare module 'ace-builds/src/ext-elastic_tabstops_lite.js' { - declare module.exports: $Exports<'ace-builds/src/ext-elastic_tabstops_lite'>; -} -declare module 'ace-builds/src/ext-emmet.js' { - declare module.exports: $Exports<'ace-builds/src/ext-emmet'>; -} -declare module 'ace-builds/src/ext-error_marker.js' { - declare module.exports: $Exports<'ace-builds/src/ext-error_marker'>; -} -declare module 'ace-builds/src/ext-keybinding_menu.js' { - declare module.exports: $Exports<'ace-builds/src/ext-keybinding_menu'>; -} -declare module 'ace-builds/src/ext-language_tools.js' { - declare module.exports: $Exports<'ace-builds/src/ext-language_tools'>; -} -declare module 'ace-builds/src/ext-linking.js' { - declare module.exports: $Exports<'ace-builds/src/ext-linking'>; -} -declare module 'ace-builds/src/ext-modelist.js' { - declare module.exports: $Exports<'ace-builds/src/ext-modelist'>; -} -declare module 'ace-builds/src/ext-options.js' { - declare module.exports: $Exports<'ace-builds/src/ext-options'>; -} -declare module 'ace-builds/src/ext-prompt.js' { - declare module.exports: $Exports<'ace-builds/src/ext-prompt'>; -} -declare module 'ace-builds/src/ext-rtl.js' { - declare module.exports: $Exports<'ace-builds/src/ext-rtl'>; -} -declare module 'ace-builds/src/ext-searchbox.js' { - declare module.exports: $Exports<'ace-builds/src/ext-searchbox'>; -} -declare module 'ace-builds/src/ext-settings_menu.js' { - declare module.exports: $Exports<'ace-builds/src/ext-settings_menu'>; -} -declare module 'ace-builds/src/ext-spellcheck.js' { - declare module.exports: $Exports<'ace-builds/src/ext-spellcheck'>; -} -declare module 'ace-builds/src/ext-split.js' { - declare module.exports: $Exports<'ace-builds/src/ext-split'>; -} -declare module 'ace-builds/src/ext-static_highlight.js' { - declare module.exports: $Exports<'ace-builds/src/ext-static_highlight'>; -} -declare module 'ace-builds/src/ext-statusbar.js' { - declare module.exports: $Exports<'ace-builds/src/ext-statusbar'>; -} -declare module 'ace-builds/src/ext-textarea.js' { - declare module.exports: $Exports<'ace-builds/src/ext-textarea'>; -} -declare module 'ace-builds/src/ext-themelist.js' { - declare module.exports: $Exports<'ace-builds/src/ext-themelist'>; -} -declare module 'ace-builds/src/ext-whitespace.js' { - declare module.exports: $Exports<'ace-builds/src/ext-whitespace'>; -} -declare module 'ace-builds/src/keybinding-emacs.js' { - declare module.exports: $Exports<'ace-builds/src/keybinding-emacs'>; -} -declare module 'ace-builds/src/keybinding-sublime.js' { - declare module.exports: $Exports<'ace-builds/src/keybinding-sublime'>; -} -declare module 'ace-builds/src/keybinding-vim.js' { - declare module.exports: $Exports<'ace-builds/src/keybinding-vim'>; -} -declare module 'ace-builds/src/keybinding-vscode.js' { - declare module.exports: $Exports<'ace-builds/src/keybinding-vscode'>; -} -declare module 'ace-builds/src/mode-abap.js' { - declare module.exports: $Exports<'ace-builds/src/mode-abap'>; -} -declare module 'ace-builds/src/mode-abc.js' { - declare module.exports: $Exports<'ace-builds/src/mode-abc'>; -} -declare module 'ace-builds/src/mode-actionscript.js' { - declare module.exports: $Exports<'ace-builds/src/mode-actionscript'>; -} -declare module 'ace-builds/src/mode-ada.js' { - declare module.exports: $Exports<'ace-builds/src/mode-ada'>; -} -declare module 'ace-builds/src/mode-alda.js' { - declare module.exports: $Exports<'ace-builds/src/mode-alda'>; -} -declare module 'ace-builds/src/mode-apache_conf.js' { - declare module.exports: $Exports<'ace-builds/src/mode-apache_conf'>; -} -declare module 'ace-builds/src/mode-apex.js' { - declare module.exports: $Exports<'ace-builds/src/mode-apex'>; -} -declare module 'ace-builds/src/mode-applescript.js' { - declare module.exports: $Exports<'ace-builds/src/mode-applescript'>; -} -declare module 'ace-builds/src/mode-aql.js' { - declare module.exports: $Exports<'ace-builds/src/mode-aql'>; -} -declare module 'ace-builds/src/mode-asciidoc.js' { - declare module.exports: $Exports<'ace-builds/src/mode-asciidoc'>; -} -declare module 'ace-builds/src/mode-asl.js' { - declare module.exports: $Exports<'ace-builds/src/mode-asl'>; -} -declare module 'ace-builds/src/mode-assembly_x86.js' { - declare module.exports: $Exports<'ace-builds/src/mode-assembly_x86'>; -} -declare module 'ace-builds/src/mode-autohotkey.js' { - declare module.exports: $Exports<'ace-builds/src/mode-autohotkey'>; -} -declare module 'ace-builds/src/mode-batchfile.js' { - declare module.exports: $Exports<'ace-builds/src/mode-batchfile'>; -} -declare module 'ace-builds/src/mode-c_cpp.js' { - declare module.exports: $Exports<'ace-builds/src/mode-c_cpp'>; -} -declare module 'ace-builds/src/mode-c9search.js' { - declare module.exports: $Exports<'ace-builds/src/mode-c9search'>; -} -declare module 'ace-builds/src/mode-cirru.js' { - declare module.exports: $Exports<'ace-builds/src/mode-cirru'>; -} -declare module 'ace-builds/src/mode-clojure.js' { - declare module.exports: $Exports<'ace-builds/src/mode-clojure'>; -} -declare module 'ace-builds/src/mode-cobol.js' { - declare module.exports: $Exports<'ace-builds/src/mode-cobol'>; -} -declare module 'ace-builds/src/mode-coffee.js' { - declare module.exports: $Exports<'ace-builds/src/mode-coffee'>; -} -declare module 'ace-builds/src/mode-coldfusion.js' { - declare module.exports: $Exports<'ace-builds/src/mode-coldfusion'>; -} -declare module 'ace-builds/src/mode-crystal.js' { - declare module.exports: $Exports<'ace-builds/src/mode-crystal'>; -} -declare module 'ace-builds/src/mode-csharp.js' { - declare module.exports: $Exports<'ace-builds/src/mode-csharp'>; -} -declare module 'ace-builds/src/mode-csound_document.js' { - declare module.exports: $Exports<'ace-builds/src/mode-csound_document'>; -} -declare module 'ace-builds/src/mode-csound_orchestra.js' { - declare module.exports: $Exports<'ace-builds/src/mode-csound_orchestra'>; -} -declare module 'ace-builds/src/mode-csound_score.js' { - declare module.exports: $Exports<'ace-builds/src/mode-csound_score'>; -} -declare module 'ace-builds/src/mode-csp.js' { - declare module.exports: $Exports<'ace-builds/src/mode-csp'>; -} -declare module 'ace-builds/src/mode-css.js' { - declare module.exports: $Exports<'ace-builds/src/mode-css'>; -} -declare module 'ace-builds/src/mode-curly.js' { - declare module.exports: $Exports<'ace-builds/src/mode-curly'>; -} -declare module 'ace-builds/src/mode-d.js' { - declare module.exports: $Exports<'ace-builds/src/mode-d'>; -} -declare module 'ace-builds/src/mode-dart.js' { - declare module.exports: $Exports<'ace-builds/src/mode-dart'>; -} -declare module 'ace-builds/src/mode-diff.js' { - declare module.exports: $Exports<'ace-builds/src/mode-diff'>; -} -declare module 'ace-builds/src/mode-django.js' { - declare module.exports: $Exports<'ace-builds/src/mode-django'>; -} -declare module 'ace-builds/src/mode-dockerfile.js' { - declare module.exports: $Exports<'ace-builds/src/mode-dockerfile'>; -} -declare module 'ace-builds/src/mode-dot.js' { - declare module.exports: $Exports<'ace-builds/src/mode-dot'>; -} -declare module 'ace-builds/src/mode-drools.js' { - declare module.exports: $Exports<'ace-builds/src/mode-drools'>; -} -declare module 'ace-builds/src/mode-edifact.js' { - declare module.exports: $Exports<'ace-builds/src/mode-edifact'>; -} -declare module 'ace-builds/src/mode-eiffel.js' { - declare module.exports: $Exports<'ace-builds/src/mode-eiffel'>; -} -declare module 'ace-builds/src/mode-ejs.js' { - declare module.exports: $Exports<'ace-builds/src/mode-ejs'>; -} -declare module 'ace-builds/src/mode-elixir.js' { - declare module.exports: $Exports<'ace-builds/src/mode-elixir'>; -} -declare module 'ace-builds/src/mode-elm.js' { - declare module.exports: $Exports<'ace-builds/src/mode-elm'>; -} -declare module 'ace-builds/src/mode-erlang.js' { - declare module.exports: $Exports<'ace-builds/src/mode-erlang'>; -} -declare module 'ace-builds/src/mode-forth.js' { - declare module.exports: $Exports<'ace-builds/src/mode-forth'>; -} -declare module 'ace-builds/src/mode-fortran.js' { - declare module.exports: $Exports<'ace-builds/src/mode-fortran'>; -} -declare module 'ace-builds/src/mode-fsharp.js' { - declare module.exports: $Exports<'ace-builds/src/mode-fsharp'>; -} -declare module 'ace-builds/src/mode-fsl.js' { - declare module.exports: $Exports<'ace-builds/src/mode-fsl'>; -} -declare module 'ace-builds/src/mode-ftl.js' { - declare module.exports: $Exports<'ace-builds/src/mode-ftl'>; -} -declare module 'ace-builds/src/mode-gcode.js' { - declare module.exports: $Exports<'ace-builds/src/mode-gcode'>; -} -declare module 'ace-builds/src/mode-gherkin.js' { - declare module.exports: $Exports<'ace-builds/src/mode-gherkin'>; -} -declare module 'ace-builds/src/mode-gitignore.js' { - declare module.exports: $Exports<'ace-builds/src/mode-gitignore'>; -} -declare module 'ace-builds/src/mode-glsl.js' { - declare module.exports: $Exports<'ace-builds/src/mode-glsl'>; -} -declare module 'ace-builds/src/mode-gobstones.js' { - declare module.exports: $Exports<'ace-builds/src/mode-gobstones'>; -} -declare module 'ace-builds/src/mode-golang.js' { - declare module.exports: $Exports<'ace-builds/src/mode-golang'>; -} -declare module 'ace-builds/src/mode-graphqlschema.js' { - declare module.exports: $Exports<'ace-builds/src/mode-graphqlschema'>; -} -declare module 'ace-builds/src/mode-groovy.js' { - declare module.exports: $Exports<'ace-builds/src/mode-groovy'>; -} -declare module 'ace-builds/src/mode-haml.js' { - declare module.exports: $Exports<'ace-builds/src/mode-haml'>; -} -declare module 'ace-builds/src/mode-handlebars.js' { - declare module.exports: $Exports<'ace-builds/src/mode-handlebars'>; -} -declare module 'ace-builds/src/mode-haskell_cabal.js' { - declare module.exports: $Exports<'ace-builds/src/mode-haskell_cabal'>; -} -declare module 'ace-builds/src/mode-haskell.js' { - declare module.exports: $Exports<'ace-builds/src/mode-haskell'>; -} -declare module 'ace-builds/src/mode-haxe.js' { - declare module.exports: $Exports<'ace-builds/src/mode-haxe'>; -} -declare module 'ace-builds/src/mode-hjson.js' { - declare module.exports: $Exports<'ace-builds/src/mode-hjson'>; -} -declare module 'ace-builds/src/mode-html_elixir.js' { - declare module.exports: $Exports<'ace-builds/src/mode-html_elixir'>; -} -declare module 'ace-builds/src/mode-html_ruby.js' { - declare module.exports: $Exports<'ace-builds/src/mode-html_ruby'>; -} -declare module 'ace-builds/src/mode-html.js' { - declare module.exports: $Exports<'ace-builds/src/mode-html'>; -} -declare module 'ace-builds/src/mode-ini.js' { - declare module.exports: $Exports<'ace-builds/src/mode-ini'>; -} -declare module 'ace-builds/src/mode-io.js' { - declare module.exports: $Exports<'ace-builds/src/mode-io'>; -} -declare module 'ace-builds/src/mode-jack.js' { - declare module.exports: $Exports<'ace-builds/src/mode-jack'>; -} -declare module 'ace-builds/src/mode-jade.js' { - declare module.exports: $Exports<'ace-builds/src/mode-jade'>; -} -declare module 'ace-builds/src/mode-java.js' { - declare module.exports: $Exports<'ace-builds/src/mode-java'>; -} -declare module 'ace-builds/src/mode-javascript.js' { - declare module.exports: $Exports<'ace-builds/src/mode-javascript'>; -} -declare module 'ace-builds/src/mode-json.js' { - declare module.exports: $Exports<'ace-builds/src/mode-json'>; -} -declare module 'ace-builds/src/mode-json5.js' { - declare module.exports: $Exports<'ace-builds/src/mode-json5'>; -} -declare module 'ace-builds/src/mode-jsoniq.js' { - declare module.exports: $Exports<'ace-builds/src/mode-jsoniq'>; -} -declare module 'ace-builds/src/mode-jsp.js' { - declare module.exports: $Exports<'ace-builds/src/mode-jsp'>; -} -declare module 'ace-builds/src/mode-jssm.js' { - declare module.exports: $Exports<'ace-builds/src/mode-jssm'>; -} -declare module 'ace-builds/src/mode-jsx.js' { - declare module.exports: $Exports<'ace-builds/src/mode-jsx'>; -} -declare module 'ace-builds/src/mode-julia.js' { - declare module.exports: $Exports<'ace-builds/src/mode-julia'>; -} -declare module 'ace-builds/src/mode-kotlin.js' { - declare module.exports: $Exports<'ace-builds/src/mode-kotlin'>; -} -declare module 'ace-builds/src/mode-latex.js' { - declare module.exports: $Exports<'ace-builds/src/mode-latex'>; -} -declare module 'ace-builds/src/mode-less.js' { - declare module.exports: $Exports<'ace-builds/src/mode-less'>; -} -declare module 'ace-builds/src/mode-liquid.js' { - declare module.exports: $Exports<'ace-builds/src/mode-liquid'>; -} -declare module 'ace-builds/src/mode-lisp.js' { - declare module.exports: $Exports<'ace-builds/src/mode-lisp'>; -} -declare module 'ace-builds/src/mode-livescript.js' { - declare module.exports: $Exports<'ace-builds/src/mode-livescript'>; -} -declare module 'ace-builds/src/mode-logiql.js' { - declare module.exports: $Exports<'ace-builds/src/mode-logiql'>; -} -declare module 'ace-builds/src/mode-logtalk.js' { - declare module.exports: $Exports<'ace-builds/src/mode-logtalk'>; -} -declare module 'ace-builds/src/mode-lsl.js' { - declare module.exports: $Exports<'ace-builds/src/mode-lsl'>; -} -declare module 'ace-builds/src/mode-lua.js' { - declare module.exports: $Exports<'ace-builds/src/mode-lua'>; -} -declare module 'ace-builds/src/mode-luapage.js' { - declare module.exports: $Exports<'ace-builds/src/mode-luapage'>; -} -declare module 'ace-builds/src/mode-lucene.js' { - declare module.exports: $Exports<'ace-builds/src/mode-lucene'>; -} -declare module 'ace-builds/src/mode-makefile.js' { - declare module.exports: $Exports<'ace-builds/src/mode-makefile'>; -} -declare module 'ace-builds/src/mode-markdown.js' { - declare module.exports: $Exports<'ace-builds/src/mode-markdown'>; -} -declare module 'ace-builds/src/mode-mask.js' { - declare module.exports: $Exports<'ace-builds/src/mode-mask'>; -} -declare module 'ace-builds/src/mode-matlab.js' { - declare module.exports: $Exports<'ace-builds/src/mode-matlab'>; -} -declare module 'ace-builds/src/mode-maze.js' { - declare module.exports: $Exports<'ace-builds/src/mode-maze'>; -} -declare module 'ace-builds/src/mode-mediawiki.js' { - declare module.exports: $Exports<'ace-builds/src/mode-mediawiki'>; -} -declare module 'ace-builds/src/mode-mel.js' { - declare module.exports: $Exports<'ace-builds/src/mode-mel'>; -} -declare module 'ace-builds/src/mode-mixal.js' { - declare module.exports: $Exports<'ace-builds/src/mode-mixal'>; -} -declare module 'ace-builds/src/mode-mushcode.js' { - declare module.exports: $Exports<'ace-builds/src/mode-mushcode'>; -} -declare module 'ace-builds/src/mode-mysql.js' { - declare module.exports: $Exports<'ace-builds/src/mode-mysql'>; -} -declare module 'ace-builds/src/mode-nginx.js' { - declare module.exports: $Exports<'ace-builds/src/mode-nginx'>; -} -declare module 'ace-builds/src/mode-nim.js' { - declare module.exports: $Exports<'ace-builds/src/mode-nim'>; -} -declare module 'ace-builds/src/mode-nix.js' { - declare module.exports: $Exports<'ace-builds/src/mode-nix'>; -} -declare module 'ace-builds/src/mode-nsis.js' { - declare module.exports: $Exports<'ace-builds/src/mode-nsis'>; -} -declare module 'ace-builds/src/mode-nunjucks.js' { - declare module.exports: $Exports<'ace-builds/src/mode-nunjucks'>; -} -declare module 'ace-builds/src/mode-objectivec.js' { - declare module.exports: $Exports<'ace-builds/src/mode-objectivec'>; -} -declare module 'ace-builds/src/mode-ocaml.js' { - declare module.exports: $Exports<'ace-builds/src/mode-ocaml'>; -} -declare module 'ace-builds/src/mode-pascal.js' { - declare module.exports: $Exports<'ace-builds/src/mode-pascal'>; -} -declare module 'ace-builds/src/mode-perl.js' { - declare module.exports: $Exports<'ace-builds/src/mode-perl'>; -} -declare module 'ace-builds/src/mode-perl6.js' { - declare module.exports: $Exports<'ace-builds/src/mode-perl6'>; -} -declare module 'ace-builds/src/mode-pgsql.js' { - declare module.exports: $Exports<'ace-builds/src/mode-pgsql'>; -} -declare module 'ace-builds/src/mode-php_laravel_blade.js' { - declare module.exports: $Exports<'ace-builds/src/mode-php_laravel_blade'>; -} -declare module 'ace-builds/src/mode-php.js' { - declare module.exports: $Exports<'ace-builds/src/mode-php'>; -} -declare module 'ace-builds/src/mode-pig.js' { - declare module.exports: $Exports<'ace-builds/src/mode-pig'>; -} -declare module 'ace-builds/src/mode-plain_text.js' { - declare module.exports: $Exports<'ace-builds/src/mode-plain_text'>; -} -declare module 'ace-builds/src/mode-powershell.js' { - declare module.exports: $Exports<'ace-builds/src/mode-powershell'>; -} -declare module 'ace-builds/src/mode-praat.js' { - declare module.exports: $Exports<'ace-builds/src/mode-praat'>; -} -declare module 'ace-builds/src/mode-prisma.js' { - declare module.exports: $Exports<'ace-builds/src/mode-prisma'>; -} -declare module 'ace-builds/src/mode-prolog.js' { - declare module.exports: $Exports<'ace-builds/src/mode-prolog'>; -} -declare module 'ace-builds/src/mode-properties.js' { - declare module.exports: $Exports<'ace-builds/src/mode-properties'>; -} -declare module 'ace-builds/src/mode-protobuf.js' { - declare module.exports: $Exports<'ace-builds/src/mode-protobuf'>; -} -declare module 'ace-builds/src/mode-puppet.js' { - declare module.exports: $Exports<'ace-builds/src/mode-puppet'>; -} -declare module 'ace-builds/src/mode-python.js' { - declare module.exports: $Exports<'ace-builds/src/mode-python'>; -} -declare module 'ace-builds/src/mode-qml.js' { - declare module.exports: $Exports<'ace-builds/src/mode-qml'>; -} -declare module 'ace-builds/src/mode-r.js' { - declare module.exports: $Exports<'ace-builds/src/mode-r'>; -} -declare module 'ace-builds/src/mode-razor.js' { - declare module.exports: $Exports<'ace-builds/src/mode-razor'>; -} -declare module 'ace-builds/src/mode-rdoc.js' { - declare module.exports: $Exports<'ace-builds/src/mode-rdoc'>; -} -declare module 'ace-builds/src/mode-red.js' { - declare module.exports: $Exports<'ace-builds/src/mode-red'>; -} -declare module 'ace-builds/src/mode-redshift.js' { - declare module.exports: $Exports<'ace-builds/src/mode-redshift'>; -} -declare module 'ace-builds/src/mode-rhtml.js' { - declare module.exports: $Exports<'ace-builds/src/mode-rhtml'>; -} -declare module 'ace-builds/src/mode-rst.js' { - declare module.exports: $Exports<'ace-builds/src/mode-rst'>; -} -declare module 'ace-builds/src/mode-ruby.js' { - declare module.exports: $Exports<'ace-builds/src/mode-ruby'>; -} -declare module 'ace-builds/src/mode-rust.js' { - declare module.exports: $Exports<'ace-builds/src/mode-rust'>; -} -declare module 'ace-builds/src/mode-sass.js' { - declare module.exports: $Exports<'ace-builds/src/mode-sass'>; -} -declare module 'ace-builds/src/mode-scad.js' { - declare module.exports: $Exports<'ace-builds/src/mode-scad'>; -} -declare module 'ace-builds/src/mode-scala.js' { - declare module.exports: $Exports<'ace-builds/src/mode-scala'>; -} -declare module 'ace-builds/src/mode-scheme.js' { - declare module.exports: $Exports<'ace-builds/src/mode-scheme'>; -} -declare module 'ace-builds/src/mode-scss.js' { - declare module.exports: $Exports<'ace-builds/src/mode-scss'>; -} -declare module 'ace-builds/src/mode-sh.js' { - declare module.exports: $Exports<'ace-builds/src/mode-sh'>; -} -declare module 'ace-builds/src/mode-sjs.js' { - declare module.exports: $Exports<'ace-builds/src/mode-sjs'>; -} -declare module 'ace-builds/src/mode-slim.js' { - declare module.exports: $Exports<'ace-builds/src/mode-slim'>; -} -declare module 'ace-builds/src/mode-smarty.js' { - declare module.exports: $Exports<'ace-builds/src/mode-smarty'>; -} -declare module 'ace-builds/src/mode-snippets.js' { - declare module.exports: $Exports<'ace-builds/src/mode-snippets'>; -} -declare module 'ace-builds/src/mode-soy_template.js' { - declare module.exports: $Exports<'ace-builds/src/mode-soy_template'>; -} -declare module 'ace-builds/src/mode-space.js' { - declare module.exports: $Exports<'ace-builds/src/mode-space'>; -} -declare module 'ace-builds/src/mode-sparql.js' { - declare module.exports: $Exports<'ace-builds/src/mode-sparql'>; -} -declare module 'ace-builds/src/mode-sql.js' { - declare module.exports: $Exports<'ace-builds/src/mode-sql'>; -} -declare module 'ace-builds/src/mode-sqlserver.js' { - declare module.exports: $Exports<'ace-builds/src/mode-sqlserver'>; -} -declare module 'ace-builds/src/mode-stylus.js' { - declare module.exports: $Exports<'ace-builds/src/mode-stylus'>; -} -declare module 'ace-builds/src/mode-svg.js' { - declare module.exports: $Exports<'ace-builds/src/mode-svg'>; -} -declare module 'ace-builds/src/mode-swift.js' { - declare module.exports: $Exports<'ace-builds/src/mode-swift'>; -} -declare module 'ace-builds/src/mode-tcl.js' { - declare module.exports: $Exports<'ace-builds/src/mode-tcl'>; -} -declare module 'ace-builds/src/mode-terraform.js' { - declare module.exports: $Exports<'ace-builds/src/mode-terraform'>; -} -declare module 'ace-builds/src/mode-tex.js' { - declare module.exports: $Exports<'ace-builds/src/mode-tex'>; -} -declare module 'ace-builds/src/mode-text.js' { - declare module.exports: $Exports<'ace-builds/src/mode-text'>; -} -declare module 'ace-builds/src/mode-textile.js' { - declare module.exports: $Exports<'ace-builds/src/mode-textile'>; -} -declare module 'ace-builds/src/mode-toml.js' { - declare module.exports: $Exports<'ace-builds/src/mode-toml'>; -} -declare module 'ace-builds/src/mode-tsx.js' { - declare module.exports: $Exports<'ace-builds/src/mode-tsx'>; -} -declare module 'ace-builds/src/mode-turtle.js' { - declare module.exports: $Exports<'ace-builds/src/mode-turtle'>; -} -declare module 'ace-builds/src/mode-twig.js' { - declare module.exports: $Exports<'ace-builds/src/mode-twig'>; -} -declare module 'ace-builds/src/mode-typescript.js' { - declare module.exports: $Exports<'ace-builds/src/mode-typescript'>; -} -declare module 'ace-builds/src/mode-vala.js' { - declare module.exports: $Exports<'ace-builds/src/mode-vala'>; -} -declare module 'ace-builds/src/mode-vbscript.js' { - declare module.exports: $Exports<'ace-builds/src/mode-vbscript'>; -} -declare module 'ace-builds/src/mode-velocity.js' { - declare module.exports: $Exports<'ace-builds/src/mode-velocity'>; -} -declare module 'ace-builds/src/mode-verilog.js' { - declare module.exports: $Exports<'ace-builds/src/mode-verilog'>; -} -declare module 'ace-builds/src/mode-vhdl.js' { - declare module.exports: $Exports<'ace-builds/src/mode-vhdl'>; -} -declare module 'ace-builds/src/mode-visualforce.js' { - declare module.exports: $Exports<'ace-builds/src/mode-visualforce'>; -} -declare module 'ace-builds/src/mode-wollok.js' { - declare module.exports: $Exports<'ace-builds/src/mode-wollok'>; -} -declare module 'ace-builds/src/mode-xml.js' { - declare module.exports: $Exports<'ace-builds/src/mode-xml'>; -} -declare module 'ace-builds/src/mode-xquery.js' { - declare module.exports: $Exports<'ace-builds/src/mode-xquery'>; -} -declare module 'ace-builds/src/mode-yaml.js' { - declare module.exports: $Exports<'ace-builds/src/mode-yaml'>; -} -declare module 'ace-builds/src/mode-zeek.js' { - declare module.exports: $Exports<'ace-builds/src/mode-zeek'>; -} -declare module 'ace-builds/src/snippets/abap.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/abap'>; -} -declare module 'ace-builds/src/snippets/abc.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/abc'>; -} -declare module 'ace-builds/src/snippets/actionscript.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/actionscript'>; -} -declare module 'ace-builds/src/snippets/ada.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/ada'>; -} -declare module 'ace-builds/src/snippets/alda.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/alda'>; -} -declare module 'ace-builds/src/snippets/apache_conf.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/apache_conf'>; -} -declare module 'ace-builds/src/snippets/apex.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/apex'>; -} -declare module 'ace-builds/src/snippets/applescript.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/applescript'>; -} -declare module 'ace-builds/src/snippets/aql.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/aql'>; -} -declare module 'ace-builds/src/snippets/asciidoc.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/asciidoc'>; -} -declare module 'ace-builds/src/snippets/asl.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/asl'>; -} -declare module 'ace-builds/src/snippets/assembly_x86.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/assembly_x86'>; -} -declare module 'ace-builds/src/snippets/autohotkey.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/autohotkey'>; -} -declare module 'ace-builds/src/snippets/batchfile.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/batchfile'>; -} -declare module 'ace-builds/src/snippets/c_cpp.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/c_cpp'>; -} -declare module 'ace-builds/src/snippets/c9search.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/c9search'>; -} -declare module 'ace-builds/src/snippets/cirru.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/cirru'>; -} -declare module 'ace-builds/src/snippets/clojure.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/clojure'>; -} -declare module 'ace-builds/src/snippets/cobol.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/cobol'>; -} -declare module 'ace-builds/src/snippets/coffee.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/coffee'>; -} -declare module 'ace-builds/src/snippets/coldfusion.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/coldfusion'>; -} -declare module 'ace-builds/src/snippets/crystal.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/crystal'>; -} -declare module 'ace-builds/src/snippets/csharp.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/csharp'>; -} -declare module 'ace-builds/src/snippets/csound_document.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/csound_document'>; -} -declare module 'ace-builds/src/snippets/csound_orchestra.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/csound_orchestra'>; -} -declare module 'ace-builds/src/snippets/csound_score.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/csound_score'>; -} -declare module 'ace-builds/src/snippets/csp.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/csp'>; -} -declare module 'ace-builds/src/snippets/css.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/css'>; -} -declare module 'ace-builds/src/snippets/curly.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/curly'>; -} -declare module 'ace-builds/src/snippets/d.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/d'>; -} -declare module 'ace-builds/src/snippets/dart.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/dart'>; -} -declare module 'ace-builds/src/snippets/diff.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/diff'>; -} -declare module 'ace-builds/src/snippets/django.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/django'>; -} -declare module 'ace-builds/src/snippets/dockerfile.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/dockerfile'>; -} -declare module 'ace-builds/src/snippets/dot.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/dot'>; -} -declare module 'ace-builds/src/snippets/drools.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/drools'>; -} -declare module 'ace-builds/src/snippets/edifact.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/edifact'>; -} -declare module 'ace-builds/src/snippets/eiffel.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/eiffel'>; -} -declare module 'ace-builds/src/snippets/ejs.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/ejs'>; -} -declare module 'ace-builds/src/snippets/elixir.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/elixir'>; -} -declare module 'ace-builds/src/snippets/elm.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/elm'>; -} -declare module 'ace-builds/src/snippets/erlang.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/erlang'>; -} -declare module 'ace-builds/src/snippets/forth.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/forth'>; -} -declare module 'ace-builds/src/snippets/fortran.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/fortran'>; -} -declare module 'ace-builds/src/snippets/fsharp.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/fsharp'>; -} -declare module 'ace-builds/src/snippets/fsl.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/fsl'>; -} -declare module 'ace-builds/src/snippets/ftl.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/ftl'>; -} -declare module 'ace-builds/src/snippets/gcode.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/gcode'>; -} -declare module 'ace-builds/src/snippets/gherkin.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/gherkin'>; -} -declare module 'ace-builds/src/snippets/gitignore.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/gitignore'>; -} -declare module 'ace-builds/src/snippets/glsl.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/glsl'>; -} -declare module 'ace-builds/src/snippets/gobstones.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/gobstones'>; -} -declare module 'ace-builds/src/snippets/golang.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/golang'>; -} -declare module 'ace-builds/src/snippets/graphqlschema.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/graphqlschema'>; -} -declare module 'ace-builds/src/snippets/groovy.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/groovy'>; -} -declare module 'ace-builds/src/snippets/haml.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/haml'>; -} -declare module 'ace-builds/src/snippets/handlebars.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/handlebars'>; -} -declare module 'ace-builds/src/snippets/haskell_cabal.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/haskell_cabal'>; -} -declare module 'ace-builds/src/snippets/haskell.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/haskell'>; -} -declare module 'ace-builds/src/snippets/haxe.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/haxe'>; -} -declare module 'ace-builds/src/snippets/hjson.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/hjson'>; -} -declare module 'ace-builds/src/snippets/html_elixir.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/html_elixir'>; -} -declare module 'ace-builds/src/snippets/html_ruby.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/html_ruby'>; -} -declare module 'ace-builds/src/snippets/html.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/html'>; -} -declare module 'ace-builds/src/snippets/ini.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/ini'>; -} -declare module 'ace-builds/src/snippets/io.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/io'>; -} -declare module 'ace-builds/src/snippets/jack.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/jack'>; -} -declare module 'ace-builds/src/snippets/jade.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/jade'>; -} -declare module 'ace-builds/src/snippets/java.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/java'>; -} -declare module 'ace-builds/src/snippets/javascript.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/javascript'>; -} -declare module 'ace-builds/src/snippets/json.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/json'>; -} -declare module 'ace-builds/src/snippets/json5.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/json5'>; -} -declare module 'ace-builds/src/snippets/jsoniq.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/jsoniq'>; -} -declare module 'ace-builds/src/snippets/jsp.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/jsp'>; -} -declare module 'ace-builds/src/snippets/jssm.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/jssm'>; -} -declare module 'ace-builds/src/snippets/jsx.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/jsx'>; -} -declare module 'ace-builds/src/snippets/julia.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/julia'>; -} -declare module 'ace-builds/src/snippets/kotlin.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/kotlin'>; -} -declare module 'ace-builds/src/snippets/latex.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/latex'>; -} -declare module 'ace-builds/src/snippets/less.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/less'>; -} -declare module 'ace-builds/src/snippets/liquid.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/liquid'>; -} -declare module 'ace-builds/src/snippets/lisp.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/lisp'>; -} -declare module 'ace-builds/src/snippets/livescript.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/livescript'>; -} -declare module 'ace-builds/src/snippets/logiql.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/logiql'>; -} -declare module 'ace-builds/src/snippets/logtalk.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/logtalk'>; -} -declare module 'ace-builds/src/snippets/lsl.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/lsl'>; -} -declare module 'ace-builds/src/snippets/lua.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/lua'>; -} -declare module 'ace-builds/src/snippets/luapage.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/luapage'>; -} -declare module 'ace-builds/src/snippets/lucene.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/lucene'>; -} -declare module 'ace-builds/src/snippets/makefile.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/makefile'>; -} -declare module 'ace-builds/src/snippets/markdown.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/markdown'>; -} -declare module 'ace-builds/src/snippets/mask.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/mask'>; -} -declare module 'ace-builds/src/snippets/matlab.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/matlab'>; -} -declare module 'ace-builds/src/snippets/maze.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/maze'>; -} -declare module 'ace-builds/src/snippets/mediawiki.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/mediawiki'>; -} -declare module 'ace-builds/src/snippets/mel.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/mel'>; -} -declare module 'ace-builds/src/snippets/mixal.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/mixal'>; -} -declare module 'ace-builds/src/snippets/mushcode.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/mushcode'>; -} -declare module 'ace-builds/src/snippets/mysql.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/mysql'>; -} -declare module 'ace-builds/src/snippets/nginx.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/nginx'>; -} -declare module 'ace-builds/src/snippets/nim.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/nim'>; -} -declare module 'ace-builds/src/snippets/nix.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/nix'>; -} -declare module 'ace-builds/src/snippets/nsis.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/nsis'>; -} -declare module 'ace-builds/src/snippets/nunjucks.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/nunjucks'>; -} -declare module 'ace-builds/src/snippets/objectivec.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/objectivec'>; -} -declare module 'ace-builds/src/snippets/ocaml.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/ocaml'>; -} -declare module 'ace-builds/src/snippets/pascal.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/pascal'>; -} -declare module 'ace-builds/src/snippets/perl.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/perl'>; -} -declare module 'ace-builds/src/snippets/perl6.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/perl6'>; -} -declare module 'ace-builds/src/snippets/pgsql.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/pgsql'>; -} -declare module 'ace-builds/src/snippets/php_laravel_blade.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/php_laravel_blade'>; -} -declare module 'ace-builds/src/snippets/php.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/php'>; -} -declare module 'ace-builds/src/snippets/pig.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/pig'>; -} -declare module 'ace-builds/src/snippets/plain_text.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/plain_text'>; -} -declare module 'ace-builds/src/snippets/powershell.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/powershell'>; -} -declare module 'ace-builds/src/snippets/praat.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/praat'>; -} -declare module 'ace-builds/src/snippets/prisma.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/prisma'>; -} -declare module 'ace-builds/src/snippets/prolog.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/prolog'>; -} -declare module 'ace-builds/src/snippets/properties.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/properties'>; -} -declare module 'ace-builds/src/snippets/protobuf.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/protobuf'>; -} -declare module 'ace-builds/src/snippets/puppet.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/puppet'>; -} -declare module 'ace-builds/src/snippets/python.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/python'>; -} -declare module 'ace-builds/src/snippets/qml.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/qml'>; -} -declare module 'ace-builds/src/snippets/r.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/r'>; -} -declare module 'ace-builds/src/snippets/razor.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/razor'>; -} -declare module 'ace-builds/src/snippets/rdoc.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/rdoc'>; -} -declare module 'ace-builds/src/snippets/red.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/red'>; -} -declare module 'ace-builds/src/snippets/redshift.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/redshift'>; -} -declare module 'ace-builds/src/snippets/rhtml.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/rhtml'>; -} -declare module 'ace-builds/src/snippets/rst.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/rst'>; -} -declare module 'ace-builds/src/snippets/ruby.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/ruby'>; -} -declare module 'ace-builds/src/snippets/rust.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/rust'>; -} -declare module 'ace-builds/src/snippets/sass.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/sass'>; -} -declare module 'ace-builds/src/snippets/scad.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/scad'>; -} -declare module 'ace-builds/src/snippets/scala.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/scala'>; -} -declare module 'ace-builds/src/snippets/scheme.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/scheme'>; -} -declare module 'ace-builds/src/snippets/scss.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/scss'>; -} -declare module 'ace-builds/src/snippets/sh.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/sh'>; -} -declare module 'ace-builds/src/snippets/sjs.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/sjs'>; -} -declare module 'ace-builds/src/snippets/slim.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/slim'>; -} -declare module 'ace-builds/src/snippets/smarty.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/smarty'>; -} -declare module 'ace-builds/src/snippets/snippets.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/snippets'>; -} -declare module 'ace-builds/src/snippets/soy_template.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/soy_template'>; -} -declare module 'ace-builds/src/snippets/space.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/space'>; -} -declare module 'ace-builds/src/snippets/sparql.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/sparql'>; -} -declare module 'ace-builds/src/snippets/sql.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/sql'>; -} -declare module 'ace-builds/src/snippets/sqlserver.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/sqlserver'>; -} -declare module 'ace-builds/src/snippets/stylus.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/stylus'>; -} -declare module 'ace-builds/src/snippets/svg.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/svg'>; -} -declare module 'ace-builds/src/snippets/swift.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/swift'>; -} -declare module 'ace-builds/src/snippets/tcl.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/tcl'>; -} -declare module 'ace-builds/src/snippets/terraform.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/terraform'>; -} -declare module 'ace-builds/src/snippets/tex.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/tex'>; -} -declare module 'ace-builds/src/snippets/text.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/text'>; -} -declare module 'ace-builds/src/snippets/textile.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/textile'>; -} -declare module 'ace-builds/src/snippets/toml.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/toml'>; -} -declare module 'ace-builds/src/snippets/tsx.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/tsx'>; -} -declare module 'ace-builds/src/snippets/turtle.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/turtle'>; -} -declare module 'ace-builds/src/snippets/twig.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/twig'>; -} -declare module 'ace-builds/src/snippets/typescript.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/typescript'>; -} -declare module 'ace-builds/src/snippets/vala.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/vala'>; -} -declare module 'ace-builds/src/snippets/vbscript.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/vbscript'>; -} -declare module 'ace-builds/src/snippets/velocity.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/velocity'>; -} -declare module 'ace-builds/src/snippets/verilog.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/verilog'>; -} -declare module 'ace-builds/src/snippets/vhdl.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/vhdl'>; -} -declare module 'ace-builds/src/snippets/visualforce.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/visualforce'>; -} -declare module 'ace-builds/src/snippets/wollok.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/wollok'>; -} -declare module 'ace-builds/src/snippets/xml.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/xml'>; -} -declare module 'ace-builds/src/snippets/xquery.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/xquery'>; -} -declare module 'ace-builds/src/snippets/yaml.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/yaml'>; -} -declare module 'ace-builds/src/snippets/zeek.js' { - declare module.exports: $Exports<'ace-builds/src/snippets/zeek'>; -} -declare module 'ace-builds/src/theme-ambiance.js' { - declare module.exports: $Exports<'ace-builds/src/theme-ambiance'>; -} -declare module 'ace-builds/src/theme-chaos.js' { - declare module.exports: $Exports<'ace-builds/src/theme-chaos'>; -} -declare module 'ace-builds/src/theme-chrome.js' { - declare module.exports: $Exports<'ace-builds/src/theme-chrome'>; -} -declare module 'ace-builds/src/theme-clouds_midnight.js' { - declare module.exports: $Exports<'ace-builds/src/theme-clouds_midnight'>; -} -declare module 'ace-builds/src/theme-clouds.js' { - declare module.exports: $Exports<'ace-builds/src/theme-clouds'>; -} -declare module 'ace-builds/src/theme-cobalt.js' { - declare module.exports: $Exports<'ace-builds/src/theme-cobalt'>; -} -declare module 'ace-builds/src/theme-crimson_editor.js' { - declare module.exports: $Exports<'ace-builds/src/theme-crimson_editor'>; -} -declare module 'ace-builds/src/theme-dawn.js' { - declare module.exports: $Exports<'ace-builds/src/theme-dawn'>; -} -declare module 'ace-builds/src/theme-dracula.js' { - declare module.exports: $Exports<'ace-builds/src/theme-dracula'>; -} -declare module 'ace-builds/src/theme-dreamweaver.js' { - declare module.exports: $Exports<'ace-builds/src/theme-dreamweaver'>; -} -declare module 'ace-builds/src/theme-eclipse.js' { - declare module.exports: $Exports<'ace-builds/src/theme-eclipse'>; -} -declare module 'ace-builds/src/theme-github.js' { - declare module.exports: $Exports<'ace-builds/src/theme-github'>; -} -declare module 'ace-builds/src/theme-gob.js' { - declare module.exports: $Exports<'ace-builds/src/theme-gob'>; -} -declare module 'ace-builds/src/theme-gruvbox.js' { - declare module.exports: $Exports<'ace-builds/src/theme-gruvbox'>; -} -declare module 'ace-builds/src/theme-idle_fingers.js' { - declare module.exports: $Exports<'ace-builds/src/theme-idle_fingers'>; -} -declare module 'ace-builds/src/theme-iplastic.js' { - declare module.exports: $Exports<'ace-builds/src/theme-iplastic'>; -} -declare module 'ace-builds/src/theme-katzenmilch.js' { - declare module.exports: $Exports<'ace-builds/src/theme-katzenmilch'>; -} -declare module 'ace-builds/src/theme-kr_theme.js' { - declare module.exports: $Exports<'ace-builds/src/theme-kr_theme'>; -} -declare module 'ace-builds/src/theme-kuroir.js' { - declare module.exports: $Exports<'ace-builds/src/theme-kuroir'>; -} -declare module 'ace-builds/src/theme-merbivore_soft.js' { - declare module.exports: $Exports<'ace-builds/src/theme-merbivore_soft'>; -} -declare module 'ace-builds/src/theme-merbivore.js' { - declare module.exports: $Exports<'ace-builds/src/theme-merbivore'>; -} -declare module 'ace-builds/src/theme-mono_industrial.js' { - declare module.exports: $Exports<'ace-builds/src/theme-mono_industrial'>; -} -declare module 'ace-builds/src/theme-monokai.js' { - declare module.exports: $Exports<'ace-builds/src/theme-monokai'>; -} -declare module 'ace-builds/src/theme-nord_dark.js' { - declare module.exports: $Exports<'ace-builds/src/theme-nord_dark'>; -} -declare module 'ace-builds/src/theme-pastel_on_dark.js' { - declare module.exports: $Exports<'ace-builds/src/theme-pastel_on_dark'>; -} -declare module 'ace-builds/src/theme-solarized_dark.js' { - declare module.exports: $Exports<'ace-builds/src/theme-solarized_dark'>; -} -declare module 'ace-builds/src/theme-solarized_light.js' { - declare module.exports: $Exports<'ace-builds/src/theme-solarized_light'>; -} -declare module 'ace-builds/src/theme-sqlserver.js' { - declare module.exports: $Exports<'ace-builds/src/theme-sqlserver'>; -} -declare module 'ace-builds/src/theme-terminal.js' { - declare module.exports: $Exports<'ace-builds/src/theme-terminal'>; -} -declare module 'ace-builds/src/theme-textmate.js' { - declare module.exports: $Exports<'ace-builds/src/theme-textmate'>; -} -declare module 'ace-builds/src/theme-tomorrow_night_blue.js' { - declare module.exports: $Exports<'ace-builds/src/theme-tomorrow_night_blue'>; -} -declare module 'ace-builds/src/theme-tomorrow_night_bright.js' { - declare module.exports: $Exports<'ace-builds/src/theme-tomorrow_night_bright'>; -} -declare module 'ace-builds/src/theme-tomorrow_night_eighties.js' { - declare module.exports: $Exports<'ace-builds/src/theme-tomorrow_night_eighties'>; -} -declare module 'ace-builds/src/theme-tomorrow_night.js' { - declare module.exports: $Exports<'ace-builds/src/theme-tomorrow_night'>; -} -declare module 'ace-builds/src/theme-tomorrow.js' { - declare module.exports: $Exports<'ace-builds/src/theme-tomorrow'>; -} -declare module 'ace-builds/src/theme-twilight.js' { - declare module.exports: $Exports<'ace-builds/src/theme-twilight'>; -} -declare module 'ace-builds/src/theme-vibrant_ink.js' { - declare module.exports: $Exports<'ace-builds/src/theme-vibrant_ink'>; -} -declare module 'ace-builds/src/theme-xcode.js' { - declare module.exports: $Exports<'ace-builds/src/theme-xcode'>; -} -declare module 'ace-builds/src/worker-base.js' { - declare module.exports: $Exports<'ace-builds/src/worker-base'>; -} -declare module 'ace-builds/src/worker-coffee.js' { - declare module.exports: $Exports<'ace-builds/src/worker-coffee'>; -} -declare module 'ace-builds/src/worker-css.js' { - declare module.exports: $Exports<'ace-builds/src/worker-css'>; -} -declare module 'ace-builds/src/worker-html.js' { - declare module.exports: $Exports<'ace-builds/src/worker-html'>; -} -declare module 'ace-builds/src/worker-javascript.js' { - declare module.exports: $Exports<'ace-builds/src/worker-javascript'>; -} -declare module 'ace-builds/src/worker-json.js' { - declare module.exports: $Exports<'ace-builds/src/worker-json'>; -} -declare module 'ace-builds/src/worker-lua.js' { - declare module.exports: $Exports<'ace-builds/src/worker-lua'>; -} -declare module 'ace-builds/src/worker-php.js' { - declare module.exports: $Exports<'ace-builds/src/worker-php'>; -} -declare module 'ace-builds/src/worker-xml.js' { - declare module.exports: $Exports<'ace-builds/src/worker-xml'>; -} -declare module 'ace-builds/src/worker-xquery.js' { - declare module.exports: $Exports<'ace-builds/src/worker-xquery'>; -} -declare module 'ace-builds/webpack-resolver.js' { - declare module.exports: $Exports<'ace-builds/webpack-resolver'>; -} diff --git a/flow-typed/npm/babel-eslint_vx.x.x.js b/flow-typed/npm/babel-eslint_vx.x.x.js deleted file mode 100644 index dcfa3df5..00000000 --- a/flow-typed/npm/babel-eslint_vx.x.x.js +++ /dev/null @@ -1,122 +0,0 @@ -// flow-typed signature: b13a5f15d665ff7559db1399f96228e2 -// flow-typed version: <>/babel-eslint_v10.1.0/flow_v0.135.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'>; -} diff --git a/flow-typed/npm/babel-preset-env_vx.x.x.js b/flow-typed/npm/babel-preset-env_vx.x.x.js deleted file mode 100644 index 68c8755a..00000000 --- a/flow-typed/npm/babel-preset-env_vx.x.x.js +++ /dev/null @@ -1,91 +0,0 @@ -// flow-typed signature: 4bbfe945dcff6bbbca4f981320baa7b4 -// flow-typed version: <>/babel-preset-env_v1.7.0/flow_v0.135.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-in-features' { - declare module.exports: any; -} - -declare module 'babel-preset-env/data/plugin-features' { - declare module.exports: any; -} - -declare module 'babel-preset-env/lib/default-includes' { - 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/targets-parser' { - declare module.exports: any; -} - -declare module 'babel-preset-env/lib/transform-polyfill-require-plugin' { - declare module.exports: any; -} - -declare module 'babel-preset-env/lib/utils' { - declare module.exports: any; -} - -// Filename aliases -declare module 'babel-preset-env/data/built-in-features.js' { - declare module.exports: $Exports<'babel-preset-env/data/built-in-features'>; -} -declare module 'babel-preset-env/data/plugin-features.js' { - declare module.exports: $Exports<'babel-preset-env/data/plugin-features'>; -} -declare module 'babel-preset-env/lib/default-includes.js' { - declare module.exports: $Exports<'babel-preset-env/lib/default-includes'>; -} -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/targets-parser.js' { - declare module.exports: $Exports<'babel-preset-env/lib/targets-parser'>; -} -declare module 'babel-preset-env/lib/transform-polyfill-require-plugin.js' { - declare module.exports: $Exports<'babel-preset-env/lib/transform-polyfill-require-plugin'>; -} -declare module 'babel-preset-env/lib/utils.js' { - declare module.exports: $Exports<'babel-preset-env/lib/utils'>; -} diff --git a/flow-typed/npm/babel-preset-react_vx.x.x.js b/flow-typed/npm/babel-preset-react_vx.x.x.js deleted file mode 100644 index 7181fd49..00000000 --- a/flow-typed/npm/babel-preset-react_vx.x.x.js +++ /dev/null @@ -1,35 +0,0 @@ -// flow-typed signature: 28906d258cbd356464d5ff82d73c61ac -// flow-typed version: <>/babel-preset-react_v6.24.1/flow_v0.135.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'>; -} diff --git a/flow-typed/npm/bluebird_v3.x.x.js b/flow-typed/npm/bluebird_v3.x.x.js deleted file mode 100644 index 81c2c4dd..00000000 --- a/flow-typed/npm/bluebird_v3.x.x.js +++ /dev/null @@ -1,330 +0,0 @@ -// flow-typed signature: 55f6f471f003e310f0b2cf093203660e -// flow-typed version: 7472df5490/bluebird_v3.x.x/flow_>=v0.104.x - -type Bluebird$RangeError = Error; -type Bluebird$CancellationErrors = Error; -type Bluebird$TimeoutError = Error; -type Bluebird$RejectionError = Error; -type Bluebird$OperationalError = Error; - -type Bluebird$ConcurrencyOption = { concurrency: number, ... }; -type Bluebird$SpreadOption = { spread: boolean, ... }; -type Bluebird$MultiArgsOption = { multiArgs: boolean, ... }; -type Bluebird$BluebirdConfig = { - warnings?: boolean, - longStackTraces?: boolean, - cancellation?: boolean, - monitoring?: boolean, - ... -}; - -declare class Bluebird$PromiseInspection { - isCancelled(): boolean; - isFulfilled(): boolean; - isRejected(): boolean; - pending(): boolean; - reason(): any; - value(): T; -} - -type Bluebird$PromisifyOptions = {| - multiArgs?: boolean, - context: any -|}; - -declare type Bluebird$PromisifyAllOptions = { - suffix?: string, - filter?: ( - name: string, - func: Function, - target?: any, - passesDefaultFilter?: boolean - ) => boolean, - // The promisifier gets a reference to the original method and should return a function which returns a promise - promisifier?: (originalMethod: Function) => () => Bluebird$Promise, - ... -}; - -declare type $Promisable = Promise | T; - -declare class Bluebird$Disposable {} - -declare class Bluebird$Promise<+R> extends Promise { - static RangeError: Class; - static CancellationErrors: Class; - static TimeoutError: Class; - static RejectionError: Class; - static OperationalError: Class; - - static Defer: Class; - static PromiseInspection: Class>; - - static all>(promises: Promise): Bluebird$Promise< - $TupleMap(p: Promise | V) => V> - >; - static all>(promises: T): Bluebird$Promise< - $TupleMap(p: Promise | V) => V> - >; - static props( - input: Object | Map<*, *> | $Promisable> - ): Bluebird$Promise<*>; - static any>( - Promises: Iterable | $Promisable> - ): Bluebird$Promise; - static race>( - Promises: Iterable | $Promisable> - ): Bluebird$Promise; - static reject(error?: any): Bluebird$Promise; - static resolve(): Bluebird$Promise; - static resolve(object: Promise): Bluebird$Promise; - static resolve(object: T): Bluebird$Promise; - static some>( - Promises: Iterable | $Promisable>, - count: number - ): Bluebird$Promise>; - static join( - value1: $Promisable, - handler: (a: A) => $Promisable - ): Bluebird$Promise; - static join( - value1: $Promisable, - value2: $Promisable, - handler: (a: A, b: B) => $Promisable - ): Bluebird$Promise; - static join( - value1: $Promisable, - value2: $Promisable, - value3: $Promisable, - handler: (a: A, b: B, c: C) => $Promisable - ): Bluebird$Promise; - static map>( - Promises: Iterable | $Promisable>, - mapper: (item: T, index: number, arrayLength: number) => $Promisable, - options?: Bluebird$ConcurrencyOption - ): Bluebird$Promise>; - static mapSeries>( - Promises: Iterable | $Promisable>, - mapper: (item: T, index: number, arrayLength: number) => $Promisable - ): Bluebird$Promise>; - static reduce>( - Promises: Iterable | $Promisable>, - reducer: ( - total: U, - current: T, - index: number, - arrayLength: number - ) => $Promisable, - initialValue?: $Promisable - ): Bluebird$Promise; - static filter>( - Promises: Iterable | $Promisable>, - filterer: ( - item: T, - index: number, - arrayLength: number - ) => $Promisable, - option?: Bluebird$ConcurrencyOption - ): Bluebird$Promise>; - static each>( - Promises: Iterable | $Promisable>, - iterator: ( - item: T, - index: number, - arrayLength: number - ) => $Promisable - ): Bluebird$Promise>; - static try( - fn: () => $Promisable, - args: ?Array, - ctx: ?any - ): Bluebird$Promise; - static attempt( - fn: () => $Promisable, - args: ?Array, - ctx: ?any - ): Bluebird$Promise; - static delay(ms: number, value: $Promisable): Bluebird$Promise; - static delay(ms: number): Bluebird$Promise; - static config(config: Bluebird$BluebirdConfig): void; - - static defer(): Bluebird$Defer; - static setScheduler( - scheduler: (callback: (...args: Array) => void) => void - ): void; - static promisify( - nodeFunction: Function, - receiver?: Bluebird$PromisifyOptions - ): Function; - static promisifyAll( - target: Object | Array, - options?: Bluebird$PromisifyAllOptions - ): void; - - static coroutine(generatorFunction: Function): Function; - static spawn(generatorFunction: Function): Promise; - - // It doesn't seem possible to have type-generics for a variable number of arguments. - // Handle up to 3 arguments, then just give up and accept 'any'. - static method>(fn: () => R): () => Bluebird$Promise; - static method, A>( - fn: (a: A) => R - ): (a: A) => Bluebird$Promise; - static method, A, B>( - fn: (a: A, b: B) => R - ): (a: A, b: B) => Bluebird$Promise; - static method, A, B, C>( - fn: (a: A, b: B, c: C) => R - ): (a: A, b: B, c: C) => Bluebird$Promise; - static method>( - fn: (...args: any) => R - ): (...args: any) => Bluebird$Promise; - - static cast(value: $Promisable): Bluebird$Promise; - // static bind(ctx: any): Bluebird$Promise; - static is(value: any): boolean; - static longStackTraces(): void; - - static onPossiblyUnhandledRejection(handler: (reason: any) => any): void; - static fromCallback( - resolver: (fn: (error: ?Error, value?: T) => any) => any, - options?: Bluebird$MultiArgsOption - ): Bluebird$Promise; - - constructor( - callback: ( - resolve: (result?: $Promisable) => void, - reject: (error?: any) => void, - onCancel?: (fn?: () => void) => void, - ) => mixed - ): void; - then(onFulfill: null | void, onReject: null | void): Bluebird$Promise; - then( - onFulfill: null | void, - onReject: (error: any) => Promise | U - ): Bluebird$Promise; - then( - onFulfill: (value: R) => Promise | U, - onReject: null | void | ((error: any) => Promise | U) - ): Bluebird$Promise; - catch(onReject: null | void): Promise; - catch(onReject?: (error: any) => $Promisable): Bluebird$Promise; - catch( - err: Class, - onReject: (error: ErrorT) => $Promisable - ): Bluebird$Promise; - catch( - err1: Class, - err2: Class, - onReject: (error: ErrorT) => $Promisable - ): Bluebird$Promise; - catch( - err1: Class, - err2: Class, - err3: Class, - onReject: (error: ErrorT) => $Promisable - ): Bluebird$Promise; - caught( - err: Class, - onReject: (error: Error) => $Promisable - ): Bluebird$Promise; - caught( - err1: Class, - err2: Class, - onReject: (error: ErrorT) => $Promisable - ): Bluebird$Promise; - caught( - err1: Class, - err2: Class, - err3: Class, - onReject: (error: ErrorT) => $Promisable - ): Bluebird$Promise; - caught(onReject: (error: any) => $Promisable): Bluebird$Promise; - - error(onReject?: (error: any) => ?$Promisable): Bluebird$Promise; - done( - onFulfill?: (value: R) => mixed, - onReject?: (error: any) => mixed - ): void; - finally(onDone?: (value: R) => mixed): Bluebird$Promise; - lastly(onDone?: (value: R) => mixed): Bluebird$Promise; - tap(onDone?: (value: R) => mixed): Bluebird$Promise; - delay(ms: number): Bluebird$Promise; - timeout(ms: number, message?: string): Bluebird$Promise; - cancel(): void; - - // bind(ctx: any): Bluebird$Promise; - call(propertyName: string, ...args: Array): Bluebird$Promise; - throw(reason: Error): Bluebird$Promise; - thenThrow(reason: Error): Bluebird$Promise; - all(): Bluebird$Promise>; - any(): Bluebird$Promise; - some(count: number): Bluebird$Promise>; - race(): Bluebird$Promise; - map( - mapper: (item: T, index: number, arrayLength: number) => $Promisable, - options?: Bluebird$ConcurrencyOption - ): Bluebird$Promise>; - mapSeries( - mapper: (item: T, index: number, arrayLength: number) => $Promisable - ): Bluebird$Promise>; - reduce( - reducer: ( - total: T, - item: U, - index: number, - arrayLength: number - ) => $Promisable, - initialValue?: $Promisable - ): Bluebird$Promise; - filter( - filterer: ( - item: T, - index: number, - arrayLength: number - ) => $Promisable, - options?: Bluebird$ConcurrencyOption - ): Bluebird$Promise>; - each( - iterator: (item: T, index: number, arrayLength: number) => $Promisable - ): Bluebird$Promise>; - asCallback( - callback: (error: ?any, value?: T) => any, - options?: Bluebird$SpreadOption - ): void; - return(value: T): Bluebird$Promise; - thenReturn(value: T): Bluebird$Promise; - spread(...args: Array): Bluebird$Promise<*>; - - reflect(): Bluebird$Promise>; - - isFulfilled(): boolean; - isRejected(): boolean; - isPending(): boolean; - isResolved(): boolean; - - value(): R; - reason(): any; - - disposer( - disposer: (value: R, promise: Promise<*>) => void - ): Bluebird$Disposable; - - static using( - disposable: Bluebird$Disposable, - handler: (value: T) => $Promisable - ): Bluebird$Promise; - - suppressUnhandledRejections(): void; -} - -declare class Bluebird$Defer { - promise: Bluebird$Promise<*>; - resolve: (value: any) => any; - reject: (value: any) => any; -} - -declare module "bluebird" { - declare module.exports: typeof Bluebird$Promise; - - declare type Disposable = Bluebird$Disposable; -} diff --git a/flow-typed/npm/chokidar_vx.x.x.js b/flow-typed/npm/chokidar_vx.x.x.js deleted file mode 100644 index ae04c397..00000000 --- a/flow-typed/npm/chokidar_vx.x.x.js +++ /dev/null @@ -1,52 +0,0 @@ -// flow-typed signature: f2a33ac58e68a755b67070b2ef2f120a -// flow-typed version: <>/chokidar_v^3.4.2/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'chokidar' - * - * 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 'chokidar' { - 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 'chokidar/lib/constants' { - declare module.exports: any; -} - -declare module 'chokidar/lib/fsevents-handler' { - declare module.exports: any; -} - -declare module 'chokidar/lib/nodefs-handler' { - declare module.exports: any; -} - -// Filename aliases -declare module 'chokidar/index' { - declare module.exports: $Exports<'chokidar'>; -} -declare module 'chokidar/index.js' { - declare module.exports: $Exports<'chokidar'>; -} -declare module 'chokidar/lib/constants.js' { - declare module.exports: $Exports<'chokidar/lib/constants'>; -} -declare module 'chokidar/lib/fsevents-handler.js' { - declare module.exports: $Exports<'chokidar/lib/fsevents-handler'>; -} -declare module 'chokidar/lib/nodefs-handler.js' { - declare module.exports: $Exports<'chokidar/lib/nodefs-handler'>; -} diff --git a/flow-typed/npm/classnames_v2.x.x.js b/flow-typed/npm/classnames_v2.x.x.js deleted file mode 100644 index f1aa6319..00000000 --- a/flow-typed/npm/classnames_v2.x.x.js +++ /dev/null @@ -1,23 +0,0 @@ -// flow-typed signature: e5943b73ab5a7e87ce78d833ac522e54 -// flow-typed version: a913c9ae5a/classnames_v2.x.x/flow_>=v0.104.x - -type $npm$classnames$Classes = - | string - | number - | { [className: string]: *, ... } - | boolean - | void - | null - | $ReadOnlyArray<$npm$classnames$Classes>; - -declare module "classnames" { - declare module.exports: (...classes: Array<$npm$classnames$Classes>) => string; -} - -declare module "classnames/bind" { - declare module.exports: $Exports<"classnames">; -} - -declare module "classnames/dedupe" { - declare module.exports: $Exports<"classnames">; -} diff --git a/flow-typed/npm/concurrently_vx.x.x.js b/flow-typed/npm/concurrently_vx.x.x.js deleted file mode 100644 index 315d4406..00000000 --- a/flow-typed/npm/concurrently_vx.x.x.js +++ /dev/null @@ -1,157 +0,0 @@ -// flow-typed signature: a85996c430da07b42cd9ff75ba2244a5 -// flow-typed version: <>/concurrently_v5.3.0/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'concurrently' - * - * 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 'concurrently' { - 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 'concurrently/bin/concurrently' { - declare module.exports: any; -} - -declare module 'concurrently/src/command-parser/expand-npm-shortcut' { - declare module.exports: any; -} - -declare module 'concurrently/src/command-parser/expand-npm-wildcard' { - declare module.exports: any; -} - -declare module 'concurrently/src/command-parser/strip-quotes' { - declare module.exports: any; -} - -declare module 'concurrently/src/command' { - declare module.exports: any; -} - -declare module 'concurrently/src/completion-listener' { - declare module.exports: any; -} - -declare module 'concurrently/src/concurrently' { - declare module.exports: any; -} - -declare module 'concurrently/src/defaults' { - declare module.exports: any; -} - -declare module 'concurrently/src/flow-control/fixtures/fake-command' { - declare module.exports: any; -} - -declare module 'concurrently/src/flow-control/input-handler' { - declare module.exports: any; -} - -declare module 'concurrently/src/flow-control/kill-on-signal' { - declare module.exports: any; -} - -declare module 'concurrently/src/flow-control/kill-others' { - declare module.exports: any; -} - -declare module 'concurrently/src/flow-control/log-error' { - declare module.exports: any; -} - -declare module 'concurrently/src/flow-control/log-exit' { - declare module.exports: any; -} - -declare module 'concurrently/src/flow-control/log-output' { - declare module.exports: any; -} - -declare module 'concurrently/src/flow-control/restart-process' { - declare module.exports: any; -} - -declare module 'concurrently/src/get-spawn-opts' { - declare module.exports: any; -} - -declare module 'concurrently/src/logger' { - declare module.exports: any; -} - -// Filename aliases -declare module 'concurrently/bin/concurrently.js' { - declare module.exports: $Exports<'concurrently/bin/concurrently'>; -} -declare module 'concurrently/index' { - declare module.exports: $Exports<'concurrently'>; -} -declare module 'concurrently/index.js' { - declare module.exports: $Exports<'concurrently'>; -} -declare module 'concurrently/src/command-parser/expand-npm-shortcut.js' { - declare module.exports: $Exports<'concurrently/src/command-parser/expand-npm-shortcut'>; -} -declare module 'concurrently/src/command-parser/expand-npm-wildcard.js' { - declare module.exports: $Exports<'concurrently/src/command-parser/expand-npm-wildcard'>; -} -declare module 'concurrently/src/command-parser/strip-quotes.js' { - declare module.exports: $Exports<'concurrently/src/command-parser/strip-quotes'>; -} -declare module 'concurrently/src/command.js' { - declare module.exports: $Exports<'concurrently/src/command'>; -} -declare module 'concurrently/src/completion-listener.js' { - declare module.exports: $Exports<'concurrently/src/completion-listener'>; -} -declare module 'concurrently/src/concurrently.js' { - declare module.exports: $Exports<'concurrently/src/concurrently'>; -} -declare module 'concurrently/src/defaults.js' { - declare module.exports: $Exports<'concurrently/src/defaults'>; -} -declare module 'concurrently/src/flow-control/fixtures/fake-command.js' { - declare module.exports: $Exports<'concurrently/src/flow-control/fixtures/fake-command'>; -} -declare module 'concurrently/src/flow-control/input-handler.js' { - declare module.exports: $Exports<'concurrently/src/flow-control/input-handler'>; -} -declare module 'concurrently/src/flow-control/kill-on-signal.js' { - declare module.exports: $Exports<'concurrently/src/flow-control/kill-on-signal'>; -} -declare module 'concurrently/src/flow-control/kill-others.js' { - declare module.exports: $Exports<'concurrently/src/flow-control/kill-others'>; -} -declare module 'concurrently/src/flow-control/log-error.js' { - declare module.exports: $Exports<'concurrently/src/flow-control/log-error'>; -} -declare module 'concurrently/src/flow-control/log-exit.js' { - declare module.exports: $Exports<'concurrently/src/flow-control/log-exit'>; -} -declare module 'concurrently/src/flow-control/log-output.js' { - declare module.exports: $Exports<'concurrently/src/flow-control/log-output'>; -} -declare module 'concurrently/src/flow-control/restart-process.js' { - declare module.exports: $Exports<'concurrently/src/flow-control/restart-process'>; -} -declare module 'concurrently/src/get-spawn-opts.js' { - declare module.exports: $Exports<'concurrently/src/get-spawn-opts'>; -} -declare module 'concurrently/src/logger.js' { - declare module.exports: $Exports<'concurrently/src/logger'>; -} diff --git a/flow-typed/npm/cross-env_vx.x.x.js b/flow-typed/npm/cross-env_vx.x.x.js deleted file mode 100644 index e6e0ab5c..00000000 --- a/flow-typed/npm/cross-env_vx.x.x.js +++ /dev/null @@ -1,70 +0,0 @@ -// flow-typed signature: 31e74151994a2ea1a25a4b65b1870e32 -// flow-typed version: <>/cross-env_v7.0.2/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'cross-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 'cross-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 'cross-env/src/bin/cross-env-shell' { - declare module.exports: any; -} - -declare module 'cross-env/src/bin/cross-env' { - declare module.exports: any; -} - -declare module 'cross-env/src/command' { - declare module.exports: any; -} - -declare module 'cross-env/src' { - declare module.exports: any; -} - -declare module 'cross-env/src/is-windows' { - declare module.exports: any; -} - -declare module 'cross-env/src/variable' { - declare module.exports: any; -} - -// Filename aliases -declare module 'cross-env/src/bin/cross-env-shell.js' { - declare module.exports: $Exports<'cross-env/src/bin/cross-env-shell'>; -} -declare module 'cross-env/src/bin/cross-env.js' { - declare module.exports: $Exports<'cross-env/src/bin/cross-env'>; -} -declare module 'cross-env/src/command.js' { - declare module.exports: $Exports<'cross-env/src/command'>; -} -declare module 'cross-env/src/index' { - declare module.exports: $Exports<'cross-env/src'>; -} -declare module 'cross-env/src/index.js' { - declare module.exports: $Exports<'cross-env/src'>; -} -declare module 'cross-env/src/is-windows.js' { - declare module.exports: $Exports<'cross-env/src/is-windows'>; -} -declare module 'cross-env/src/variable.js' { - declare module.exports: $Exports<'cross-env/src/variable'>; -} diff --git a/flow-typed/npm/darkreader_vx.x.x.js b/flow-typed/npm/darkreader_vx.x.x.js deleted file mode 100644 index 05fc1538..00000000 --- a/flow-typed/npm/darkreader_vx.x.x.js +++ /dev/null @@ -1,32 +0,0 @@ -// flow-typed signature: ead051a4e8f156aec308d44adc19904a -// flow-typed version: <>/darkreader_v4.9.21/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'darkreader' - * - * 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 'darkreader' { - 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 'darkreader/darkreader' { - declare module.exports: any; -} - -// Filename aliases -declare module 'darkreader/darkreader.js' { - declare module.exports: $Exports<'darkreader/darkreader'>; -} diff --git a/flow-typed/npm/download_vx.x.x.js b/flow-typed/npm/download_vx.x.x.js deleted file mode 100644 index c97346a7..00000000 --- a/flow-typed/npm/download_vx.x.x.js +++ /dev/null @@ -1,33 +0,0 @@ -// flow-typed signature: 22b9e1a368b87f0978370a81a60af4b5 -// flow-typed version: <>/download_v8.0.0/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'download' - * - * 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 'download' { - 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 'download/index' { - declare module.exports: $Exports<'download'>; -} -declare module 'download/index.js' { - declare module.exports: $Exports<'download'>; -} diff --git a/flow-typed/npm/dugite_vx.x.x.js b/flow-typed/npm/dugite_vx.x.x.js deleted file mode 100644 index 7f7f8e58..00000000 --- a/flow-typed/npm/dugite_vx.x.x.js +++ /dev/null @@ -1,91 +0,0 @@ -// flow-typed signature: c229175f1e76917823b05df0c388e44a -// flow-typed version: <>/dugite_v1.91.3/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'dugite' - * - * 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 'dugite' { - 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 'dugite/build/lib/errors' { - declare module.exports: any; -} - -declare module 'dugite/build/lib/git-environment' { - declare module.exports: any; -} - -declare module 'dugite/build/lib/git-process' { - declare module.exports: any; -} - -declare module 'dugite/build/lib' { - declare module.exports: any; -} - -declare module 'dugite/jest.external.config' { - declare module.exports: any; -} - -declare module 'dugite/jest.fast.config' { - declare module.exports: any; -} - -declare module 'dugite/jest.slow.config' { - declare module.exports: any; -} - -declare module 'dugite/script/config' { - declare module.exports: any; -} - -declare module 'dugite/script/download-git' { - declare module.exports: any; -} - -// Filename aliases -declare module 'dugite/build/lib/errors.js' { - declare module.exports: $Exports<'dugite/build/lib/errors'>; -} -declare module 'dugite/build/lib/git-environment.js' { - declare module.exports: $Exports<'dugite/build/lib/git-environment'>; -} -declare module 'dugite/build/lib/git-process.js' { - declare module.exports: $Exports<'dugite/build/lib/git-process'>; -} -declare module 'dugite/build/lib/index' { - declare module.exports: $Exports<'dugite/build/lib'>; -} -declare module 'dugite/build/lib/index.js' { - declare module.exports: $Exports<'dugite/build/lib'>; -} -declare module 'dugite/jest.external.config.js' { - declare module.exports: $Exports<'dugite/jest.external.config'>; -} -declare module 'dugite/jest.fast.config.js' { - declare module.exports: $Exports<'dugite/jest.fast.config'>; -} -declare module 'dugite/jest.slow.config.js' { - declare module.exports: $Exports<'dugite/jest.slow.config'>; -} -declare module 'dugite/script/config.js' { - declare module.exports: $Exports<'dugite/script/config'>; -} -declare module 'dugite/script/download-git.js' { - declare module.exports: $Exports<'dugite/script/download-git'>; -} diff --git a/flow-typed/npm/electron-builder_vx.x.x.js b/flow-typed/npm/electron-builder_vx.x.x.js deleted file mode 100644 index e24cb892..00000000 --- a/flow-typed/npm/electron-builder_vx.x.x.js +++ /dev/null @@ -1,70 +0,0 @@ -// flow-typed signature: f9d676befebde615716207904306bc7d -// flow-typed version: <>/electron-builder_v22.8.1/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'electron-builder' - * - * 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 'electron-builder' { - 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 'electron-builder/out/builder' { - declare module.exports: any; -} - -declare module 'electron-builder/out/cli/cli' { - declare module.exports: any; -} - -declare module 'electron-builder/out/cli/create-self-signed-cert' { - declare module.exports: any; -} - -declare module 'electron-builder/out/cli/install-app-deps' { - declare module.exports: any; -} - -declare module 'electron-builder/out/cli/start' { - declare module.exports: any; -} - -declare module 'electron-builder/out' { - declare module.exports: any; -} - -// Filename aliases -declare module 'electron-builder/out/builder.js' { - declare module.exports: $Exports<'electron-builder/out/builder'>; -} -declare module 'electron-builder/out/cli/cli.js' { - declare module.exports: $Exports<'electron-builder/out/cli/cli'>; -} -declare module 'electron-builder/out/cli/create-self-signed-cert.js' { - declare module.exports: $Exports<'electron-builder/out/cli/create-self-signed-cert'>; -} -declare module 'electron-builder/out/cli/install-app-deps.js' { - declare module.exports: $Exports<'electron-builder/out/cli/install-app-deps'>; -} -declare module 'electron-builder/out/cli/start.js' { - declare module.exports: $Exports<'electron-builder/out/cli/start'>; -} -declare module 'electron-builder/out/index' { - declare module.exports: $Exports<'electron-builder/out'>; -} -declare module 'electron-builder/out/index.js' { - declare module.exports: $Exports<'electron-builder/out'>; -} diff --git a/flow-typed/npm/electron-context-menu_vx.x.x.js b/flow-typed/npm/electron-context-menu_vx.x.x.js deleted file mode 100644 index 0d761062..00000000 --- a/flow-typed/npm/electron-context-menu_vx.x.x.js +++ /dev/null @@ -1,33 +0,0 @@ -// flow-typed signature: cc340e6d911cfa671fec5c99564f16a8 -// flow-typed version: <>/electron-context-menu_v2.3.0/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'electron-context-menu' - * - * 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 'electron-context-menu' { - 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 'electron-context-menu/index' { - declare module.exports: $Exports<'electron-context-menu'>; -} -declare module 'electron-context-menu/index.js' { - declare module.exports: $Exports<'electron-context-menu'>; -} diff --git a/flow-typed/npm/electron-is-dev_vx.x.x.js b/flow-typed/npm/electron-is-dev_vx.x.x.js deleted file mode 100644 index 75713cda..00000000 --- a/flow-typed/npm/electron-is-dev_vx.x.x.js +++ /dev/null @@ -1,33 +0,0 @@ -// flow-typed signature: 7412ab626850c76f36b81eae32fd3909 -// flow-typed version: <>/electron-is-dev_v1.2.0/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'electron-is-dev' - * - * 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 'electron-is-dev' { - 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 'electron-is-dev/index' { - declare module.exports: $Exports<'electron-is-dev'>; -} -declare module 'electron-is-dev/index.js' { - declare module.exports: $Exports<'electron-is-dev'>; -} diff --git a/flow-typed/npm/electron-notarize_vx.x.x.js b/flow-typed/npm/electron-notarize_vx.x.x.js deleted file mode 100644 index eaf53ee1..00000000 --- a/flow-typed/npm/electron-notarize_vx.x.x.js +++ /dev/null @@ -1,56 +0,0 @@ -// flow-typed signature: b295666619fead4a0f90b030c4afeb51 -// flow-typed version: <>/electron-notarize_v1.0.0/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'electron-notarize' - * - * 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 'electron-notarize' { - 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 'electron-notarize/lib/helpers' { - declare module.exports: any; -} - -declare module 'electron-notarize/lib' { - declare module.exports: any; -} - -declare module 'electron-notarize/lib/spawn' { - declare module.exports: any; -} - -declare module 'electron-notarize/lib/validate-args' { - declare module.exports: any; -} - -// Filename aliases -declare module 'electron-notarize/lib/helpers.js' { - declare module.exports: $Exports<'electron-notarize/lib/helpers'>; -} -declare module 'electron-notarize/lib/index' { - declare module.exports: $Exports<'electron-notarize/lib'>; -} -declare module 'electron-notarize/lib/index.js' { - declare module.exports: $Exports<'electron-notarize/lib'>; -} -declare module 'electron-notarize/lib/spawn.js' { - declare module.exports: $Exports<'electron-notarize/lib/spawn'>; -} -declare module 'electron-notarize/lib/validate-args.js' { - declare module.exports: $Exports<'electron-notarize/lib/validate-args'>; -} diff --git a/flow-typed/npm/electron-settings_vx.x.x.js b/flow-typed/npm/electron-settings_vx.x.x.js deleted file mode 100644 index cb486c26..00000000 --- a/flow-typed/npm/electron-settings_vx.x.x.js +++ /dev/null @@ -1,32 +0,0 @@ -// flow-typed signature: 410fe49878d61f88c97264de325f07f0 -// flow-typed version: <>/electron-settings_v4.0.2/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'electron-settings' - * - * 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 'electron-settings' { - 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 'electron-settings/dist/settings' { - declare module.exports: any; -} - -// Filename aliases -declare module 'electron-settings/dist/settings.js' { - declare module.exports: $Exports<'electron-settings/dist/settings'>; -} diff --git a/flow-typed/npm/electron-updater_vx.x.x.js b/flow-typed/npm/electron-updater_vx.x.x.js deleted file mode 100644 index f9458409..00000000 --- a/flow-typed/npm/electron-updater_vx.x.x.js +++ /dev/null @@ -1,186 +0,0 @@ -// flow-typed signature: 455e572079141bb7ac8274843addadae -// flow-typed version: <>/electron-updater_v4.3.5/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'electron-updater' - * - * 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 'electron-updater' { - 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 'electron-updater/out/AppAdapter' { - declare module.exports: any; -} - -declare module 'electron-updater/out/AppImageUpdater' { - declare module.exports: any; -} - -declare module 'electron-updater/out/AppUpdater' { - declare module.exports: any; -} - -declare module 'electron-updater/out/BaseUpdater' { - declare module.exports: any; -} - -declare module 'electron-updater/out/differentialDownloader/DataSplitter' { - declare module.exports: any; -} - -declare module 'electron-updater/out/differentialDownloader/DifferentialDownloader' { - declare module.exports: any; -} - -declare module 'electron-updater/out/differentialDownloader/downloadPlanBuilder' { - declare module.exports: any; -} - -declare module 'electron-updater/out/differentialDownloader/FileWithEmbeddedBlockMapDifferentialDownloader' { - declare module.exports: any; -} - -declare module 'electron-updater/out/differentialDownloader/GenericDifferentialDownloader' { - declare module.exports: any; -} - -declare module 'electron-updater/out/differentialDownloader/multipleRangeDownloader' { - declare module.exports: any; -} - -declare module 'electron-updater/out/DownloadedUpdateHelper' { - declare module.exports: any; -} - -declare module 'electron-updater/out/ElectronAppAdapter' { - declare module.exports: any; -} - -declare module 'electron-updater/out/electronHttpExecutor' { - declare module.exports: any; -} - -declare module 'electron-updater/out/MacUpdater' { - declare module.exports: any; -} - -declare module 'electron-updater/out/main' { - declare module.exports: any; -} - -declare module 'electron-updater/out/NsisUpdater' { - declare module.exports: any; -} - -declare module 'electron-updater/out/providerFactory' { - declare module.exports: any; -} - -declare module 'electron-updater/out/providers/BintrayProvider' { - declare module.exports: any; -} - -declare module 'electron-updater/out/providers/GenericProvider' { - declare module.exports: any; -} - -declare module 'electron-updater/out/providers/GitHubProvider' { - declare module.exports: any; -} - -declare module 'electron-updater/out/providers/PrivateGitHubProvider' { - declare module.exports: any; -} - -declare module 'electron-updater/out/providers/Provider' { - declare module.exports: any; -} - -declare module 'electron-updater/out/windowsExecutableCodeSignatureVerifier' { - declare module.exports: any; -} - -// Filename aliases -declare module 'electron-updater/out/AppAdapter.js' { - declare module.exports: $Exports<'electron-updater/out/AppAdapter'>; -} -declare module 'electron-updater/out/AppImageUpdater.js' { - declare module.exports: $Exports<'electron-updater/out/AppImageUpdater'>; -} -declare module 'electron-updater/out/AppUpdater.js' { - declare module.exports: $Exports<'electron-updater/out/AppUpdater'>; -} -declare module 'electron-updater/out/BaseUpdater.js' { - declare module.exports: $Exports<'electron-updater/out/BaseUpdater'>; -} -declare module 'electron-updater/out/differentialDownloader/DataSplitter.js' { - declare module.exports: $Exports<'electron-updater/out/differentialDownloader/DataSplitter'>; -} -declare module 'electron-updater/out/differentialDownloader/DifferentialDownloader.js' { - declare module.exports: $Exports<'electron-updater/out/differentialDownloader/DifferentialDownloader'>; -} -declare module 'electron-updater/out/differentialDownloader/downloadPlanBuilder.js' { - declare module.exports: $Exports<'electron-updater/out/differentialDownloader/downloadPlanBuilder'>; -} -declare module 'electron-updater/out/differentialDownloader/FileWithEmbeddedBlockMapDifferentialDownloader.js' { - declare module.exports: $Exports<'electron-updater/out/differentialDownloader/FileWithEmbeddedBlockMapDifferentialDownloader'>; -} -declare module 'electron-updater/out/differentialDownloader/GenericDifferentialDownloader.js' { - declare module.exports: $Exports<'electron-updater/out/differentialDownloader/GenericDifferentialDownloader'>; -} -declare module 'electron-updater/out/differentialDownloader/multipleRangeDownloader.js' { - declare module.exports: $Exports<'electron-updater/out/differentialDownloader/multipleRangeDownloader'>; -} -declare module 'electron-updater/out/DownloadedUpdateHelper.js' { - declare module.exports: $Exports<'electron-updater/out/DownloadedUpdateHelper'>; -} -declare module 'electron-updater/out/ElectronAppAdapter.js' { - declare module.exports: $Exports<'electron-updater/out/ElectronAppAdapter'>; -} -declare module 'electron-updater/out/electronHttpExecutor.js' { - declare module.exports: $Exports<'electron-updater/out/electronHttpExecutor'>; -} -declare module 'electron-updater/out/MacUpdater.js' { - declare module.exports: $Exports<'electron-updater/out/MacUpdater'>; -} -declare module 'electron-updater/out/main.js' { - declare module.exports: $Exports<'electron-updater/out/main'>; -} -declare module 'electron-updater/out/NsisUpdater.js' { - declare module.exports: $Exports<'electron-updater/out/NsisUpdater'>; -} -declare module 'electron-updater/out/providerFactory.js' { - declare module.exports: $Exports<'electron-updater/out/providerFactory'>; -} -declare module 'electron-updater/out/providers/BintrayProvider.js' { - declare module.exports: $Exports<'electron-updater/out/providers/BintrayProvider'>; -} -declare module 'electron-updater/out/providers/GenericProvider.js' { - declare module.exports: $Exports<'electron-updater/out/providers/GenericProvider'>; -} -declare module 'electron-updater/out/providers/GitHubProvider.js' { - declare module.exports: $Exports<'electron-updater/out/providers/GitHubProvider'>; -} -declare module 'electron-updater/out/providers/PrivateGitHubProvider.js' { - declare module.exports: $Exports<'electron-updater/out/providers/PrivateGitHubProvider'>; -} -declare module 'electron-updater/out/providers/Provider.js' { - declare module.exports: $Exports<'electron-updater/out/providers/Provider'>; -} -declare module 'electron-updater/out/windowsExecutableCodeSignatureVerifier.js' { - declare module.exports: $Exports<'electron-updater/out/windowsExecutableCodeSignatureVerifier'>; -} diff --git a/flow-typed/npm/electron-window-state_vx.x.x.js b/flow-typed/npm/electron-window-state_vx.x.x.js deleted file mode 100644 index f4ffdeb0..00000000 --- a/flow-typed/npm/electron-window-state_vx.x.x.js +++ /dev/null @@ -1,33 +0,0 @@ -// flow-typed signature: 8fe97ae17982ab54eeb0b11334bf8bea -// flow-typed version: <>/electron-window-state_v5.0.3/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'electron-window-state' - * - * 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 'electron-window-state' { - 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 'electron-window-state/index' { - declare module.exports: $Exports<'electron-window-state'>; -} -declare module 'electron-window-state/index.js' { - declare module.exports: $Exports<'electron-window-state'>; -} diff --git a/flow-typed/npm/electron_vx.x.x.js b/flow-typed/npm/electron_vx.x.x.js deleted file mode 100644 index 6c562a5f..00000000 --- a/flow-typed/npm/electron_vx.x.x.js +++ /dev/null @@ -1,45 +0,0 @@ -// flow-typed signature: 33ed1e09474d7a3cdcd2a9af78e20ffb -// flow-typed version: <>/electron_v^12.0.0-beta.10/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'electron' - * - * 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 'electron' { - 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 'electron/cli' { - declare module.exports: any; -} - -declare module 'electron/install' { - declare module.exports: any; -} - -// Filename aliases -declare module 'electron/cli.js' { - declare module.exports: $Exports<'electron/cli'>; -} -declare module 'electron/index' { - declare module.exports: $Exports<'electron'>; -} -declare module 'electron/index.js' { - declare module.exports: $Exports<'electron'>; -} -declare module 'electron/install.js' { - declare module.exports: $Exports<'electron/install'>; -} diff --git a/flow-typed/npm/eslint-config-airbnb_vx.x.x.js b/flow-typed/npm/eslint-config-airbnb_vx.x.x.js deleted file mode 100644 index 8c2c0b1a..00000000 --- a/flow-typed/npm/eslint-config-airbnb_vx.x.x.js +++ /dev/null @@ -1,101 +0,0 @@ -// flow-typed signature: 848c6fc59680ee0ef17c1b513dd402a6 -// flow-typed version: <>/eslint-config-airbnb_v18.2.0/flow_v0.135.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'>; -} diff --git a/flow-typed/npm/eslint-config-prettier_vx.x.x.js b/flow-typed/npm/eslint-config-prettier_vx.x.x.js deleted file mode 100644 index 1eb6f1c9..00000000 --- a/flow-typed/npm/eslint-config-prettier_vx.x.x.js +++ /dev/null @@ -1,94 +0,0 @@ -// flow-typed signature: c7eb4dc4c1220800bc195d22f0731501 -// flow-typed version: <>/eslint-config-prettier_v6.12.0/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'eslint-config-prettier' - * - * 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-prettier' { - 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-prettier/@typescript-eslint' { - declare module.exports: any; -} - -declare module 'eslint-config-prettier/babel' { - declare module.exports: any; -} - -declare module 'eslint-config-prettier/bin/cli' { - declare module.exports: any; -} - -declare module 'eslint-config-prettier/bin/validators' { - declare module.exports: any; -} - -declare module 'eslint-config-prettier/flowtype' { - declare module.exports: any; -} - -declare module 'eslint-config-prettier/react' { - declare module.exports: any; -} - -declare module 'eslint-config-prettier/standard' { - declare module.exports: any; -} - -declare module 'eslint-config-prettier/unicorn' { - declare module.exports: any; -} - -declare module 'eslint-config-prettier/vue' { - declare module.exports: any; -} - -// Filename aliases -declare module 'eslint-config-prettier/@typescript-eslint.js' { - declare module.exports: $Exports<'eslint-config-prettier/@typescript-eslint'>; -} -declare module 'eslint-config-prettier/babel.js' { - declare module.exports: $Exports<'eslint-config-prettier/babel'>; -} -declare module 'eslint-config-prettier/bin/cli.js' { - declare module.exports: $Exports<'eslint-config-prettier/bin/cli'>; -} -declare module 'eslint-config-prettier/bin/validators.js' { - declare module.exports: $Exports<'eslint-config-prettier/bin/validators'>; -} -declare module 'eslint-config-prettier/flowtype.js' { - declare module.exports: $Exports<'eslint-config-prettier/flowtype'>; -} -declare module 'eslint-config-prettier/index' { - declare module.exports: $Exports<'eslint-config-prettier'>; -} -declare module 'eslint-config-prettier/index.js' { - declare module.exports: $Exports<'eslint-config-prettier'>; -} -declare module 'eslint-config-prettier/react.js' { - declare module.exports: $Exports<'eslint-config-prettier/react'>; -} -declare module 'eslint-config-prettier/standard.js' { - declare module.exports: $Exports<'eslint-config-prettier/standard'>; -} -declare module 'eslint-config-prettier/unicorn.js' { - declare module.exports: $Exports<'eslint-config-prettier/unicorn'>; -} -declare module 'eslint-config-prettier/vue.js' { - declare module.exports: $Exports<'eslint-config-prettier/vue'>; -} diff --git a/flow-typed/npm/eslint-config-standard_vx.x.x.js b/flow-typed/npm/eslint-config-standard_vx.x.x.js deleted file mode 100644 index 3b5cad15..00000000 --- a/flow-typed/npm/eslint-config-standard_vx.x.x.js +++ /dev/null @@ -1,33 +0,0 @@ -// flow-typed signature: b421b7ab307720f86702d49a237f4bca -// flow-typed version: <>/eslint-config-standard_v14.1.1/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'eslint-config-standard' - * - * 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-standard' { - 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 'eslint-config-standard/index' { - declare module.exports: $Exports<'eslint-config-standard'>; -} -declare module 'eslint-config-standard/index.js' { - declare module.exports: $Exports<'eslint-config-standard'>; -} diff --git a/flow-typed/npm/eslint-plugin-flowtype_vx.x.x.js b/flow-typed/npm/eslint-plugin-flowtype_vx.x.x.js deleted file mode 100644 index 06c0a3f6..00000000 --- a/flow-typed/npm/eslint-plugin-flowtype_vx.x.x.js +++ /dev/null @@ -1,520 +0,0 @@ -// flow-typed signature: 76ff393c02731a3fc8421770f28fe18a -// flow-typed version: <>/eslint-plugin-flowtype_v5.2.0/flow_v0.135.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/isNoFlowFile' { - declare module.exports: any; -} - -declare module 'eslint-plugin-flowtype/dist/utilities/isNoFlowFileAnnotation' { - 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/isNoFlowFile.js' { - declare module.exports: $Exports<'eslint-plugin-flowtype/dist/utilities/isNoFlowFile'>; -} -declare module 'eslint-plugin-flowtype/dist/utilities/isNoFlowFileAnnotation.js' { - declare module.exports: $Exports<'eslint-plugin-flowtype/dist/utilities/isNoFlowFileAnnotation'>; -} -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'>; -} diff --git a/flow-typed/npm/eslint-plugin-html_vx.x.x.js b/flow-typed/npm/eslint-plugin-html_vx.x.x.js deleted file mode 100644 index a915b2c0..00000000 --- a/flow-typed/npm/eslint-plugin-html_vx.x.x.js +++ /dev/null @@ -1,70 +0,0 @@ -// flow-typed signature: b2371d33bd903894ebcfc4179fdf5ada -// flow-typed version: <>/eslint-plugin-html_v6.1.0/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'eslint-plugin-html' - * - * 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-html' { - 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-html/src/extract' { - declare module.exports: any; -} - -declare module 'eslint-plugin-html/src/getFileMode' { - declare module.exports: any; -} - -declare module 'eslint-plugin-html/src' { - declare module.exports: any; -} - -declare module 'eslint-plugin-html/src/settings' { - declare module.exports: any; -} - -declare module 'eslint-plugin-html/src/TransformableString' { - declare module.exports: any; -} - -declare module 'eslint-plugin-html/src/utils' { - declare module.exports: any; -} - -// Filename aliases -declare module 'eslint-plugin-html/src/extract.js' { - declare module.exports: $Exports<'eslint-plugin-html/src/extract'>; -} -declare module 'eslint-plugin-html/src/getFileMode.js' { - declare module.exports: $Exports<'eslint-plugin-html/src/getFileMode'>; -} -declare module 'eslint-plugin-html/src/index' { - declare module.exports: $Exports<'eslint-plugin-html/src'>; -} -declare module 'eslint-plugin-html/src/index.js' { - declare module.exports: $Exports<'eslint-plugin-html/src'>; -} -declare module 'eslint-plugin-html/src/settings.js' { - declare module.exports: $Exports<'eslint-plugin-html/src/settings'>; -} -declare module 'eslint-plugin-html/src/TransformableString.js' { - declare module.exports: $Exports<'eslint-plugin-html/src/TransformableString'>; -} -declare module 'eslint-plugin-html/src/utils.js' { - declare module.exports: $Exports<'eslint-plugin-html/src/utils'>; -} diff --git a/flow-typed/npm/eslint-plugin-import_vx.x.x.js b/flow-typed/npm/eslint-plugin-import_vx.x.x.js deleted file mode 100644 index 621e0667..00000000 --- a/flow-typed/npm/eslint-plugin-import_vx.x.x.js +++ /dev/null @@ -1,423 +0,0 @@ -// flow-typed signature: 547806ec7fdb98a981ce38668a879960 -// flow-typed version: <>/eslint-plugin-import_v2.22.1/flow_v0.135.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'>; -} diff --git a/flow-typed/npm/eslint-plugin-jsx-a11y_vx.x.x.js b/flow-typed/npm/eslint-plugin-jsx-a11y_vx.x.x.js deleted file mode 100644 index ce2d1814..00000000 --- a/flow-typed/npm/eslint-plugin-jsx-a11y_vx.x.x.js +++ /dev/null @@ -1,1235 +0,0 @@ -// flow-typed signature: b0dd00ed9b0d649413d68a0a8ca614b8 -// flow-typed version: <>/eslint-plugin-jsx-a11y_v6.3.1/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'eslint-plugin-jsx-a11y' - * - * 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-jsx-a11y' { - 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-jsx-a11y/__mocks__/genInteractives' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__mocks__/IdentifierMock' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__mocks__/JSXAttributeMock' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__mocks__/JSXElementMock' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__mocks__/JSXExpressionContainerMock' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__mocks__/JSXSpreadAttributeMock' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__mocks__/JSXTextMock' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__mocks__/LiteralMock' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/__util__/axeMapping' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/__util__/parserOptionsMapper' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/__util__/ruleOptionsMapperFactory' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/index-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/accessible-emoji-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/alt-text-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/anchor-has-content-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/anchor-is-valid-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/aria-activedescendant-has-tabindex-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/aria-props-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/aria-proptypes-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/aria-role-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/aria-unsupported-elements-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/autocomplete-valid-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/click-events-have-key-events-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/control-has-associated-label-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/heading-has-content-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/html-has-lang-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/iframe-has-title-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/img-redundant-alt-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/interactive-supports-focus-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/label-has-associated-control-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/label-has-for-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/lang-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/media-has-caption-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/mouse-events-have-key-events-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/no-access-key-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/no-autofocus-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/no-distracting-elements-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/no-interactive-element-to-noninteractive-role-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/no-noninteractive-element-interactions-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/no-noninteractive-element-to-interactive-role-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/no-noninteractive-tabindex-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/no-onchange-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/no-redundant-roles-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/no-static-element-interactions-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/role-has-required-aria-props-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/role-supports-aria-props-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/scope-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/tabindex-no-positive-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/attributesComparator-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/getComputedRole-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/getExplicitRole-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/getImplicitRole-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/getSuggestion-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/getTabIndex-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/hasAccessibleChild-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/implicitRoles/input-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/implicitRoles/menu-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/implicitRoles/menuitem-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/isAbstractRole-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/isDisabledElement-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/isDOMElement-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/isInteractiveElement-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/isInteractiveRole-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/isNonInteractiveElement-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/isNonInteractiveRole-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/isNonLiteralProperty-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/isSemanticRoleElement-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/mayContainChildComponent-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/mayHaveAccessibleLabel-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/parserOptionsMapper-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/schemas-test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/rules/accessible-emoji' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/rules/alt-text' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/rules/anchor-has-content' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/rules/anchor-is-valid' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/rules/aria-activedescendant-has-tabindex' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/rules/aria-props' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/rules/aria-proptypes' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/rules/aria-role' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/rules/aria-unsupported-elements' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/rules/autocomplete-valid' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/rules/click-events-have-key-events' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/rules/control-has-associated-label' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/rules/heading-has-content' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/rules/html-has-lang' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/rules/iframe-has-title' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/rules/img-redundant-alt' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/rules/interactive-supports-focus' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/rules/label-has-associated-control' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/rules/label-has-for' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/rules/lang' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/rules/media-has-caption' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/rules/mouse-events-have-key-events' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/rules/no-access-key' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/rules/no-autofocus' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/rules/no-distracting-elements' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/rules/no-interactive-element-to-noninteractive-role' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/rules/no-noninteractive-element-interactions' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/rules/no-noninteractive-element-to-interactive-role' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/rules/no-noninteractive-tabindex' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/rules/no-onchange' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/rules/no-redundant-roles' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/rules/no-static-element-interactions' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/rules/role-has-required-aria-props' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/rules/role-supports-aria-props' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/rules/scope' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/rules/tabindex-no-positive' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/attributesComparator' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/getComputedRole' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/getExplicitRole' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/getImplicitRole' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/getSuggestion' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/getTabIndex' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/hasAccessibleChild' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/a' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/area' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/article' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/aside' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/body' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/button' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/datalist' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/details' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/dialog' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/dl' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/form' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/h1' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/h2' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/h3' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/h4' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/h5' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/h6' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/hr' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/img' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/input' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/li' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/link' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/menu' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/menuitem' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/meter' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/nav' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/ol' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/option' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/output' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/progress' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/section' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/select' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/tbody' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/textarea' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/tfoot' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/thead' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/ul' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/isAbstractRole' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/isDisabledElement' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/isDOMElement' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/isHiddenFromScreenReader' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/isInteractiveElement' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/isInteractiveRole' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/isNonInteractiveElement' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/isNonInteractiveRole' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/isNonLiteralProperty' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/isPresentationRole' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/isSemanticRoleElement' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/mayContainChildComponent' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/mayHaveAccessibleLabel' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/lib/util/schemas' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/scripts/addRuleToIndex' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/scripts/boilerplate/doc' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/scripts/boilerplate/rule' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/scripts/boilerplate/test' { - declare module.exports: any; -} - -declare module 'eslint-plugin-jsx-a11y/scripts/create-rule' { - declare module.exports: any; -} - -// Filename aliases -declare module 'eslint-plugin-jsx-a11y/__mocks__/genInteractives.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__mocks__/genInteractives'>; -} -declare module 'eslint-plugin-jsx-a11y/__mocks__/IdentifierMock.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__mocks__/IdentifierMock'>; -} -declare module 'eslint-plugin-jsx-a11y/__mocks__/JSXAttributeMock.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__mocks__/JSXAttributeMock'>; -} -declare module 'eslint-plugin-jsx-a11y/__mocks__/JSXElementMock.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__mocks__/JSXElementMock'>; -} -declare module 'eslint-plugin-jsx-a11y/__mocks__/JSXExpressionContainerMock.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__mocks__/JSXExpressionContainerMock'>; -} -declare module 'eslint-plugin-jsx-a11y/__mocks__/JSXSpreadAttributeMock.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__mocks__/JSXSpreadAttributeMock'>; -} -declare module 'eslint-plugin-jsx-a11y/__mocks__/JSXTextMock.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__mocks__/JSXTextMock'>; -} -declare module 'eslint-plugin-jsx-a11y/__mocks__/LiteralMock.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__mocks__/LiteralMock'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/__util__/axeMapping.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/__util__/axeMapping'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/__util__/parserOptionsMapper.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/__util__/parserOptionsMapper'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/__util__/ruleOptionsMapperFactory.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/__util__/ruleOptionsMapperFactory'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/index-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/index-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/accessible-emoji-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/accessible-emoji-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/alt-text-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/alt-text-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/anchor-has-content-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/anchor-has-content-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/anchor-is-valid-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/anchor-is-valid-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/aria-activedescendant-has-tabindex-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/aria-activedescendant-has-tabindex-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/aria-props-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/aria-props-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/aria-proptypes-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/aria-proptypes-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/aria-role-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/aria-role-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/aria-unsupported-elements-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/aria-unsupported-elements-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/autocomplete-valid-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/autocomplete-valid-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/click-events-have-key-events-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/click-events-have-key-events-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/control-has-associated-label-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/control-has-associated-label-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/heading-has-content-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/heading-has-content-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/html-has-lang-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/html-has-lang-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/iframe-has-title-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/iframe-has-title-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/img-redundant-alt-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/img-redundant-alt-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/interactive-supports-focus-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/interactive-supports-focus-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/label-has-associated-control-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/label-has-associated-control-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/label-has-for-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/label-has-for-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/lang-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/lang-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/media-has-caption-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/media-has-caption-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/mouse-events-have-key-events-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/mouse-events-have-key-events-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/no-access-key-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/no-access-key-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/no-autofocus-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/no-autofocus-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/no-distracting-elements-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/no-distracting-elements-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/no-interactive-element-to-noninteractive-role-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/no-interactive-element-to-noninteractive-role-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/no-noninteractive-element-interactions-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/no-noninteractive-element-interactions-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/no-noninteractive-element-to-interactive-role-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/no-noninteractive-element-to-interactive-role-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/no-noninteractive-tabindex-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/no-noninteractive-tabindex-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/no-onchange-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/no-onchange-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/no-redundant-roles-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/no-redundant-roles-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/no-static-element-interactions-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/no-static-element-interactions-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/role-has-required-aria-props-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/role-has-required-aria-props-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/role-supports-aria-props-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/role-supports-aria-props-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/scope-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/scope-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/tabindex-no-positive-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/tabindex-no-positive-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/attributesComparator-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/attributesComparator-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/getComputedRole-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/getComputedRole-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/getExplicitRole-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/getExplicitRole-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/getImplicitRole-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/getImplicitRole-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/getSuggestion-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/getSuggestion-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/getTabIndex-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/getTabIndex-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/hasAccessibleChild-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/hasAccessibleChild-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/implicitRoles/input-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/implicitRoles/input-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/implicitRoles/menu-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/implicitRoles/menu-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/implicitRoles/menuitem-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/implicitRoles/menuitem-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/isAbstractRole-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/isAbstractRole-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/isDisabledElement-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/isDisabledElement-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/isDOMElement-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/isDOMElement-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/isInteractiveElement-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/isInteractiveElement-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/isInteractiveRole-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/isInteractiveRole-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/isNonInteractiveElement-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/isNonInteractiveElement-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/isNonInteractiveRole-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/isNonInteractiveRole-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/isNonLiteralProperty-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/isNonLiteralProperty-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/isSemanticRoleElement-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/isSemanticRoleElement-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/mayContainChildComponent-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/mayContainChildComponent-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/mayHaveAccessibleLabel-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/mayHaveAccessibleLabel-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/parserOptionsMapper-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/parserOptionsMapper-test'>; -} -declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/schemas-test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/schemas-test'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/index' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/index.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/rules/accessible-emoji.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/accessible-emoji'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/rules/alt-text.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/alt-text'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/rules/anchor-has-content.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/anchor-has-content'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/rules/anchor-is-valid.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/anchor-is-valid'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/rules/aria-activedescendant-has-tabindex.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/aria-activedescendant-has-tabindex'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/rules/aria-props.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/aria-props'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/rules/aria-proptypes.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/aria-proptypes'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/rules/aria-role.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/aria-role'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/rules/aria-unsupported-elements.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/aria-unsupported-elements'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/rules/autocomplete-valid.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/autocomplete-valid'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/rules/click-events-have-key-events.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/click-events-have-key-events'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/rules/control-has-associated-label.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/control-has-associated-label'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/rules/heading-has-content.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/heading-has-content'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/rules/html-has-lang.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/html-has-lang'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/rules/iframe-has-title.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/iframe-has-title'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/rules/img-redundant-alt.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/img-redundant-alt'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/rules/interactive-supports-focus.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/interactive-supports-focus'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/rules/label-has-associated-control.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/label-has-associated-control'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/rules/label-has-for.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/label-has-for'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/rules/lang.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/lang'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/rules/media-has-caption.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/media-has-caption'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/rules/mouse-events-have-key-events.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/mouse-events-have-key-events'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/rules/no-access-key.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/no-access-key'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/rules/no-autofocus.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/no-autofocus'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/rules/no-distracting-elements.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/no-distracting-elements'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/rules/no-interactive-element-to-noninteractive-role.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/no-interactive-element-to-noninteractive-role'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/rules/no-noninteractive-element-interactions.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/no-noninteractive-element-interactions'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/rules/no-noninteractive-element-to-interactive-role.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/no-noninteractive-element-to-interactive-role'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/rules/no-noninteractive-tabindex.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/no-noninteractive-tabindex'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/rules/no-onchange.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/no-onchange'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/rules/no-redundant-roles.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/no-redundant-roles'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/rules/no-static-element-interactions.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/no-static-element-interactions'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/rules/role-has-required-aria-props.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/role-has-required-aria-props'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/rules/role-supports-aria-props.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/role-supports-aria-props'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/rules/scope.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/scope'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/rules/tabindex-no-positive.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/tabindex-no-positive'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/attributesComparator.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/attributesComparator'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/getComputedRole.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/getComputedRole'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/getExplicitRole.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/getExplicitRole'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/getImplicitRole.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/getImplicitRole'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/getSuggestion.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/getSuggestion'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/getTabIndex.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/getTabIndex'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/hasAccessibleChild.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/hasAccessibleChild'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/a.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/a'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/area.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/area'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/article.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/article'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/aside.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/aside'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/body.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/body'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/button.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/button'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/datalist.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/datalist'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/details.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/details'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/dialog.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/dialog'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/dl.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/dl'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/form.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/form'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/h1.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/h1'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/h2.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/h2'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/h3.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/h3'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/h4.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/h4'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/h5.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/h5'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/h6.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/h6'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/hr.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/hr'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/img.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/img'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/index' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/index.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/input.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/input'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/li.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/li'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/link.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/link'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/menu.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/menu'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/menuitem.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/menuitem'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/meter.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/meter'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/nav.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/nav'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/ol.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/ol'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/option.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/option'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/output.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/output'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/progress.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/progress'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/section.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/section'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/select.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/select'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/tbody.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/tbody'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/textarea.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/textarea'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/tfoot.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/tfoot'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/thead.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/thead'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/ul.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/ul'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/isAbstractRole.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/isAbstractRole'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/isDisabledElement.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/isDisabledElement'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/isDOMElement.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/isDOMElement'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/isHiddenFromScreenReader.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/isHiddenFromScreenReader'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/isInteractiveElement.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/isInteractiveElement'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/isInteractiveRole.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/isInteractiveRole'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/isNonInteractiveElement.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/isNonInteractiveElement'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/isNonInteractiveRole.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/isNonInteractiveRole'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/isNonLiteralProperty.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/isNonLiteralProperty'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/isPresentationRole.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/isPresentationRole'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/isSemanticRoleElement.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/isSemanticRoleElement'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/mayContainChildComponent.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/mayContainChildComponent'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/mayHaveAccessibleLabel.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/mayHaveAccessibleLabel'>; -} -declare module 'eslint-plugin-jsx-a11y/lib/util/schemas.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/schemas'>; -} -declare module 'eslint-plugin-jsx-a11y/scripts/addRuleToIndex.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/scripts/addRuleToIndex'>; -} -declare module 'eslint-plugin-jsx-a11y/scripts/boilerplate/doc.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/scripts/boilerplate/doc'>; -} -declare module 'eslint-plugin-jsx-a11y/scripts/boilerplate/rule.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/scripts/boilerplate/rule'>; -} -declare module 'eslint-plugin-jsx-a11y/scripts/boilerplate/test.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/scripts/boilerplate/test'>; -} -declare module 'eslint-plugin-jsx-a11y/scripts/create-rule.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/scripts/create-rule'>; -} diff --git a/flow-typed/npm/eslint-plugin-node_vx.x.x.js b/flow-typed/npm/eslint-plugin-node_vx.x.x.js deleted file mode 100644 index 16950502..00000000 --- a/flow-typed/npm/eslint-plugin-node_vx.x.x.js +++ /dev/null @@ -1,490 +0,0 @@ -// flow-typed signature: acfab63a18c8426715b44e532cac9625 -// flow-typed version: <>/eslint-plugin-node_v11.1.0/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'eslint-plugin-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 'eslint-plugin-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 'eslint-plugin-node/lib/configs/_commons' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/configs/recommended-module' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/configs/recommended-script' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/configs/recommended' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/rules/callback-return' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/rules/exports-style' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/rules/file-extension-in-import' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/rules/global-require' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/rules/handle-callback-err' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/rules/no-callback-literal' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/rules/no-deprecated-api' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/rules/no-exports-assign' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/rules/no-extraneous-import' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/rules/no-extraneous-require' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/rules/no-hide-core-modules' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/rules/no-missing-import' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/rules/no-missing-require' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/rules/no-mixed-requires' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/rules/no-new-require' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/rules/no-path-concat' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/rules/no-process-env' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/rules/no-process-exit' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/rules/no-restricted-import' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/rules/no-restricted-require' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/rules/no-sync' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/rules/no-unpublished-bin' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/rules/no-unpublished-import' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/rules/no-unpublished-require' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/rules/no-unsupported-features' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/rules/no-unsupported-features/es-builtins' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/rules/no-unsupported-features/es-syntax' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/rules/no-unsupported-features/node-builtins' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/rules/prefer-global/buffer' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/rules/prefer-global/console' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/rules/prefer-global/process' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/rules/prefer-global/text-decoder' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/rules/prefer-global/text-encoder' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/rules/prefer-global/url-search-params' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/rules/prefer-global/url' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/rules/prefer-promises/dns' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/rules/prefer-promises/fs' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/rules/process-exit-as-throw' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/rules/shebang' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/util/cache' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/util/check-existence' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/util/check-extraneous' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/util/check-prefer-global' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/util/check-publish' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/util/check-restricted' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/util/check-unsupported-builtins' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/util/enumerate-property-names' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/util/exists' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/util/get-allow-modules' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/util/get-configured-node-version' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/util/get-convert-path' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/util/get-npmignore' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/util/get-package-json' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/util/get-resolve-paths' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/util/get-semver-range' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/util/get-try-extensions' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/util/import-target' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/util/merge-visitors-in-place' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/util/strip-import-path-params' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/util/visit-import' { - declare module.exports: any; -} - -declare module 'eslint-plugin-node/lib/util/visit-require' { - declare module.exports: any; -} - -// Filename aliases -declare module 'eslint-plugin-node/lib/configs/_commons.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/configs/_commons'>; -} -declare module 'eslint-plugin-node/lib/configs/recommended-module.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/configs/recommended-module'>; -} -declare module 'eslint-plugin-node/lib/configs/recommended-script.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/configs/recommended-script'>; -} -declare module 'eslint-plugin-node/lib/configs/recommended.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/configs/recommended'>; -} -declare module 'eslint-plugin-node/lib/index' { - declare module.exports: $Exports<'eslint-plugin-node/lib'>; -} -declare module 'eslint-plugin-node/lib/index.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib'>; -} -declare module 'eslint-plugin-node/lib/rules/callback-return.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/rules/callback-return'>; -} -declare module 'eslint-plugin-node/lib/rules/exports-style.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/rules/exports-style'>; -} -declare module 'eslint-plugin-node/lib/rules/file-extension-in-import.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/rules/file-extension-in-import'>; -} -declare module 'eslint-plugin-node/lib/rules/global-require.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/rules/global-require'>; -} -declare module 'eslint-plugin-node/lib/rules/handle-callback-err.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/rules/handle-callback-err'>; -} -declare module 'eslint-plugin-node/lib/rules/no-callback-literal.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/rules/no-callback-literal'>; -} -declare module 'eslint-plugin-node/lib/rules/no-deprecated-api.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/rules/no-deprecated-api'>; -} -declare module 'eslint-plugin-node/lib/rules/no-exports-assign.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/rules/no-exports-assign'>; -} -declare module 'eslint-plugin-node/lib/rules/no-extraneous-import.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/rules/no-extraneous-import'>; -} -declare module 'eslint-plugin-node/lib/rules/no-extraneous-require.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/rules/no-extraneous-require'>; -} -declare module 'eslint-plugin-node/lib/rules/no-hide-core-modules.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/rules/no-hide-core-modules'>; -} -declare module 'eslint-plugin-node/lib/rules/no-missing-import.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/rules/no-missing-import'>; -} -declare module 'eslint-plugin-node/lib/rules/no-missing-require.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/rules/no-missing-require'>; -} -declare module 'eslint-plugin-node/lib/rules/no-mixed-requires.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/rules/no-mixed-requires'>; -} -declare module 'eslint-plugin-node/lib/rules/no-new-require.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/rules/no-new-require'>; -} -declare module 'eslint-plugin-node/lib/rules/no-path-concat.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/rules/no-path-concat'>; -} -declare module 'eslint-plugin-node/lib/rules/no-process-env.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/rules/no-process-env'>; -} -declare module 'eslint-plugin-node/lib/rules/no-process-exit.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/rules/no-process-exit'>; -} -declare module 'eslint-plugin-node/lib/rules/no-restricted-import.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/rules/no-restricted-import'>; -} -declare module 'eslint-plugin-node/lib/rules/no-restricted-require.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/rules/no-restricted-require'>; -} -declare module 'eslint-plugin-node/lib/rules/no-sync.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/rules/no-sync'>; -} -declare module 'eslint-plugin-node/lib/rules/no-unpublished-bin.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/rules/no-unpublished-bin'>; -} -declare module 'eslint-plugin-node/lib/rules/no-unpublished-import.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/rules/no-unpublished-import'>; -} -declare module 'eslint-plugin-node/lib/rules/no-unpublished-require.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/rules/no-unpublished-require'>; -} -declare module 'eslint-plugin-node/lib/rules/no-unsupported-features.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/rules/no-unsupported-features'>; -} -declare module 'eslint-plugin-node/lib/rules/no-unsupported-features/es-builtins.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/rules/no-unsupported-features/es-builtins'>; -} -declare module 'eslint-plugin-node/lib/rules/no-unsupported-features/es-syntax.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/rules/no-unsupported-features/es-syntax'>; -} -declare module 'eslint-plugin-node/lib/rules/no-unsupported-features/node-builtins.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/rules/no-unsupported-features/node-builtins'>; -} -declare module 'eslint-plugin-node/lib/rules/prefer-global/buffer.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/rules/prefer-global/buffer'>; -} -declare module 'eslint-plugin-node/lib/rules/prefer-global/console.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/rules/prefer-global/console'>; -} -declare module 'eslint-plugin-node/lib/rules/prefer-global/process.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/rules/prefer-global/process'>; -} -declare module 'eslint-plugin-node/lib/rules/prefer-global/text-decoder.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/rules/prefer-global/text-decoder'>; -} -declare module 'eslint-plugin-node/lib/rules/prefer-global/text-encoder.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/rules/prefer-global/text-encoder'>; -} -declare module 'eslint-plugin-node/lib/rules/prefer-global/url-search-params.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/rules/prefer-global/url-search-params'>; -} -declare module 'eslint-plugin-node/lib/rules/prefer-global/url.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/rules/prefer-global/url'>; -} -declare module 'eslint-plugin-node/lib/rules/prefer-promises/dns.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/rules/prefer-promises/dns'>; -} -declare module 'eslint-plugin-node/lib/rules/prefer-promises/fs.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/rules/prefer-promises/fs'>; -} -declare module 'eslint-plugin-node/lib/rules/process-exit-as-throw.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/rules/process-exit-as-throw'>; -} -declare module 'eslint-plugin-node/lib/rules/shebang.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/rules/shebang'>; -} -declare module 'eslint-plugin-node/lib/util/cache.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/util/cache'>; -} -declare module 'eslint-plugin-node/lib/util/check-existence.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/util/check-existence'>; -} -declare module 'eslint-plugin-node/lib/util/check-extraneous.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/util/check-extraneous'>; -} -declare module 'eslint-plugin-node/lib/util/check-prefer-global.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/util/check-prefer-global'>; -} -declare module 'eslint-plugin-node/lib/util/check-publish.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/util/check-publish'>; -} -declare module 'eslint-plugin-node/lib/util/check-restricted.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/util/check-restricted'>; -} -declare module 'eslint-plugin-node/lib/util/check-unsupported-builtins.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/util/check-unsupported-builtins'>; -} -declare module 'eslint-plugin-node/lib/util/enumerate-property-names.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/util/enumerate-property-names'>; -} -declare module 'eslint-plugin-node/lib/util/exists.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/util/exists'>; -} -declare module 'eslint-plugin-node/lib/util/get-allow-modules.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/util/get-allow-modules'>; -} -declare module 'eslint-plugin-node/lib/util/get-configured-node-version.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/util/get-configured-node-version'>; -} -declare module 'eslint-plugin-node/lib/util/get-convert-path.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/util/get-convert-path'>; -} -declare module 'eslint-plugin-node/lib/util/get-npmignore.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/util/get-npmignore'>; -} -declare module 'eslint-plugin-node/lib/util/get-package-json.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/util/get-package-json'>; -} -declare module 'eslint-plugin-node/lib/util/get-resolve-paths.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/util/get-resolve-paths'>; -} -declare module 'eslint-plugin-node/lib/util/get-semver-range.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/util/get-semver-range'>; -} -declare module 'eslint-plugin-node/lib/util/get-try-extensions.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/util/get-try-extensions'>; -} -declare module 'eslint-plugin-node/lib/util/import-target.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/util/import-target'>; -} -declare module 'eslint-plugin-node/lib/util/merge-visitors-in-place.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/util/merge-visitors-in-place'>; -} -declare module 'eslint-plugin-node/lib/util/strip-import-path-params.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/util/strip-import-path-params'>; -} -declare module 'eslint-plugin-node/lib/util/visit-import.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/util/visit-import'>; -} -declare module 'eslint-plugin-node/lib/util/visit-require.js' { - declare module.exports: $Exports<'eslint-plugin-node/lib/util/visit-require'>; -} diff --git a/flow-typed/npm/eslint-plugin-prettier_vx.x.x.js b/flow-typed/npm/eslint-plugin-prettier_vx.x.x.js deleted file mode 100644 index 003d6cb3..00000000 --- a/flow-typed/npm/eslint-plugin-prettier_vx.x.x.js +++ /dev/null @@ -1,32 +0,0 @@ -// flow-typed signature: 50f07c604c8d8a48073f53c3aa155221 -// flow-typed version: <>/eslint-plugin-prettier_v3.1.4/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'eslint-plugin-prettier' - * - * 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-prettier' { - 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-prettier/eslint-plugin-prettier' { - declare module.exports: any; -} - -// Filename aliases -declare module 'eslint-plugin-prettier/eslint-plugin-prettier.js' { - declare module.exports: $Exports<'eslint-plugin-prettier/eslint-plugin-prettier'>; -} diff --git a/flow-typed/npm/eslint-plugin-promise_vx.x.x.js b/flow-typed/npm/eslint-plugin-promise_vx.x.x.js deleted file mode 100644 index 5800d7a2..00000000 --- a/flow-typed/npm/eslint-plugin-promise_vx.x.x.js +++ /dev/null @@ -1,185 +0,0 @@ -// flow-typed signature: cc8394bb315044330079f7fcf9d7634f -// flow-typed version: <>/eslint-plugin-promise_v4.2.1/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'eslint-plugin-promise' - * - * 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-promise' { - 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-promise/rules/always-return' { - declare module.exports: any; -} - -declare module 'eslint-plugin-promise/rules/avoid-new' { - declare module.exports: any; -} - -declare module 'eslint-plugin-promise/rules/catch-or-return' { - declare module.exports: any; -} - -declare module 'eslint-plugin-promise/rules/lib/get-docs-url' { - declare module.exports: any; -} - -declare module 'eslint-plugin-promise/rules/lib/has-promise-callback' { - declare module.exports: any; -} - -declare module 'eslint-plugin-promise/rules/lib/is-callback' { - declare module.exports: any; -} - -declare module 'eslint-plugin-promise/rules/lib/is-inside-callback' { - declare module.exports: any; -} - -declare module 'eslint-plugin-promise/rules/lib/is-inside-promise' { - declare module.exports: any; -} - -declare module 'eslint-plugin-promise/rules/lib/is-named-callback' { - declare module.exports: any; -} - -declare module 'eslint-plugin-promise/rules/lib/is-promise' { - declare module.exports: any; -} - -declare module 'eslint-plugin-promise/rules/lib/promise-statics' { - declare module.exports: any; -} - -declare module 'eslint-plugin-promise/rules/no-callback-in-promise' { - declare module.exports: any; -} - -declare module 'eslint-plugin-promise/rules/no-native' { - declare module.exports: any; -} - -declare module 'eslint-plugin-promise/rules/no-nesting' { - declare module.exports: any; -} - -declare module 'eslint-plugin-promise/rules/no-new-statics' { - declare module.exports: any; -} - -declare module 'eslint-plugin-promise/rules/no-promise-in-callback' { - declare module.exports: any; -} - -declare module 'eslint-plugin-promise/rules/no-return-in-finally' { - declare module.exports: any; -} - -declare module 'eslint-plugin-promise/rules/no-return-wrap' { - declare module.exports: any; -} - -declare module 'eslint-plugin-promise/rules/param-names' { - declare module.exports: any; -} - -declare module 'eslint-plugin-promise/rules/prefer-await-to-callbacks' { - declare module.exports: any; -} - -declare module 'eslint-plugin-promise/rules/prefer-await-to-then' { - declare module.exports: any; -} - -declare module 'eslint-plugin-promise/rules/valid-params' { - declare module.exports: any; -} - -// Filename aliases -declare module 'eslint-plugin-promise/index' { - declare module.exports: $Exports<'eslint-plugin-promise'>; -} -declare module 'eslint-plugin-promise/index.js' { - declare module.exports: $Exports<'eslint-plugin-promise'>; -} -declare module 'eslint-plugin-promise/rules/always-return.js' { - declare module.exports: $Exports<'eslint-plugin-promise/rules/always-return'>; -} -declare module 'eslint-plugin-promise/rules/avoid-new.js' { - declare module.exports: $Exports<'eslint-plugin-promise/rules/avoid-new'>; -} -declare module 'eslint-plugin-promise/rules/catch-or-return.js' { - declare module.exports: $Exports<'eslint-plugin-promise/rules/catch-or-return'>; -} -declare module 'eslint-plugin-promise/rules/lib/get-docs-url.js' { - declare module.exports: $Exports<'eslint-plugin-promise/rules/lib/get-docs-url'>; -} -declare module 'eslint-plugin-promise/rules/lib/has-promise-callback.js' { - declare module.exports: $Exports<'eslint-plugin-promise/rules/lib/has-promise-callback'>; -} -declare module 'eslint-plugin-promise/rules/lib/is-callback.js' { - declare module.exports: $Exports<'eslint-plugin-promise/rules/lib/is-callback'>; -} -declare module 'eslint-plugin-promise/rules/lib/is-inside-callback.js' { - declare module.exports: $Exports<'eslint-plugin-promise/rules/lib/is-inside-callback'>; -} -declare module 'eslint-plugin-promise/rules/lib/is-inside-promise.js' { - declare module.exports: $Exports<'eslint-plugin-promise/rules/lib/is-inside-promise'>; -} -declare module 'eslint-plugin-promise/rules/lib/is-named-callback.js' { - declare module.exports: $Exports<'eslint-plugin-promise/rules/lib/is-named-callback'>; -} -declare module 'eslint-plugin-promise/rules/lib/is-promise.js' { - declare module.exports: $Exports<'eslint-plugin-promise/rules/lib/is-promise'>; -} -declare module 'eslint-plugin-promise/rules/lib/promise-statics.js' { - declare module.exports: $Exports<'eslint-plugin-promise/rules/lib/promise-statics'>; -} -declare module 'eslint-plugin-promise/rules/no-callback-in-promise.js' { - declare module.exports: $Exports<'eslint-plugin-promise/rules/no-callback-in-promise'>; -} -declare module 'eslint-plugin-promise/rules/no-native.js' { - declare module.exports: $Exports<'eslint-plugin-promise/rules/no-native'>; -} -declare module 'eslint-plugin-promise/rules/no-nesting.js' { - declare module.exports: $Exports<'eslint-plugin-promise/rules/no-nesting'>; -} -declare module 'eslint-plugin-promise/rules/no-new-statics.js' { - declare module.exports: $Exports<'eslint-plugin-promise/rules/no-new-statics'>; -} -declare module 'eslint-plugin-promise/rules/no-promise-in-callback.js' { - declare module.exports: $Exports<'eslint-plugin-promise/rules/no-promise-in-callback'>; -} -declare module 'eslint-plugin-promise/rules/no-return-in-finally.js' { - declare module.exports: $Exports<'eslint-plugin-promise/rules/no-return-in-finally'>; -} -declare module 'eslint-plugin-promise/rules/no-return-wrap.js' { - declare module.exports: $Exports<'eslint-plugin-promise/rules/no-return-wrap'>; -} -declare module 'eslint-plugin-promise/rules/param-names.js' { - declare module.exports: $Exports<'eslint-plugin-promise/rules/param-names'>; -} -declare module 'eslint-plugin-promise/rules/prefer-await-to-callbacks.js' { - declare module.exports: $Exports<'eslint-plugin-promise/rules/prefer-await-to-callbacks'>; -} -declare module 'eslint-plugin-promise/rules/prefer-await-to-then.js' { - declare module.exports: $Exports<'eslint-plugin-promise/rules/prefer-await-to-then'>; -} -declare module 'eslint-plugin-promise/rules/valid-params.js' { - declare module.exports: $Exports<'eslint-plugin-promise/rules/valid-params'>; -} diff --git a/flow-typed/npm/eslint-plugin-react-hooks_vx.x.x.js b/flow-typed/npm/eslint-plugin-react-hooks_vx.x.x.js deleted file mode 100644 index 8222decd..00000000 --- a/flow-typed/npm/eslint-plugin-react-hooks_vx.x.x.js +++ /dev/null @@ -1,45 +0,0 @@ -// flow-typed signature: bf14c4b4c3b4bd5e23c8e32f7e7a4274 -// flow-typed version: <>/eslint-plugin-react-hooks_v4.1.2/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'eslint-plugin-react-hooks' - * - * 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-hooks' { - 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-hooks/cjs/eslint-plugin-react-hooks.development' { - declare module.exports: any; -} - -declare module 'eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.production.min' { - declare module.exports: any; -} - -// Filename aliases -declare module 'eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development.js' { - declare module.exports: $Exports<'eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.development'>; -} -declare module 'eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.production.min.js' { - declare module.exports: $Exports<'eslint-plugin-react-hooks/cjs/eslint-plugin-react-hooks.production.min'>; -} -declare module 'eslint-plugin-react-hooks/index' { - declare module.exports: $Exports<'eslint-plugin-react-hooks'>; -} -declare module 'eslint-plugin-react-hooks/index.js' { - declare module.exports: $Exports<'eslint-plugin-react-hooks'>; -} diff --git a/flow-typed/npm/eslint-plugin-react_vx.x.x.js b/flow-typed/npm/eslint-plugin-react_vx.x.x.js deleted file mode 100644 index 95228827..00000000 --- a/flow-typed/npm/eslint-plugin-react_vx.x.x.js +++ /dev/null @@ -1,780 +0,0 @@ -// flow-typed signature: 50eb08249cc91be9f9fd43d45d126244 -// flow-typed version: <>/eslint-plugin-react_v7.21.4/flow_v0.135.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/function-component-definition' { - 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-script-url' { - 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-adjacent-inline-elements' { - 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/isFirstLetterCapitalized' { - 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/function-component-definition.js' { - declare module.exports: $Exports<'eslint-plugin-react/lib/rules/function-component-definition'>; -} -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-script-url.js' { - declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-no-script-url'>; -} -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-adjacent-inline-elements.js' { - declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-adjacent-inline-elements'>; -} -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/isFirstLetterCapitalized.js' { - declare module.exports: $Exports<'eslint-plugin-react/lib/util/isFirstLetterCapitalized'>; -} -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'>; -} diff --git a/flow-typed/npm/eslint-plugin-sonarjs_vx.x.x.js b/flow-typed/npm/eslint-plugin-sonarjs_vx.x.x.js deleted file mode 100644 index 75dba501..00000000 --- a/flow-typed/npm/eslint-plugin-sonarjs_vx.x.x.js +++ /dev/null @@ -1,252 +0,0 @@ -// flow-typed signature: 8ccce6c93c696e1107e70a82acb03125 -// flow-typed version: <>/eslint-plugin-sonarjs_v0.5.0/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'eslint-plugin-sonarjs' - * - * 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-sonarjs' { - 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-sonarjs/lib' { - declare module.exports: any; -} - -declare module 'eslint-plugin-sonarjs/lib/rules/cognitive-complexity' { - declare module.exports: any; -} - -declare module 'eslint-plugin-sonarjs/lib/rules/max-switch-cases' { - declare module.exports: any; -} - -declare module 'eslint-plugin-sonarjs/lib/rules/no-all-duplicated-branches' { - declare module.exports: any; -} - -declare module 'eslint-plugin-sonarjs/lib/rules/no-collapsible-if' { - declare module.exports: any; -} - -declare module 'eslint-plugin-sonarjs/lib/rules/no-collection-size-mischeck' { - declare module.exports: any; -} - -declare module 'eslint-plugin-sonarjs/lib/rules/no-duplicate-string' { - declare module.exports: any; -} - -declare module 'eslint-plugin-sonarjs/lib/rules/no-duplicated-branches' { - declare module.exports: any; -} - -declare module 'eslint-plugin-sonarjs/lib/rules/no-element-overwrite' { - declare module.exports: any; -} - -declare module 'eslint-plugin-sonarjs/lib/rules/no-extra-arguments' { - declare module.exports: any; -} - -declare module 'eslint-plugin-sonarjs/lib/rules/no-identical-conditions' { - declare module.exports: any; -} - -declare module 'eslint-plugin-sonarjs/lib/rules/no-identical-expressions' { - declare module.exports: any; -} - -declare module 'eslint-plugin-sonarjs/lib/rules/no-identical-functions' { - declare module.exports: any; -} - -declare module 'eslint-plugin-sonarjs/lib/rules/no-inverted-boolean-check' { - declare module.exports: any; -} - -declare module 'eslint-plugin-sonarjs/lib/rules/no-one-iteration-loop' { - declare module.exports: any; -} - -declare module 'eslint-plugin-sonarjs/lib/rules/no-redundant-boolean' { - declare module.exports: any; -} - -declare module 'eslint-plugin-sonarjs/lib/rules/no-redundant-jump' { - declare module.exports: any; -} - -declare module 'eslint-plugin-sonarjs/lib/rules/no-same-line-conditional' { - declare module.exports: any; -} - -declare module 'eslint-plugin-sonarjs/lib/rules/no-small-switch' { - declare module.exports: any; -} - -declare module 'eslint-plugin-sonarjs/lib/rules/no-unused-collection' { - declare module.exports: any; -} - -declare module 'eslint-plugin-sonarjs/lib/rules/no-use-of-empty-return-value' { - declare module.exports: any; -} - -declare module 'eslint-plugin-sonarjs/lib/rules/no-useless-catch' { - declare module.exports: any; -} - -declare module 'eslint-plugin-sonarjs/lib/rules/prefer-immediate-return' { - declare module.exports: any; -} - -declare module 'eslint-plugin-sonarjs/lib/rules/prefer-object-literal' { - declare module.exports: any; -} - -declare module 'eslint-plugin-sonarjs/lib/rules/prefer-single-boolean-return' { - declare module.exports: any; -} - -declare module 'eslint-plugin-sonarjs/lib/rules/prefer-while' { - declare module.exports: any; -} - -declare module 'eslint-plugin-sonarjs/lib/utils/collections' { - declare module.exports: any; -} - -declare module 'eslint-plugin-sonarjs/lib/utils/conditions' { - declare module.exports: any; -} - -declare module 'eslint-plugin-sonarjs/lib/utils/equivalence' { - declare module.exports: any; -} - -declare module 'eslint-plugin-sonarjs/lib/utils/locations' { - declare module.exports: any; -} - -declare module 'eslint-plugin-sonarjs/lib/utils/nodes' { - declare module.exports: any; -} - -declare module 'eslint-plugin-sonarjs/lib/utils/parser-services' { - declare module.exports: any; -} - -// Filename aliases -declare module 'eslint-plugin-sonarjs/lib/index' { - declare module.exports: $Exports<'eslint-plugin-sonarjs/lib'>; -} -declare module 'eslint-plugin-sonarjs/lib/index.js' { - declare module.exports: $Exports<'eslint-plugin-sonarjs/lib'>; -} -declare module 'eslint-plugin-sonarjs/lib/rules/cognitive-complexity.js' { - declare module.exports: $Exports<'eslint-plugin-sonarjs/lib/rules/cognitive-complexity'>; -} -declare module 'eslint-plugin-sonarjs/lib/rules/max-switch-cases.js' { - declare module.exports: $Exports<'eslint-plugin-sonarjs/lib/rules/max-switch-cases'>; -} -declare module 'eslint-plugin-sonarjs/lib/rules/no-all-duplicated-branches.js' { - declare module.exports: $Exports<'eslint-plugin-sonarjs/lib/rules/no-all-duplicated-branches'>; -} -declare module 'eslint-plugin-sonarjs/lib/rules/no-collapsible-if.js' { - declare module.exports: $Exports<'eslint-plugin-sonarjs/lib/rules/no-collapsible-if'>; -} -declare module 'eslint-plugin-sonarjs/lib/rules/no-collection-size-mischeck.js' { - declare module.exports: $Exports<'eslint-plugin-sonarjs/lib/rules/no-collection-size-mischeck'>; -} -declare module 'eslint-plugin-sonarjs/lib/rules/no-duplicate-string.js' { - declare module.exports: $Exports<'eslint-plugin-sonarjs/lib/rules/no-duplicate-string'>; -} -declare module 'eslint-plugin-sonarjs/lib/rules/no-duplicated-branches.js' { - declare module.exports: $Exports<'eslint-plugin-sonarjs/lib/rules/no-duplicated-branches'>; -} -declare module 'eslint-plugin-sonarjs/lib/rules/no-element-overwrite.js' { - declare module.exports: $Exports<'eslint-plugin-sonarjs/lib/rules/no-element-overwrite'>; -} -declare module 'eslint-plugin-sonarjs/lib/rules/no-extra-arguments.js' { - declare module.exports: $Exports<'eslint-plugin-sonarjs/lib/rules/no-extra-arguments'>; -} -declare module 'eslint-plugin-sonarjs/lib/rules/no-identical-conditions.js' { - declare module.exports: $Exports<'eslint-plugin-sonarjs/lib/rules/no-identical-conditions'>; -} -declare module 'eslint-plugin-sonarjs/lib/rules/no-identical-expressions.js' { - declare module.exports: $Exports<'eslint-plugin-sonarjs/lib/rules/no-identical-expressions'>; -} -declare module 'eslint-plugin-sonarjs/lib/rules/no-identical-functions.js' { - declare module.exports: $Exports<'eslint-plugin-sonarjs/lib/rules/no-identical-functions'>; -} -declare module 'eslint-plugin-sonarjs/lib/rules/no-inverted-boolean-check.js' { - declare module.exports: $Exports<'eslint-plugin-sonarjs/lib/rules/no-inverted-boolean-check'>; -} -declare module 'eslint-plugin-sonarjs/lib/rules/no-one-iteration-loop.js' { - declare module.exports: $Exports<'eslint-plugin-sonarjs/lib/rules/no-one-iteration-loop'>; -} -declare module 'eslint-plugin-sonarjs/lib/rules/no-redundant-boolean.js' { - declare module.exports: $Exports<'eslint-plugin-sonarjs/lib/rules/no-redundant-boolean'>; -} -declare module 'eslint-plugin-sonarjs/lib/rules/no-redundant-jump.js' { - declare module.exports: $Exports<'eslint-plugin-sonarjs/lib/rules/no-redundant-jump'>; -} -declare module 'eslint-plugin-sonarjs/lib/rules/no-same-line-conditional.js' { - declare module.exports: $Exports<'eslint-plugin-sonarjs/lib/rules/no-same-line-conditional'>; -} -declare module 'eslint-plugin-sonarjs/lib/rules/no-small-switch.js' { - declare module.exports: $Exports<'eslint-plugin-sonarjs/lib/rules/no-small-switch'>; -} -declare module 'eslint-plugin-sonarjs/lib/rules/no-unused-collection.js' { - declare module.exports: $Exports<'eslint-plugin-sonarjs/lib/rules/no-unused-collection'>; -} -declare module 'eslint-plugin-sonarjs/lib/rules/no-use-of-empty-return-value.js' { - declare module.exports: $Exports<'eslint-plugin-sonarjs/lib/rules/no-use-of-empty-return-value'>; -} -declare module 'eslint-plugin-sonarjs/lib/rules/no-useless-catch.js' { - declare module.exports: $Exports<'eslint-plugin-sonarjs/lib/rules/no-useless-catch'>; -} -declare module 'eslint-plugin-sonarjs/lib/rules/prefer-immediate-return.js' { - declare module.exports: $Exports<'eslint-plugin-sonarjs/lib/rules/prefer-immediate-return'>; -} -declare module 'eslint-plugin-sonarjs/lib/rules/prefer-object-literal.js' { - declare module.exports: $Exports<'eslint-plugin-sonarjs/lib/rules/prefer-object-literal'>; -} -declare module 'eslint-plugin-sonarjs/lib/rules/prefer-single-boolean-return.js' { - declare module.exports: $Exports<'eslint-plugin-sonarjs/lib/rules/prefer-single-boolean-return'>; -} -declare module 'eslint-plugin-sonarjs/lib/rules/prefer-while.js' { - declare module.exports: $Exports<'eslint-plugin-sonarjs/lib/rules/prefer-while'>; -} -declare module 'eslint-plugin-sonarjs/lib/utils/collections.js' { - declare module.exports: $Exports<'eslint-plugin-sonarjs/lib/utils/collections'>; -} -declare module 'eslint-plugin-sonarjs/lib/utils/conditions.js' { - declare module.exports: $Exports<'eslint-plugin-sonarjs/lib/utils/conditions'>; -} -declare module 'eslint-plugin-sonarjs/lib/utils/equivalence.js' { - declare module.exports: $Exports<'eslint-plugin-sonarjs/lib/utils/equivalence'>; -} -declare module 'eslint-plugin-sonarjs/lib/utils/locations.js' { - declare module.exports: $Exports<'eslint-plugin-sonarjs/lib/utils/locations'>; -} -declare module 'eslint-plugin-sonarjs/lib/utils/nodes.js' { - declare module.exports: $Exports<'eslint-plugin-sonarjs/lib/utils/nodes'>; -} -declare module 'eslint-plugin-sonarjs/lib/utils/parser-services.js' { - declare module.exports: $Exports<'eslint-plugin-sonarjs/lib/utils/parser-services'>; -} diff --git a/flow-typed/npm/eslint-plugin-standard_vx.x.x.js b/flow-typed/npm/eslint-plugin-standard_vx.x.x.js deleted file mode 100644 index b00c9f6f..00000000 --- a/flow-typed/npm/eslint-plugin-standard_vx.x.x.js +++ /dev/null @@ -1,59 +0,0 @@ -// flow-typed signature: b03a2038d119285e2fd065dbef68e42d -// flow-typed version: <>/eslint-plugin-standard_v4.0.1/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'eslint-plugin-standard' - * - * 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-standard' { - 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-standard/rules/array-bracket-even-spacing' { - declare module.exports: any; -} - -declare module 'eslint-plugin-standard/rules/computed-property-even-spacing' { - declare module.exports: any; -} - -declare module 'eslint-plugin-standard/rules/no-callback-literal' { - declare module.exports: any; -} - -declare module 'eslint-plugin-standard/rules/object-curly-even-spacing' { - declare module.exports: any; -} - -// Filename aliases -declare module 'eslint-plugin-standard/index' { - declare module.exports: $Exports<'eslint-plugin-standard'>; -} -declare module 'eslint-plugin-standard/index.js' { - declare module.exports: $Exports<'eslint-plugin-standard'>; -} -declare module 'eslint-plugin-standard/rules/array-bracket-even-spacing.js' { - declare module.exports: $Exports<'eslint-plugin-standard/rules/array-bracket-even-spacing'>; -} -declare module 'eslint-plugin-standard/rules/computed-property-even-spacing.js' { - declare module.exports: $Exports<'eslint-plugin-standard/rules/computed-property-even-spacing'>; -} -declare module 'eslint-plugin-standard/rules/no-callback-literal.js' { - declare module.exports: $Exports<'eslint-plugin-standard/rules/no-callback-literal'>; -} -declare module 'eslint-plugin-standard/rules/object-curly-even-spacing.js' { - declare module.exports: $Exports<'eslint-plugin-standard/rules/object-curly-even-spacing'>; -} diff --git a/flow-typed/npm/eslint-plugin-unicorn_vx.x.x.js b/flow-typed/npm/eslint-plugin-unicorn_vx.x.x.js deleted file mode 100644 index 6eed605b..00000000 --- a/flow-typed/npm/eslint-plugin-unicorn_vx.x.x.js +++ /dev/null @@ -1,633 +0,0 @@ -// flow-typed signature: c06e5458ad20ba8eaee2ef80ebe4303e -// flow-typed version: <>/eslint-plugin-unicorn_v22.0.0/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'eslint-plugin-unicorn' - * - * 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-unicorn' { - 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-unicorn/rules/better-regex' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/catch-error-name' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/consistent-function-scoping' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/custom-error-definition' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/error-message' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/escape-case' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/expiring-todo-comments' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/explicit-length-check' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/filename-case' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/import-index' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/import-style' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/new-for-builtins' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/no-abusive-eslint-disable' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/no-array-instanceof' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/no-console-spaces' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/no-fn-reference-in-iterator' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/no-for-loop' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/no-hex-escape' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/no-keyword-prefix' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/no-nested-ternary' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/no-new-buffer' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/no-null' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/no-object-as-default-parameter' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/no-process-exit' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/no-reduce' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/no-unreadable-array-destructuring' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/no-unsafe-regex' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/no-unused-properties' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/no-useless-undefined' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/no-zero-fractions' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/number-literal-case' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/prefer-add-event-listener' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/prefer-array-find' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/prefer-dataset' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/prefer-event-key' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/prefer-exponentiation-operator' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/prefer-flat-map' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/prefer-includes' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/prefer-modern-dom-apis' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/prefer-negative-index' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/prefer-node-append' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/prefer-node-remove' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/prefer-number-properties' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/prefer-optional-catch-binding' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/prefer-query-selector' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/prefer-reflect-apply' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/prefer-replace-all' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/prefer-set-has' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/prefer-spread' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/prefer-starts-ends-with' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/prefer-string-slice' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/prefer-text-content' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/prefer-trim-start-end' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/prefer-type-error' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/prevent-abbreviations' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/regex-shorthand' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/string-content' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/throw-new-error' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/utils/avoid-capture' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/utils/builtins' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/utils/cartesian-product-samples' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/utils/escape-template-element-raw' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/utils/get-documentation-url' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/utils/get-references' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/utils/get-variable-identifiers' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/utils/is-assignment-pattern-shorthand-property-identifier' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/utils/is-literal-value' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/utils/is-method-named' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/utils/is-object-method' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/utils/is-same-node' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/utils/is-shadowed' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/utils/is-shorthand-export-identifier' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/utils/is-shorthand-import-identifier' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/utils/is-shorthand-property-identifier' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/utils/is-valid-variable-name' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/utils/is-value-not-usable' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/utils/method-selector' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/utils/needs-semicolon' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/utils/not-dom-node' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/utils/not-function' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/utils/quote-string' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/utils/rename-identifier' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/utils/rename-variable' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/utils/replace-string-raw' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/utils/replace-template-element' { - declare module.exports: any; -} - -declare module 'eslint-plugin-unicorn/rules/utils/resolve-variable-name' { - declare module.exports: any; -} - -// Filename aliases -declare module 'eslint-plugin-unicorn/index' { - declare module.exports: $Exports<'eslint-plugin-unicorn'>; -} -declare module 'eslint-plugin-unicorn/index.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn'>; -} -declare module 'eslint-plugin-unicorn/rules/better-regex.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/better-regex'>; -} -declare module 'eslint-plugin-unicorn/rules/catch-error-name.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/catch-error-name'>; -} -declare module 'eslint-plugin-unicorn/rules/consistent-function-scoping.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/consistent-function-scoping'>; -} -declare module 'eslint-plugin-unicorn/rules/custom-error-definition.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/custom-error-definition'>; -} -declare module 'eslint-plugin-unicorn/rules/error-message.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/error-message'>; -} -declare module 'eslint-plugin-unicorn/rules/escape-case.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/escape-case'>; -} -declare module 'eslint-plugin-unicorn/rules/expiring-todo-comments.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/expiring-todo-comments'>; -} -declare module 'eslint-plugin-unicorn/rules/explicit-length-check.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/explicit-length-check'>; -} -declare module 'eslint-plugin-unicorn/rules/filename-case.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/filename-case'>; -} -declare module 'eslint-plugin-unicorn/rules/import-index.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/import-index'>; -} -declare module 'eslint-plugin-unicorn/rules/import-style.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/import-style'>; -} -declare module 'eslint-plugin-unicorn/rules/new-for-builtins.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/new-for-builtins'>; -} -declare module 'eslint-plugin-unicorn/rules/no-abusive-eslint-disable.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/no-abusive-eslint-disable'>; -} -declare module 'eslint-plugin-unicorn/rules/no-array-instanceof.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/no-array-instanceof'>; -} -declare module 'eslint-plugin-unicorn/rules/no-console-spaces.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/no-console-spaces'>; -} -declare module 'eslint-plugin-unicorn/rules/no-fn-reference-in-iterator.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/no-fn-reference-in-iterator'>; -} -declare module 'eslint-plugin-unicorn/rules/no-for-loop.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/no-for-loop'>; -} -declare module 'eslint-plugin-unicorn/rules/no-hex-escape.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/no-hex-escape'>; -} -declare module 'eslint-plugin-unicorn/rules/no-keyword-prefix.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/no-keyword-prefix'>; -} -declare module 'eslint-plugin-unicorn/rules/no-nested-ternary.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/no-nested-ternary'>; -} -declare module 'eslint-plugin-unicorn/rules/no-new-buffer.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/no-new-buffer'>; -} -declare module 'eslint-plugin-unicorn/rules/no-null.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/no-null'>; -} -declare module 'eslint-plugin-unicorn/rules/no-object-as-default-parameter.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/no-object-as-default-parameter'>; -} -declare module 'eslint-plugin-unicorn/rules/no-process-exit.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/no-process-exit'>; -} -declare module 'eslint-plugin-unicorn/rules/no-reduce.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/no-reduce'>; -} -declare module 'eslint-plugin-unicorn/rules/no-unreadable-array-destructuring.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/no-unreadable-array-destructuring'>; -} -declare module 'eslint-plugin-unicorn/rules/no-unsafe-regex.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/no-unsafe-regex'>; -} -declare module 'eslint-plugin-unicorn/rules/no-unused-properties.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/no-unused-properties'>; -} -declare module 'eslint-plugin-unicorn/rules/no-useless-undefined.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/no-useless-undefined'>; -} -declare module 'eslint-plugin-unicorn/rules/no-zero-fractions.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/no-zero-fractions'>; -} -declare module 'eslint-plugin-unicorn/rules/number-literal-case.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/number-literal-case'>; -} -declare module 'eslint-plugin-unicorn/rules/prefer-add-event-listener.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/prefer-add-event-listener'>; -} -declare module 'eslint-plugin-unicorn/rules/prefer-array-find.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/prefer-array-find'>; -} -declare module 'eslint-plugin-unicorn/rules/prefer-dataset.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/prefer-dataset'>; -} -declare module 'eslint-plugin-unicorn/rules/prefer-event-key.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/prefer-event-key'>; -} -declare module 'eslint-plugin-unicorn/rules/prefer-exponentiation-operator.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/prefer-exponentiation-operator'>; -} -declare module 'eslint-plugin-unicorn/rules/prefer-flat-map.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/prefer-flat-map'>; -} -declare module 'eslint-plugin-unicorn/rules/prefer-includes.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/prefer-includes'>; -} -declare module 'eslint-plugin-unicorn/rules/prefer-modern-dom-apis.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/prefer-modern-dom-apis'>; -} -declare module 'eslint-plugin-unicorn/rules/prefer-negative-index.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/prefer-negative-index'>; -} -declare module 'eslint-plugin-unicorn/rules/prefer-node-append.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/prefer-node-append'>; -} -declare module 'eslint-plugin-unicorn/rules/prefer-node-remove.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/prefer-node-remove'>; -} -declare module 'eslint-plugin-unicorn/rules/prefer-number-properties.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/prefer-number-properties'>; -} -declare module 'eslint-plugin-unicorn/rules/prefer-optional-catch-binding.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/prefer-optional-catch-binding'>; -} -declare module 'eslint-plugin-unicorn/rules/prefer-query-selector.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/prefer-query-selector'>; -} -declare module 'eslint-plugin-unicorn/rules/prefer-reflect-apply.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/prefer-reflect-apply'>; -} -declare module 'eslint-plugin-unicorn/rules/prefer-replace-all.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/prefer-replace-all'>; -} -declare module 'eslint-plugin-unicorn/rules/prefer-set-has.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/prefer-set-has'>; -} -declare module 'eslint-plugin-unicorn/rules/prefer-spread.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/prefer-spread'>; -} -declare module 'eslint-plugin-unicorn/rules/prefer-starts-ends-with.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/prefer-starts-ends-with'>; -} -declare module 'eslint-plugin-unicorn/rules/prefer-string-slice.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/prefer-string-slice'>; -} -declare module 'eslint-plugin-unicorn/rules/prefer-text-content.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/prefer-text-content'>; -} -declare module 'eslint-plugin-unicorn/rules/prefer-trim-start-end.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/prefer-trim-start-end'>; -} -declare module 'eslint-plugin-unicorn/rules/prefer-type-error.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/prefer-type-error'>; -} -declare module 'eslint-plugin-unicorn/rules/prevent-abbreviations.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/prevent-abbreviations'>; -} -declare module 'eslint-plugin-unicorn/rules/regex-shorthand.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/regex-shorthand'>; -} -declare module 'eslint-plugin-unicorn/rules/string-content.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/string-content'>; -} -declare module 'eslint-plugin-unicorn/rules/throw-new-error.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/throw-new-error'>; -} -declare module 'eslint-plugin-unicorn/rules/utils/avoid-capture.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/utils/avoid-capture'>; -} -declare module 'eslint-plugin-unicorn/rules/utils/builtins.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/utils/builtins'>; -} -declare module 'eslint-plugin-unicorn/rules/utils/cartesian-product-samples.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/utils/cartesian-product-samples'>; -} -declare module 'eslint-plugin-unicorn/rules/utils/escape-template-element-raw.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/utils/escape-template-element-raw'>; -} -declare module 'eslint-plugin-unicorn/rules/utils/get-documentation-url.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/utils/get-documentation-url'>; -} -declare module 'eslint-plugin-unicorn/rules/utils/get-references.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/utils/get-references'>; -} -declare module 'eslint-plugin-unicorn/rules/utils/get-variable-identifiers.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/utils/get-variable-identifiers'>; -} -declare module 'eslint-plugin-unicorn/rules/utils/is-assignment-pattern-shorthand-property-identifier.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/utils/is-assignment-pattern-shorthand-property-identifier'>; -} -declare module 'eslint-plugin-unicorn/rules/utils/is-literal-value.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/utils/is-literal-value'>; -} -declare module 'eslint-plugin-unicorn/rules/utils/is-method-named.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/utils/is-method-named'>; -} -declare module 'eslint-plugin-unicorn/rules/utils/is-object-method.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/utils/is-object-method'>; -} -declare module 'eslint-plugin-unicorn/rules/utils/is-same-node.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/utils/is-same-node'>; -} -declare module 'eslint-plugin-unicorn/rules/utils/is-shadowed.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/utils/is-shadowed'>; -} -declare module 'eslint-plugin-unicorn/rules/utils/is-shorthand-export-identifier.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/utils/is-shorthand-export-identifier'>; -} -declare module 'eslint-plugin-unicorn/rules/utils/is-shorthand-import-identifier.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/utils/is-shorthand-import-identifier'>; -} -declare module 'eslint-plugin-unicorn/rules/utils/is-shorthand-property-identifier.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/utils/is-shorthand-property-identifier'>; -} -declare module 'eslint-plugin-unicorn/rules/utils/is-valid-variable-name.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/utils/is-valid-variable-name'>; -} -declare module 'eslint-plugin-unicorn/rules/utils/is-value-not-usable.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/utils/is-value-not-usable'>; -} -declare module 'eslint-plugin-unicorn/rules/utils/method-selector.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/utils/method-selector'>; -} -declare module 'eslint-plugin-unicorn/rules/utils/needs-semicolon.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/utils/needs-semicolon'>; -} -declare module 'eslint-plugin-unicorn/rules/utils/not-dom-node.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/utils/not-dom-node'>; -} -declare module 'eslint-plugin-unicorn/rules/utils/not-function.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/utils/not-function'>; -} -declare module 'eslint-plugin-unicorn/rules/utils/quote-string.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/utils/quote-string'>; -} -declare module 'eslint-plugin-unicorn/rules/utils/rename-identifier.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/utils/rename-identifier'>; -} -declare module 'eslint-plugin-unicorn/rules/utils/rename-variable.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/utils/rename-variable'>; -} -declare module 'eslint-plugin-unicorn/rules/utils/replace-string-raw.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/utils/replace-string-raw'>; -} -declare module 'eslint-plugin-unicorn/rules/utils/replace-template-element.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/utils/replace-template-element'>; -} -declare module 'eslint-plugin-unicorn/rules/utils/resolve-variable-name.js' { - declare module.exports: $Exports<'eslint-plugin-unicorn/rules/utils/resolve-variable-name'>; -} diff --git a/flow-typed/npm/eslint_vx.x.x.js b/flow-typed/npm/eslint_vx.x.x.js deleted file mode 100644 index 2d1431c4..00000000 --- a/flow-typed/npm/eslint_vx.x.x.js +++ /dev/null @@ -1,2726 +0,0 @@ -// flow-typed signature: 2efc54ef17a00d35b61bcaaabdd1963a -// flow-typed version: <>/eslint_v^7.11.0/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * '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 '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 'eslint/bin/eslint' { - declare module.exports: any; -} - -declare module 'eslint/conf/config-schema' { - declare module.exports: any; -} - -declare module 'eslint/conf/default-cli-options' { - declare module.exports: any; -} - -declare module 'eslint/conf/eslint-all' { - declare module.exports: any; -} - -declare module 'eslint/conf/eslint-recommended' { - declare module.exports: any; -} - -declare module 'eslint/lib/api' { - declare module.exports: any; -} - -declare module 'eslint/lib/cli-engine/cascading-config-array-factory' { - declare module.exports: any; -} - -declare module 'eslint/lib/cli-engine/cli-engine' { - declare module.exports: any; -} - -declare module 'eslint/lib/cli-engine/config-array-factory' { - declare module.exports: any; -} - -declare module 'eslint/lib/cli-engine/config-array/config-array' { - declare module.exports: any; -} - -declare module 'eslint/lib/cli-engine/config-array/config-dependency' { - declare module.exports: any; -} - -declare module 'eslint/lib/cli-engine/config-array/extracted-config' { - declare module.exports: any; -} - -declare module 'eslint/lib/cli-engine/config-array/ignore-pattern' { - declare module.exports: any; -} - -declare module 'eslint/lib/cli-engine/config-array' { - declare module.exports: any; -} - -declare module 'eslint/lib/cli-engine/config-array/override-tester' { - declare module.exports: any; -} - -declare module 'eslint/lib/cli-engine/file-enumerator' { - declare module.exports: any; -} - -declare module 'eslint/lib/cli-engine/formatters/checkstyle' { - declare module.exports: any; -} - -declare module 'eslint/lib/cli-engine/formatters/codeframe' { - declare module.exports: any; -} - -declare module 'eslint/lib/cli-engine/formatters/compact' { - declare module.exports: any; -} - -declare module 'eslint/lib/cli-engine/formatters/html' { - declare module.exports: any; -} - -declare module 'eslint/lib/cli-engine/formatters/jslint-xml' { - declare module.exports: any; -} - -declare module 'eslint/lib/cli-engine/formatters/json-with-metadata' { - declare module.exports: any; -} - -declare module 'eslint/lib/cli-engine/formatters/json' { - declare module.exports: any; -} - -declare module 'eslint/lib/cli-engine/formatters/junit' { - declare module.exports: any; -} - -declare module 'eslint/lib/cli-engine/formatters/stylish' { - declare module.exports: any; -} - -declare module 'eslint/lib/cli-engine/formatters/table' { - declare module.exports: any; -} - -declare module 'eslint/lib/cli-engine/formatters/tap' { - declare module.exports: any; -} - -declare module 'eslint/lib/cli-engine/formatters/unix' { - declare module.exports: any; -} - -declare module 'eslint/lib/cli-engine/formatters/visualstudio' { - declare module.exports: any; -} - -declare module 'eslint/lib/cli-engine/hash' { - declare module.exports: any; -} - -declare module 'eslint/lib/cli-engine' { - declare module.exports: any; -} - -declare module 'eslint/lib/cli-engine/lint-result-cache' { - declare module.exports: any; -} - -declare module 'eslint/lib/cli-engine/load-rules' { - declare module.exports: any; -} - -declare module 'eslint/lib/cli-engine/xml-escape' { - declare module.exports: any; -} - -declare module 'eslint/lib/cli' { - declare module.exports: any; -} - -declare module 'eslint/lib/eslint/eslint' { - declare module.exports: any; -} - -declare module 'eslint/lib/eslint' { - declare module.exports: any; -} - -declare module 'eslint/lib/init/autoconfig' { - declare module.exports: any; -} - -declare module 'eslint/lib/init/config-file' { - declare module.exports: any; -} - -declare module 'eslint/lib/init/config-initializer' { - declare module.exports: any; -} - -declare module 'eslint/lib/init/config-rule' { - declare module.exports: any; -} - -declare module 'eslint/lib/init/npm-utils' { - declare module.exports: any; -} - -declare module 'eslint/lib/init/source-code-utils' { - declare module.exports: any; -} - -declare module 'eslint/lib/linter/apply-disable-directives' { - declare module.exports: any; -} - -declare module 'eslint/lib/linter/code-path-analysis/code-path-analyzer' { - declare module.exports: any; -} - -declare module 'eslint/lib/linter/code-path-analysis/code-path-segment' { - declare module.exports: any; -} - -declare module 'eslint/lib/linter/code-path-analysis/code-path-state' { - declare module.exports: any; -} - -declare module 'eslint/lib/linter/code-path-analysis/code-path' { - declare module.exports: any; -} - -declare module 'eslint/lib/linter/code-path-analysis/debug-helpers' { - declare module.exports: any; -} - -declare module 'eslint/lib/linter/code-path-analysis/fork-context' { - declare module.exports: any; -} - -declare module 'eslint/lib/linter/code-path-analysis/id-generator' { - declare module.exports: any; -} - -declare module 'eslint/lib/linter/config-comment-parser' { - declare module.exports: any; -} - -declare module 'eslint/lib/linter' { - declare module.exports: any; -} - -declare module 'eslint/lib/linter/interpolate' { - declare module.exports: any; -} - -declare module 'eslint/lib/linter/linter' { - declare module.exports: any; -} - -declare module 'eslint/lib/linter/node-event-generator' { - declare module.exports: any; -} - -declare module 'eslint/lib/linter/report-translator' { - declare module.exports: any; -} - -declare module 'eslint/lib/linter/rule-fixer' { - declare module.exports: any; -} - -declare module 'eslint/lib/linter/rules' { - declare module.exports: any; -} - -declare module 'eslint/lib/linter/safe-emitter' { - declare module.exports: any; -} - -declare module 'eslint/lib/linter/source-code-fixer' { - declare module.exports: any; -} - -declare module 'eslint/lib/linter/timing' { - declare module.exports: any; -} - -declare module 'eslint/lib/options' { - declare module.exports: any; -} - -declare module 'eslint/lib/rule-tester' { - declare module.exports: any; -} - -declare module 'eslint/lib/rule-tester/rule-tester' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/accessor-pairs' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/array-bracket-newline' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/array-bracket-spacing' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/array-callback-return' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/array-element-newline' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/arrow-body-style' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/arrow-parens' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/arrow-spacing' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/block-scoped-var' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/block-spacing' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/brace-style' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/callback-return' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/camelcase' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/capitalized-comments' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/class-methods-use-this' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/comma-dangle' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/comma-spacing' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/comma-style' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/complexity' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/computed-property-spacing' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/consistent-return' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/consistent-this' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/constructor-super' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/curly' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/default-case-last' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/default-case' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/default-param-last' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/dot-location' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/dot-notation' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/eol-last' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/eqeqeq' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/for-direction' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/func-call-spacing' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/func-name-matching' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/func-names' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/func-style' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/function-call-argument-newline' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/function-paren-newline' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/generator-star-spacing' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/getter-return' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/global-require' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/grouped-accessor-pairs' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/guard-for-in' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/handle-callback-err' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/id-blacklist' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/id-denylist' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/id-length' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/id-match' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/implicit-arrow-linebreak' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/indent-legacy' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/indent' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/init-declarations' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/jsx-quotes' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/key-spacing' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/keyword-spacing' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/line-comment-position' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/linebreak-style' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/lines-around-comment' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/lines-around-directive' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/lines-between-class-members' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/max-classes-per-file' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/max-depth' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/max-len' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/max-lines-per-function' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/max-lines' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/max-nested-callbacks' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/max-params' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/max-statements-per-line' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/max-statements' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/multiline-comment-style' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/multiline-ternary' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/new-cap' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/new-parens' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/newline-after-var' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/newline-before-return' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/newline-per-chained-call' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-alert' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-array-constructor' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-async-promise-executor' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-await-in-loop' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-bitwise' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-buffer-constructor' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-caller' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-case-declarations' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-catch-shadow' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-class-assign' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-compare-neg-zero' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-cond-assign' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-confusing-arrow' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-console' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-const-assign' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-constant-condition' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-constructor-return' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-continue' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-control-regex' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-debugger' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-delete-var' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-div-regex' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-dupe-args' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-dupe-class-members' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-dupe-else-if' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-dupe-keys' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-duplicate-case' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-duplicate-imports' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-else-return' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-empty-character-class' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-empty-function' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-empty-pattern' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-empty' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-eq-null' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-eval' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-ex-assign' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-extend-native' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-extra-bind' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-extra-boolean-cast' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-extra-label' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-extra-parens' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-extra-semi' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-fallthrough' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-floating-decimal' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-func-assign' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-global-assign' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-implicit-coercion' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-implicit-globals' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-implied-eval' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-import-assign' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-inline-comments' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-inner-declarations' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-invalid-regexp' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-invalid-this' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-irregular-whitespace' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-iterator' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-label-var' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-labels' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-lone-blocks' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-lonely-if' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-loop-func' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-loss-of-precision' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-magic-numbers' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-misleading-character-class' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-mixed-operators' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-mixed-requires' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-mixed-spaces-and-tabs' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-multi-assign' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-multi-spaces' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-multi-str' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-multiple-empty-lines' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-native-reassign' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-negated-condition' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-negated-in-lhs' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-nested-ternary' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-new-func' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-new-object' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-new-require' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-new-symbol' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-new-wrappers' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-new' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-obj-calls' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-octal-escape' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-octal' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-param-reassign' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-path-concat' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-plusplus' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-process-env' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-process-exit' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-promise-executor-return' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-proto' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-prototype-builtins' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-redeclare' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-regex-spaces' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-restricted-exports' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-restricted-globals' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-restricted-imports' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-restricted-modules' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-restricted-properties' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-restricted-syntax' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-return-assign' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-return-await' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-script-url' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-self-assign' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-self-compare' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-sequences' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-setter-return' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-shadow-restricted-names' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-shadow' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-spaced-func' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-sparse-arrays' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-sync' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-tabs' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-template-curly-in-string' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-ternary' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-this-before-super' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-throw-literal' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-trailing-spaces' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-undef-init' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-undef' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-undefined' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-underscore-dangle' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-unexpected-multiline' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-unmodified-loop-condition' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-unneeded-ternary' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-unreachable-loop' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-unreachable' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-unsafe-finally' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-unsafe-negation' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-unused-expressions' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-unused-labels' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-unused-vars' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-use-before-define' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-useless-backreference' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-useless-call' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-useless-catch' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-useless-computed-key' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-useless-concat' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-useless-constructor' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-useless-escape' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-useless-rename' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-useless-return' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-var' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-void' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-warning-comments' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-whitespace-before-property' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-with' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/nonblock-statement-body-position' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/object-curly-newline' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/object-curly-spacing' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/object-property-newline' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/object-shorthand' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/one-var-declaration-per-line' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/one-var' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/operator-assignment' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/operator-linebreak' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/padded-blocks' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/padding-line-between-statements' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/prefer-arrow-callback' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/prefer-const' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/prefer-destructuring' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/prefer-exponentiation-operator' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/prefer-named-capture-group' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/prefer-numeric-literals' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/prefer-object-spread' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/prefer-promise-reject-errors' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/prefer-reflect' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/prefer-regex-literals' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/prefer-rest-params' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/prefer-spread' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/prefer-template' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/quote-props' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/quotes' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/radix' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/require-atomic-updates' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/require-await' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/require-jsdoc' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/require-unicode-regexp' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/require-yield' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/rest-spread-spacing' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/semi-spacing' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/semi-style' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/semi' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/sort-imports' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/sort-keys' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/sort-vars' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/space-before-blocks' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/space-before-function-paren' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/space-in-parens' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/space-infix-ops' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/space-unary-ops' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/spaced-comment' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/strict' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/switch-colon-spacing' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/symbol-description' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/template-curly-spacing' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/template-tag-spacing' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/unicode-bom' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/use-isnan' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/utils/ast-utils' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/utils/fix-tracker' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/utils/keywords' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/utils/lazy-loading-rule-map' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/utils/patterns/letters' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/utils/unicode' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/utils/unicode/is-combining-character' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/utils/unicode/is-emoji-modifier' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/utils/unicode/is-regional-indicator-symbol' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/utils/unicode/is-surrogate-pair' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/valid-jsdoc' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/valid-typeof' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/vars-on-top' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/wrap-iife' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/wrap-regex' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/yield-star-spacing' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/yoda' { - declare module.exports: any; -} - -declare module 'eslint/lib/shared/ajv' { - declare module.exports: any; -} - -declare module 'eslint/lib/shared/ast-utils' { - declare module.exports: any; -} - -declare module 'eslint/lib/shared/config-validator' { - declare module.exports: any; -} - -declare module 'eslint/lib/shared/deprecation-warnings' { - declare module.exports: any; -} - -declare module 'eslint/lib/shared/logging' { - declare module.exports: any; -} - -declare module 'eslint/lib/shared/relative-module-resolver' { - declare module.exports: any; -} - -declare module 'eslint/lib/shared/runtime-info' { - declare module.exports: any; -} - -declare module 'eslint/lib/shared/traverser' { - declare module.exports: any; -} - -declare module 'eslint/lib/shared/types' { - declare module.exports: any; -} - -declare module 'eslint/lib/source-code' { - declare module.exports: any; -} - -declare module 'eslint/lib/source-code/source-code' { - declare module.exports: any; -} - -declare module 'eslint/lib/source-code/token-store/backward-token-comment-cursor' { - declare module.exports: any; -} - -declare module 'eslint/lib/source-code/token-store/backward-token-cursor' { - declare module.exports: any; -} - -declare module 'eslint/lib/source-code/token-store/cursor' { - declare module.exports: any; -} - -declare module 'eslint/lib/source-code/token-store/cursors' { - declare module.exports: any; -} - -declare module 'eslint/lib/source-code/token-store/decorative-cursor' { - declare module.exports: any; -} - -declare module 'eslint/lib/source-code/token-store/filter-cursor' { - declare module.exports: any; -} - -declare module 'eslint/lib/source-code/token-store/forward-token-comment-cursor' { - declare module.exports: any; -} - -declare module 'eslint/lib/source-code/token-store/forward-token-cursor' { - declare module.exports: any; -} - -declare module 'eslint/lib/source-code/token-store' { - declare module.exports: any; -} - -declare module 'eslint/lib/source-code/token-store/limit-cursor' { - declare module.exports: any; -} - -declare module 'eslint/lib/source-code/token-store/padded-token-cursor' { - declare module.exports: any; -} - -declare module 'eslint/lib/source-code/token-store/skip-cursor' { - declare module.exports: any; -} - -declare module 'eslint/lib/source-code/token-store/utils' { - declare module.exports: any; -} - -// Filename aliases -declare module 'eslint/bin/eslint.js' { - declare module.exports: $Exports<'eslint/bin/eslint'>; -} -declare module 'eslint/conf/config-schema.js' { - declare module.exports: $Exports<'eslint/conf/config-schema'>; -} -declare module 'eslint/conf/default-cli-options.js' { - declare module.exports: $Exports<'eslint/conf/default-cli-options'>; -} -declare module 'eslint/conf/eslint-all.js' { - declare module.exports: $Exports<'eslint/conf/eslint-all'>; -} -declare module 'eslint/conf/eslint-recommended.js' { - declare module.exports: $Exports<'eslint/conf/eslint-recommended'>; -} -declare module 'eslint/lib/api.js' { - declare module.exports: $Exports<'eslint/lib/api'>; -} -declare module 'eslint/lib/cli-engine/cascading-config-array-factory.js' { - declare module.exports: $Exports<'eslint/lib/cli-engine/cascading-config-array-factory'>; -} -declare module 'eslint/lib/cli-engine/cli-engine.js' { - declare module.exports: $Exports<'eslint/lib/cli-engine/cli-engine'>; -} -declare module 'eslint/lib/cli-engine/config-array-factory.js' { - declare module.exports: $Exports<'eslint/lib/cli-engine/config-array-factory'>; -} -declare module 'eslint/lib/cli-engine/config-array/config-array.js' { - declare module.exports: $Exports<'eslint/lib/cli-engine/config-array/config-array'>; -} -declare module 'eslint/lib/cli-engine/config-array/config-dependency.js' { - declare module.exports: $Exports<'eslint/lib/cli-engine/config-array/config-dependency'>; -} -declare module 'eslint/lib/cli-engine/config-array/extracted-config.js' { - declare module.exports: $Exports<'eslint/lib/cli-engine/config-array/extracted-config'>; -} -declare module 'eslint/lib/cli-engine/config-array/ignore-pattern.js' { - declare module.exports: $Exports<'eslint/lib/cli-engine/config-array/ignore-pattern'>; -} -declare module 'eslint/lib/cli-engine/config-array/index' { - declare module.exports: $Exports<'eslint/lib/cli-engine/config-array'>; -} -declare module 'eslint/lib/cli-engine/config-array/index.js' { - declare module.exports: $Exports<'eslint/lib/cli-engine/config-array'>; -} -declare module 'eslint/lib/cli-engine/config-array/override-tester.js' { - declare module.exports: $Exports<'eslint/lib/cli-engine/config-array/override-tester'>; -} -declare module 'eslint/lib/cli-engine/file-enumerator.js' { - declare module.exports: $Exports<'eslint/lib/cli-engine/file-enumerator'>; -} -declare module 'eslint/lib/cli-engine/formatters/checkstyle.js' { - declare module.exports: $Exports<'eslint/lib/cli-engine/formatters/checkstyle'>; -} -declare module 'eslint/lib/cli-engine/formatters/codeframe.js' { - declare module.exports: $Exports<'eslint/lib/cli-engine/formatters/codeframe'>; -} -declare module 'eslint/lib/cli-engine/formatters/compact.js' { - declare module.exports: $Exports<'eslint/lib/cli-engine/formatters/compact'>; -} -declare module 'eslint/lib/cli-engine/formatters/html.js' { - declare module.exports: $Exports<'eslint/lib/cli-engine/formatters/html'>; -} -declare module 'eslint/lib/cli-engine/formatters/jslint-xml.js' { - declare module.exports: $Exports<'eslint/lib/cli-engine/formatters/jslint-xml'>; -} -declare module 'eslint/lib/cli-engine/formatters/json-with-metadata.js' { - declare module.exports: $Exports<'eslint/lib/cli-engine/formatters/json-with-metadata'>; -} -declare module 'eslint/lib/cli-engine/formatters/json.js' { - declare module.exports: $Exports<'eslint/lib/cli-engine/formatters/json'>; -} -declare module 'eslint/lib/cli-engine/formatters/junit.js' { - declare module.exports: $Exports<'eslint/lib/cli-engine/formatters/junit'>; -} -declare module 'eslint/lib/cli-engine/formatters/stylish.js' { - declare module.exports: $Exports<'eslint/lib/cli-engine/formatters/stylish'>; -} -declare module 'eslint/lib/cli-engine/formatters/table.js' { - declare module.exports: $Exports<'eslint/lib/cli-engine/formatters/table'>; -} -declare module 'eslint/lib/cli-engine/formatters/tap.js' { - declare module.exports: $Exports<'eslint/lib/cli-engine/formatters/tap'>; -} -declare module 'eslint/lib/cli-engine/formatters/unix.js' { - declare module.exports: $Exports<'eslint/lib/cli-engine/formatters/unix'>; -} -declare module 'eslint/lib/cli-engine/formatters/visualstudio.js' { - declare module.exports: $Exports<'eslint/lib/cli-engine/formatters/visualstudio'>; -} -declare module 'eslint/lib/cli-engine/hash.js' { - declare module.exports: $Exports<'eslint/lib/cli-engine/hash'>; -} -declare module 'eslint/lib/cli-engine/index' { - declare module.exports: $Exports<'eslint/lib/cli-engine'>; -} -declare module 'eslint/lib/cli-engine/index.js' { - declare module.exports: $Exports<'eslint/lib/cli-engine'>; -} -declare module 'eslint/lib/cli-engine/lint-result-cache.js' { - declare module.exports: $Exports<'eslint/lib/cli-engine/lint-result-cache'>; -} -declare module 'eslint/lib/cli-engine/load-rules.js' { - declare module.exports: $Exports<'eslint/lib/cli-engine/load-rules'>; -} -declare module 'eslint/lib/cli-engine/xml-escape.js' { - declare module.exports: $Exports<'eslint/lib/cli-engine/xml-escape'>; -} -declare module 'eslint/lib/cli.js' { - declare module.exports: $Exports<'eslint/lib/cli'>; -} -declare module 'eslint/lib/eslint/eslint.js' { - declare module.exports: $Exports<'eslint/lib/eslint/eslint'>; -} -declare module 'eslint/lib/eslint/index' { - declare module.exports: $Exports<'eslint/lib/eslint'>; -} -declare module 'eslint/lib/eslint/index.js' { - declare module.exports: $Exports<'eslint/lib/eslint'>; -} -declare module 'eslint/lib/init/autoconfig.js' { - declare module.exports: $Exports<'eslint/lib/init/autoconfig'>; -} -declare module 'eslint/lib/init/config-file.js' { - declare module.exports: $Exports<'eslint/lib/init/config-file'>; -} -declare module 'eslint/lib/init/config-initializer.js' { - declare module.exports: $Exports<'eslint/lib/init/config-initializer'>; -} -declare module 'eslint/lib/init/config-rule.js' { - declare module.exports: $Exports<'eslint/lib/init/config-rule'>; -} -declare module 'eslint/lib/init/npm-utils.js' { - declare module.exports: $Exports<'eslint/lib/init/npm-utils'>; -} -declare module 'eslint/lib/init/source-code-utils.js' { - declare module.exports: $Exports<'eslint/lib/init/source-code-utils'>; -} -declare module 'eslint/lib/linter/apply-disable-directives.js' { - declare module.exports: $Exports<'eslint/lib/linter/apply-disable-directives'>; -} -declare module 'eslint/lib/linter/code-path-analysis/code-path-analyzer.js' { - declare module.exports: $Exports<'eslint/lib/linter/code-path-analysis/code-path-analyzer'>; -} -declare module 'eslint/lib/linter/code-path-analysis/code-path-segment.js' { - declare module.exports: $Exports<'eslint/lib/linter/code-path-analysis/code-path-segment'>; -} -declare module 'eslint/lib/linter/code-path-analysis/code-path-state.js' { - declare module.exports: $Exports<'eslint/lib/linter/code-path-analysis/code-path-state'>; -} -declare module 'eslint/lib/linter/code-path-analysis/code-path.js' { - declare module.exports: $Exports<'eslint/lib/linter/code-path-analysis/code-path'>; -} -declare module 'eslint/lib/linter/code-path-analysis/debug-helpers.js' { - declare module.exports: $Exports<'eslint/lib/linter/code-path-analysis/debug-helpers'>; -} -declare module 'eslint/lib/linter/code-path-analysis/fork-context.js' { - declare module.exports: $Exports<'eslint/lib/linter/code-path-analysis/fork-context'>; -} -declare module 'eslint/lib/linter/code-path-analysis/id-generator.js' { - declare module.exports: $Exports<'eslint/lib/linter/code-path-analysis/id-generator'>; -} -declare module 'eslint/lib/linter/config-comment-parser.js' { - declare module.exports: $Exports<'eslint/lib/linter/config-comment-parser'>; -} -declare module 'eslint/lib/linter/index' { - declare module.exports: $Exports<'eslint/lib/linter'>; -} -declare module 'eslint/lib/linter/index.js' { - declare module.exports: $Exports<'eslint/lib/linter'>; -} -declare module 'eslint/lib/linter/interpolate.js' { - declare module.exports: $Exports<'eslint/lib/linter/interpolate'>; -} -declare module 'eslint/lib/linter/linter.js' { - declare module.exports: $Exports<'eslint/lib/linter/linter'>; -} -declare module 'eslint/lib/linter/node-event-generator.js' { - declare module.exports: $Exports<'eslint/lib/linter/node-event-generator'>; -} -declare module 'eslint/lib/linter/report-translator.js' { - declare module.exports: $Exports<'eslint/lib/linter/report-translator'>; -} -declare module 'eslint/lib/linter/rule-fixer.js' { - declare module.exports: $Exports<'eslint/lib/linter/rule-fixer'>; -} -declare module 'eslint/lib/linter/rules.js' { - declare module.exports: $Exports<'eslint/lib/linter/rules'>; -} -declare module 'eslint/lib/linter/safe-emitter.js' { - declare module.exports: $Exports<'eslint/lib/linter/safe-emitter'>; -} -declare module 'eslint/lib/linter/source-code-fixer.js' { - declare module.exports: $Exports<'eslint/lib/linter/source-code-fixer'>; -} -declare module 'eslint/lib/linter/timing.js' { - declare module.exports: $Exports<'eslint/lib/linter/timing'>; -} -declare module 'eslint/lib/options.js' { - declare module.exports: $Exports<'eslint/lib/options'>; -} -declare module 'eslint/lib/rule-tester/index' { - declare module.exports: $Exports<'eslint/lib/rule-tester'>; -} -declare module 'eslint/lib/rule-tester/index.js' { - declare module.exports: $Exports<'eslint/lib/rule-tester'>; -} -declare module 'eslint/lib/rule-tester/rule-tester.js' { - declare module.exports: $Exports<'eslint/lib/rule-tester/rule-tester'>; -} -declare module 'eslint/lib/rules/accessor-pairs.js' { - declare module.exports: $Exports<'eslint/lib/rules/accessor-pairs'>; -} -declare module 'eslint/lib/rules/array-bracket-newline.js' { - declare module.exports: $Exports<'eslint/lib/rules/array-bracket-newline'>; -} -declare module 'eslint/lib/rules/array-bracket-spacing.js' { - declare module.exports: $Exports<'eslint/lib/rules/array-bracket-spacing'>; -} -declare module 'eslint/lib/rules/array-callback-return.js' { - declare module.exports: $Exports<'eslint/lib/rules/array-callback-return'>; -} -declare module 'eslint/lib/rules/array-element-newline.js' { - declare module.exports: $Exports<'eslint/lib/rules/array-element-newline'>; -} -declare module 'eslint/lib/rules/arrow-body-style.js' { - declare module.exports: $Exports<'eslint/lib/rules/arrow-body-style'>; -} -declare module 'eslint/lib/rules/arrow-parens.js' { - declare module.exports: $Exports<'eslint/lib/rules/arrow-parens'>; -} -declare module 'eslint/lib/rules/arrow-spacing.js' { - declare module.exports: $Exports<'eslint/lib/rules/arrow-spacing'>; -} -declare module 'eslint/lib/rules/block-scoped-var.js' { - declare module.exports: $Exports<'eslint/lib/rules/block-scoped-var'>; -} -declare module 'eslint/lib/rules/block-spacing.js' { - declare module.exports: $Exports<'eslint/lib/rules/block-spacing'>; -} -declare module 'eslint/lib/rules/brace-style.js' { - declare module.exports: $Exports<'eslint/lib/rules/brace-style'>; -} -declare module 'eslint/lib/rules/callback-return.js' { - declare module.exports: $Exports<'eslint/lib/rules/callback-return'>; -} -declare module 'eslint/lib/rules/camelcase.js' { - declare module.exports: $Exports<'eslint/lib/rules/camelcase'>; -} -declare module 'eslint/lib/rules/capitalized-comments.js' { - declare module.exports: $Exports<'eslint/lib/rules/capitalized-comments'>; -} -declare module 'eslint/lib/rules/class-methods-use-this.js' { - declare module.exports: $Exports<'eslint/lib/rules/class-methods-use-this'>; -} -declare module 'eslint/lib/rules/comma-dangle.js' { - declare module.exports: $Exports<'eslint/lib/rules/comma-dangle'>; -} -declare module 'eslint/lib/rules/comma-spacing.js' { - declare module.exports: $Exports<'eslint/lib/rules/comma-spacing'>; -} -declare module 'eslint/lib/rules/comma-style.js' { - declare module.exports: $Exports<'eslint/lib/rules/comma-style'>; -} -declare module 'eslint/lib/rules/complexity.js' { - declare module.exports: $Exports<'eslint/lib/rules/complexity'>; -} -declare module 'eslint/lib/rules/computed-property-spacing.js' { - declare module.exports: $Exports<'eslint/lib/rules/computed-property-spacing'>; -} -declare module 'eslint/lib/rules/consistent-return.js' { - declare module.exports: $Exports<'eslint/lib/rules/consistent-return'>; -} -declare module 'eslint/lib/rules/consistent-this.js' { - declare module.exports: $Exports<'eslint/lib/rules/consistent-this'>; -} -declare module 'eslint/lib/rules/constructor-super.js' { - declare module.exports: $Exports<'eslint/lib/rules/constructor-super'>; -} -declare module 'eslint/lib/rules/curly.js' { - declare module.exports: $Exports<'eslint/lib/rules/curly'>; -} -declare module 'eslint/lib/rules/default-case-last.js' { - declare module.exports: $Exports<'eslint/lib/rules/default-case-last'>; -} -declare module 'eslint/lib/rules/default-case.js' { - declare module.exports: $Exports<'eslint/lib/rules/default-case'>; -} -declare module 'eslint/lib/rules/default-param-last.js' { - declare module.exports: $Exports<'eslint/lib/rules/default-param-last'>; -} -declare module 'eslint/lib/rules/dot-location.js' { - declare module.exports: $Exports<'eslint/lib/rules/dot-location'>; -} -declare module 'eslint/lib/rules/dot-notation.js' { - declare module.exports: $Exports<'eslint/lib/rules/dot-notation'>; -} -declare module 'eslint/lib/rules/eol-last.js' { - declare module.exports: $Exports<'eslint/lib/rules/eol-last'>; -} -declare module 'eslint/lib/rules/eqeqeq.js' { - declare module.exports: $Exports<'eslint/lib/rules/eqeqeq'>; -} -declare module 'eslint/lib/rules/for-direction.js' { - declare module.exports: $Exports<'eslint/lib/rules/for-direction'>; -} -declare module 'eslint/lib/rules/func-call-spacing.js' { - declare module.exports: $Exports<'eslint/lib/rules/func-call-spacing'>; -} -declare module 'eslint/lib/rules/func-name-matching.js' { - declare module.exports: $Exports<'eslint/lib/rules/func-name-matching'>; -} -declare module 'eslint/lib/rules/func-names.js' { - declare module.exports: $Exports<'eslint/lib/rules/func-names'>; -} -declare module 'eslint/lib/rules/func-style.js' { - declare module.exports: $Exports<'eslint/lib/rules/func-style'>; -} -declare module 'eslint/lib/rules/function-call-argument-newline.js' { - declare module.exports: $Exports<'eslint/lib/rules/function-call-argument-newline'>; -} -declare module 'eslint/lib/rules/function-paren-newline.js' { - declare module.exports: $Exports<'eslint/lib/rules/function-paren-newline'>; -} -declare module 'eslint/lib/rules/generator-star-spacing.js' { - declare module.exports: $Exports<'eslint/lib/rules/generator-star-spacing'>; -} -declare module 'eslint/lib/rules/getter-return.js' { - declare module.exports: $Exports<'eslint/lib/rules/getter-return'>; -} -declare module 'eslint/lib/rules/global-require.js' { - declare module.exports: $Exports<'eslint/lib/rules/global-require'>; -} -declare module 'eslint/lib/rules/grouped-accessor-pairs.js' { - declare module.exports: $Exports<'eslint/lib/rules/grouped-accessor-pairs'>; -} -declare module 'eslint/lib/rules/guard-for-in.js' { - declare module.exports: $Exports<'eslint/lib/rules/guard-for-in'>; -} -declare module 'eslint/lib/rules/handle-callback-err.js' { - declare module.exports: $Exports<'eslint/lib/rules/handle-callback-err'>; -} -declare module 'eslint/lib/rules/id-blacklist.js' { - declare module.exports: $Exports<'eslint/lib/rules/id-blacklist'>; -} -declare module 'eslint/lib/rules/id-denylist.js' { - declare module.exports: $Exports<'eslint/lib/rules/id-denylist'>; -} -declare module 'eslint/lib/rules/id-length.js' { - declare module.exports: $Exports<'eslint/lib/rules/id-length'>; -} -declare module 'eslint/lib/rules/id-match.js' { - declare module.exports: $Exports<'eslint/lib/rules/id-match'>; -} -declare module 'eslint/lib/rules/implicit-arrow-linebreak.js' { - declare module.exports: $Exports<'eslint/lib/rules/implicit-arrow-linebreak'>; -} -declare module 'eslint/lib/rules/indent-legacy.js' { - declare module.exports: $Exports<'eslint/lib/rules/indent-legacy'>; -} -declare module 'eslint/lib/rules/indent.js' { - declare module.exports: $Exports<'eslint/lib/rules/indent'>; -} -declare module 'eslint/lib/rules/index' { - declare module.exports: $Exports<'eslint/lib/rules'>; -} -declare module 'eslint/lib/rules/index.js' { - declare module.exports: $Exports<'eslint/lib/rules'>; -} -declare module 'eslint/lib/rules/init-declarations.js' { - declare module.exports: $Exports<'eslint/lib/rules/init-declarations'>; -} -declare module 'eslint/lib/rules/jsx-quotes.js' { - declare module.exports: $Exports<'eslint/lib/rules/jsx-quotes'>; -} -declare module 'eslint/lib/rules/key-spacing.js' { - declare module.exports: $Exports<'eslint/lib/rules/key-spacing'>; -} -declare module 'eslint/lib/rules/keyword-spacing.js' { - declare module.exports: $Exports<'eslint/lib/rules/keyword-spacing'>; -} -declare module 'eslint/lib/rules/line-comment-position.js' { - declare module.exports: $Exports<'eslint/lib/rules/line-comment-position'>; -} -declare module 'eslint/lib/rules/linebreak-style.js' { - declare module.exports: $Exports<'eslint/lib/rules/linebreak-style'>; -} -declare module 'eslint/lib/rules/lines-around-comment.js' { - declare module.exports: $Exports<'eslint/lib/rules/lines-around-comment'>; -} -declare module 'eslint/lib/rules/lines-around-directive.js' { - declare module.exports: $Exports<'eslint/lib/rules/lines-around-directive'>; -} -declare module 'eslint/lib/rules/lines-between-class-members.js' { - declare module.exports: $Exports<'eslint/lib/rules/lines-between-class-members'>; -} -declare module 'eslint/lib/rules/max-classes-per-file.js' { - declare module.exports: $Exports<'eslint/lib/rules/max-classes-per-file'>; -} -declare module 'eslint/lib/rules/max-depth.js' { - declare module.exports: $Exports<'eslint/lib/rules/max-depth'>; -} -declare module 'eslint/lib/rules/max-len.js' { - declare module.exports: $Exports<'eslint/lib/rules/max-len'>; -} -declare module 'eslint/lib/rules/max-lines-per-function.js' { - declare module.exports: $Exports<'eslint/lib/rules/max-lines-per-function'>; -} -declare module 'eslint/lib/rules/max-lines.js' { - declare module.exports: $Exports<'eslint/lib/rules/max-lines'>; -} -declare module 'eslint/lib/rules/max-nested-callbacks.js' { - declare module.exports: $Exports<'eslint/lib/rules/max-nested-callbacks'>; -} -declare module 'eslint/lib/rules/max-params.js' { - declare module.exports: $Exports<'eslint/lib/rules/max-params'>; -} -declare module 'eslint/lib/rules/max-statements-per-line.js' { - declare module.exports: $Exports<'eslint/lib/rules/max-statements-per-line'>; -} -declare module 'eslint/lib/rules/max-statements.js' { - declare module.exports: $Exports<'eslint/lib/rules/max-statements'>; -} -declare module 'eslint/lib/rules/multiline-comment-style.js' { - declare module.exports: $Exports<'eslint/lib/rules/multiline-comment-style'>; -} -declare module 'eslint/lib/rules/multiline-ternary.js' { - declare module.exports: $Exports<'eslint/lib/rules/multiline-ternary'>; -} -declare module 'eslint/lib/rules/new-cap.js' { - declare module.exports: $Exports<'eslint/lib/rules/new-cap'>; -} -declare module 'eslint/lib/rules/new-parens.js' { - declare module.exports: $Exports<'eslint/lib/rules/new-parens'>; -} -declare module 'eslint/lib/rules/newline-after-var.js' { - declare module.exports: $Exports<'eslint/lib/rules/newline-after-var'>; -} -declare module 'eslint/lib/rules/newline-before-return.js' { - declare module.exports: $Exports<'eslint/lib/rules/newline-before-return'>; -} -declare module 'eslint/lib/rules/newline-per-chained-call.js' { - declare module.exports: $Exports<'eslint/lib/rules/newline-per-chained-call'>; -} -declare module 'eslint/lib/rules/no-alert.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-alert'>; -} -declare module 'eslint/lib/rules/no-array-constructor.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-array-constructor'>; -} -declare module 'eslint/lib/rules/no-async-promise-executor.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-async-promise-executor'>; -} -declare module 'eslint/lib/rules/no-await-in-loop.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-await-in-loop'>; -} -declare module 'eslint/lib/rules/no-bitwise.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-bitwise'>; -} -declare module 'eslint/lib/rules/no-buffer-constructor.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-buffer-constructor'>; -} -declare module 'eslint/lib/rules/no-caller.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-caller'>; -} -declare module 'eslint/lib/rules/no-case-declarations.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-case-declarations'>; -} -declare module 'eslint/lib/rules/no-catch-shadow.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-catch-shadow'>; -} -declare module 'eslint/lib/rules/no-class-assign.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-class-assign'>; -} -declare module 'eslint/lib/rules/no-compare-neg-zero.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-compare-neg-zero'>; -} -declare module 'eslint/lib/rules/no-cond-assign.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-cond-assign'>; -} -declare module 'eslint/lib/rules/no-confusing-arrow.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-confusing-arrow'>; -} -declare module 'eslint/lib/rules/no-console.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-console'>; -} -declare module 'eslint/lib/rules/no-const-assign.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-const-assign'>; -} -declare module 'eslint/lib/rules/no-constant-condition.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-constant-condition'>; -} -declare module 'eslint/lib/rules/no-constructor-return.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-constructor-return'>; -} -declare module 'eslint/lib/rules/no-continue.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-continue'>; -} -declare module 'eslint/lib/rules/no-control-regex.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-control-regex'>; -} -declare module 'eslint/lib/rules/no-debugger.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-debugger'>; -} -declare module 'eslint/lib/rules/no-delete-var.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-delete-var'>; -} -declare module 'eslint/lib/rules/no-div-regex.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-div-regex'>; -} -declare module 'eslint/lib/rules/no-dupe-args.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-dupe-args'>; -} -declare module 'eslint/lib/rules/no-dupe-class-members.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-dupe-class-members'>; -} -declare module 'eslint/lib/rules/no-dupe-else-if.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-dupe-else-if'>; -} -declare module 'eslint/lib/rules/no-dupe-keys.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-dupe-keys'>; -} -declare module 'eslint/lib/rules/no-duplicate-case.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-duplicate-case'>; -} -declare module 'eslint/lib/rules/no-duplicate-imports.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-duplicate-imports'>; -} -declare module 'eslint/lib/rules/no-else-return.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-else-return'>; -} -declare module 'eslint/lib/rules/no-empty-character-class.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-empty-character-class'>; -} -declare module 'eslint/lib/rules/no-empty-function.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-empty-function'>; -} -declare module 'eslint/lib/rules/no-empty-pattern.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-empty-pattern'>; -} -declare module 'eslint/lib/rules/no-empty.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-empty'>; -} -declare module 'eslint/lib/rules/no-eq-null.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-eq-null'>; -} -declare module 'eslint/lib/rules/no-eval.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-eval'>; -} -declare module 'eslint/lib/rules/no-ex-assign.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-ex-assign'>; -} -declare module 'eslint/lib/rules/no-extend-native.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-extend-native'>; -} -declare module 'eslint/lib/rules/no-extra-bind.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-extra-bind'>; -} -declare module 'eslint/lib/rules/no-extra-boolean-cast.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-extra-boolean-cast'>; -} -declare module 'eslint/lib/rules/no-extra-label.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-extra-label'>; -} -declare module 'eslint/lib/rules/no-extra-parens.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-extra-parens'>; -} -declare module 'eslint/lib/rules/no-extra-semi.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-extra-semi'>; -} -declare module 'eslint/lib/rules/no-fallthrough.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-fallthrough'>; -} -declare module 'eslint/lib/rules/no-floating-decimal.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-floating-decimal'>; -} -declare module 'eslint/lib/rules/no-func-assign.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-func-assign'>; -} -declare module 'eslint/lib/rules/no-global-assign.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-global-assign'>; -} -declare module 'eslint/lib/rules/no-implicit-coercion.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-implicit-coercion'>; -} -declare module 'eslint/lib/rules/no-implicit-globals.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-implicit-globals'>; -} -declare module 'eslint/lib/rules/no-implied-eval.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-implied-eval'>; -} -declare module 'eslint/lib/rules/no-import-assign.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-import-assign'>; -} -declare module 'eslint/lib/rules/no-inline-comments.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-inline-comments'>; -} -declare module 'eslint/lib/rules/no-inner-declarations.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-inner-declarations'>; -} -declare module 'eslint/lib/rules/no-invalid-regexp.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-invalid-regexp'>; -} -declare module 'eslint/lib/rules/no-invalid-this.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-invalid-this'>; -} -declare module 'eslint/lib/rules/no-irregular-whitespace.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-irregular-whitespace'>; -} -declare module 'eslint/lib/rules/no-iterator.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-iterator'>; -} -declare module 'eslint/lib/rules/no-label-var.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-label-var'>; -} -declare module 'eslint/lib/rules/no-labels.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-labels'>; -} -declare module 'eslint/lib/rules/no-lone-blocks.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-lone-blocks'>; -} -declare module 'eslint/lib/rules/no-lonely-if.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-lonely-if'>; -} -declare module 'eslint/lib/rules/no-loop-func.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-loop-func'>; -} -declare module 'eslint/lib/rules/no-loss-of-precision.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-loss-of-precision'>; -} -declare module 'eslint/lib/rules/no-magic-numbers.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-magic-numbers'>; -} -declare module 'eslint/lib/rules/no-misleading-character-class.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-misleading-character-class'>; -} -declare module 'eslint/lib/rules/no-mixed-operators.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-mixed-operators'>; -} -declare module 'eslint/lib/rules/no-mixed-requires.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-mixed-requires'>; -} -declare module 'eslint/lib/rules/no-mixed-spaces-and-tabs.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-mixed-spaces-and-tabs'>; -} -declare module 'eslint/lib/rules/no-multi-assign.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-multi-assign'>; -} -declare module 'eslint/lib/rules/no-multi-spaces.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-multi-spaces'>; -} -declare module 'eslint/lib/rules/no-multi-str.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-multi-str'>; -} -declare module 'eslint/lib/rules/no-multiple-empty-lines.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-multiple-empty-lines'>; -} -declare module 'eslint/lib/rules/no-native-reassign.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-native-reassign'>; -} -declare module 'eslint/lib/rules/no-negated-condition.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-negated-condition'>; -} -declare module 'eslint/lib/rules/no-negated-in-lhs.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-negated-in-lhs'>; -} -declare module 'eslint/lib/rules/no-nested-ternary.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-nested-ternary'>; -} -declare module 'eslint/lib/rules/no-new-func.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-new-func'>; -} -declare module 'eslint/lib/rules/no-new-object.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-new-object'>; -} -declare module 'eslint/lib/rules/no-new-require.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-new-require'>; -} -declare module 'eslint/lib/rules/no-new-symbol.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-new-symbol'>; -} -declare module 'eslint/lib/rules/no-new-wrappers.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-new-wrappers'>; -} -declare module 'eslint/lib/rules/no-new.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-new'>; -} -declare module 'eslint/lib/rules/no-obj-calls.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-obj-calls'>; -} -declare module 'eslint/lib/rules/no-octal-escape.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-octal-escape'>; -} -declare module 'eslint/lib/rules/no-octal.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-octal'>; -} -declare module 'eslint/lib/rules/no-param-reassign.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-param-reassign'>; -} -declare module 'eslint/lib/rules/no-path-concat.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-path-concat'>; -} -declare module 'eslint/lib/rules/no-plusplus.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-plusplus'>; -} -declare module 'eslint/lib/rules/no-process-env.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-process-env'>; -} -declare module 'eslint/lib/rules/no-process-exit.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-process-exit'>; -} -declare module 'eslint/lib/rules/no-promise-executor-return.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-promise-executor-return'>; -} -declare module 'eslint/lib/rules/no-proto.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-proto'>; -} -declare module 'eslint/lib/rules/no-prototype-builtins.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-prototype-builtins'>; -} -declare module 'eslint/lib/rules/no-redeclare.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-redeclare'>; -} -declare module 'eslint/lib/rules/no-regex-spaces.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-regex-spaces'>; -} -declare module 'eslint/lib/rules/no-restricted-exports.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-restricted-exports'>; -} -declare module 'eslint/lib/rules/no-restricted-globals.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-restricted-globals'>; -} -declare module 'eslint/lib/rules/no-restricted-imports.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-restricted-imports'>; -} -declare module 'eslint/lib/rules/no-restricted-modules.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-restricted-modules'>; -} -declare module 'eslint/lib/rules/no-restricted-properties.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-restricted-properties'>; -} -declare module 'eslint/lib/rules/no-restricted-syntax.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-restricted-syntax'>; -} -declare module 'eslint/lib/rules/no-return-assign.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-return-assign'>; -} -declare module 'eslint/lib/rules/no-return-await.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-return-await'>; -} -declare module 'eslint/lib/rules/no-script-url.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-script-url'>; -} -declare module 'eslint/lib/rules/no-self-assign.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-self-assign'>; -} -declare module 'eslint/lib/rules/no-self-compare.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-self-compare'>; -} -declare module 'eslint/lib/rules/no-sequences.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-sequences'>; -} -declare module 'eslint/lib/rules/no-setter-return.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-setter-return'>; -} -declare module 'eslint/lib/rules/no-shadow-restricted-names.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-shadow-restricted-names'>; -} -declare module 'eslint/lib/rules/no-shadow.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-shadow'>; -} -declare module 'eslint/lib/rules/no-spaced-func.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-spaced-func'>; -} -declare module 'eslint/lib/rules/no-sparse-arrays.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-sparse-arrays'>; -} -declare module 'eslint/lib/rules/no-sync.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-sync'>; -} -declare module 'eslint/lib/rules/no-tabs.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-tabs'>; -} -declare module 'eslint/lib/rules/no-template-curly-in-string.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-template-curly-in-string'>; -} -declare module 'eslint/lib/rules/no-ternary.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-ternary'>; -} -declare module 'eslint/lib/rules/no-this-before-super.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-this-before-super'>; -} -declare module 'eslint/lib/rules/no-throw-literal.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-throw-literal'>; -} -declare module 'eslint/lib/rules/no-trailing-spaces.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-trailing-spaces'>; -} -declare module 'eslint/lib/rules/no-undef-init.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-undef-init'>; -} -declare module 'eslint/lib/rules/no-undef.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-undef'>; -} -declare module 'eslint/lib/rules/no-undefined.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-undefined'>; -} -declare module 'eslint/lib/rules/no-underscore-dangle.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-underscore-dangle'>; -} -declare module 'eslint/lib/rules/no-unexpected-multiline.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-unexpected-multiline'>; -} -declare module 'eslint/lib/rules/no-unmodified-loop-condition.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-unmodified-loop-condition'>; -} -declare module 'eslint/lib/rules/no-unneeded-ternary.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-unneeded-ternary'>; -} -declare module 'eslint/lib/rules/no-unreachable-loop.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-unreachable-loop'>; -} -declare module 'eslint/lib/rules/no-unreachable.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-unreachable'>; -} -declare module 'eslint/lib/rules/no-unsafe-finally.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-unsafe-finally'>; -} -declare module 'eslint/lib/rules/no-unsafe-negation.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-unsafe-negation'>; -} -declare module 'eslint/lib/rules/no-unused-expressions.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-unused-expressions'>; -} -declare module 'eslint/lib/rules/no-unused-labels.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-unused-labels'>; -} -declare module 'eslint/lib/rules/no-unused-vars.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-unused-vars'>; -} -declare module 'eslint/lib/rules/no-use-before-define.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-use-before-define'>; -} -declare module 'eslint/lib/rules/no-useless-backreference.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-useless-backreference'>; -} -declare module 'eslint/lib/rules/no-useless-call.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-useless-call'>; -} -declare module 'eslint/lib/rules/no-useless-catch.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-useless-catch'>; -} -declare module 'eslint/lib/rules/no-useless-computed-key.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-useless-computed-key'>; -} -declare module 'eslint/lib/rules/no-useless-concat.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-useless-concat'>; -} -declare module 'eslint/lib/rules/no-useless-constructor.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-useless-constructor'>; -} -declare module 'eslint/lib/rules/no-useless-escape.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-useless-escape'>; -} -declare module 'eslint/lib/rules/no-useless-rename.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-useless-rename'>; -} -declare module 'eslint/lib/rules/no-useless-return.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-useless-return'>; -} -declare module 'eslint/lib/rules/no-var.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-var'>; -} -declare module 'eslint/lib/rules/no-void.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-void'>; -} -declare module 'eslint/lib/rules/no-warning-comments.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-warning-comments'>; -} -declare module 'eslint/lib/rules/no-whitespace-before-property.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-whitespace-before-property'>; -} -declare module 'eslint/lib/rules/no-with.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-with'>; -} -declare module 'eslint/lib/rules/nonblock-statement-body-position.js' { - declare module.exports: $Exports<'eslint/lib/rules/nonblock-statement-body-position'>; -} -declare module 'eslint/lib/rules/object-curly-newline.js' { - declare module.exports: $Exports<'eslint/lib/rules/object-curly-newline'>; -} -declare module 'eslint/lib/rules/object-curly-spacing.js' { - declare module.exports: $Exports<'eslint/lib/rules/object-curly-spacing'>; -} -declare module 'eslint/lib/rules/object-property-newline.js' { - declare module.exports: $Exports<'eslint/lib/rules/object-property-newline'>; -} -declare module 'eslint/lib/rules/object-shorthand.js' { - declare module.exports: $Exports<'eslint/lib/rules/object-shorthand'>; -} -declare module 'eslint/lib/rules/one-var-declaration-per-line.js' { - declare module.exports: $Exports<'eslint/lib/rules/one-var-declaration-per-line'>; -} -declare module 'eslint/lib/rules/one-var.js' { - declare module.exports: $Exports<'eslint/lib/rules/one-var'>; -} -declare module 'eslint/lib/rules/operator-assignment.js' { - declare module.exports: $Exports<'eslint/lib/rules/operator-assignment'>; -} -declare module 'eslint/lib/rules/operator-linebreak.js' { - declare module.exports: $Exports<'eslint/lib/rules/operator-linebreak'>; -} -declare module 'eslint/lib/rules/padded-blocks.js' { - declare module.exports: $Exports<'eslint/lib/rules/padded-blocks'>; -} -declare module 'eslint/lib/rules/padding-line-between-statements.js' { - declare module.exports: $Exports<'eslint/lib/rules/padding-line-between-statements'>; -} -declare module 'eslint/lib/rules/prefer-arrow-callback.js' { - declare module.exports: $Exports<'eslint/lib/rules/prefer-arrow-callback'>; -} -declare module 'eslint/lib/rules/prefer-const.js' { - declare module.exports: $Exports<'eslint/lib/rules/prefer-const'>; -} -declare module 'eslint/lib/rules/prefer-destructuring.js' { - declare module.exports: $Exports<'eslint/lib/rules/prefer-destructuring'>; -} -declare module 'eslint/lib/rules/prefer-exponentiation-operator.js' { - declare module.exports: $Exports<'eslint/lib/rules/prefer-exponentiation-operator'>; -} -declare module 'eslint/lib/rules/prefer-named-capture-group.js' { - declare module.exports: $Exports<'eslint/lib/rules/prefer-named-capture-group'>; -} -declare module 'eslint/lib/rules/prefer-numeric-literals.js' { - declare module.exports: $Exports<'eslint/lib/rules/prefer-numeric-literals'>; -} -declare module 'eslint/lib/rules/prefer-object-spread.js' { - declare module.exports: $Exports<'eslint/lib/rules/prefer-object-spread'>; -} -declare module 'eslint/lib/rules/prefer-promise-reject-errors.js' { - declare module.exports: $Exports<'eslint/lib/rules/prefer-promise-reject-errors'>; -} -declare module 'eslint/lib/rules/prefer-reflect.js' { - declare module.exports: $Exports<'eslint/lib/rules/prefer-reflect'>; -} -declare module 'eslint/lib/rules/prefer-regex-literals.js' { - declare module.exports: $Exports<'eslint/lib/rules/prefer-regex-literals'>; -} -declare module 'eslint/lib/rules/prefer-rest-params.js' { - declare module.exports: $Exports<'eslint/lib/rules/prefer-rest-params'>; -} -declare module 'eslint/lib/rules/prefer-spread.js' { - declare module.exports: $Exports<'eslint/lib/rules/prefer-spread'>; -} -declare module 'eslint/lib/rules/prefer-template.js' { - declare module.exports: $Exports<'eslint/lib/rules/prefer-template'>; -} -declare module 'eslint/lib/rules/quote-props.js' { - declare module.exports: $Exports<'eslint/lib/rules/quote-props'>; -} -declare module 'eslint/lib/rules/quotes.js' { - declare module.exports: $Exports<'eslint/lib/rules/quotes'>; -} -declare module 'eslint/lib/rules/radix.js' { - declare module.exports: $Exports<'eslint/lib/rules/radix'>; -} -declare module 'eslint/lib/rules/require-atomic-updates.js' { - declare module.exports: $Exports<'eslint/lib/rules/require-atomic-updates'>; -} -declare module 'eslint/lib/rules/require-await.js' { - declare module.exports: $Exports<'eslint/lib/rules/require-await'>; -} -declare module 'eslint/lib/rules/require-jsdoc.js' { - declare module.exports: $Exports<'eslint/lib/rules/require-jsdoc'>; -} -declare module 'eslint/lib/rules/require-unicode-regexp.js' { - declare module.exports: $Exports<'eslint/lib/rules/require-unicode-regexp'>; -} -declare module 'eslint/lib/rules/require-yield.js' { - declare module.exports: $Exports<'eslint/lib/rules/require-yield'>; -} -declare module 'eslint/lib/rules/rest-spread-spacing.js' { - declare module.exports: $Exports<'eslint/lib/rules/rest-spread-spacing'>; -} -declare module 'eslint/lib/rules/semi-spacing.js' { - declare module.exports: $Exports<'eslint/lib/rules/semi-spacing'>; -} -declare module 'eslint/lib/rules/semi-style.js' { - declare module.exports: $Exports<'eslint/lib/rules/semi-style'>; -} -declare module 'eslint/lib/rules/semi.js' { - declare module.exports: $Exports<'eslint/lib/rules/semi'>; -} -declare module 'eslint/lib/rules/sort-imports.js' { - declare module.exports: $Exports<'eslint/lib/rules/sort-imports'>; -} -declare module 'eslint/lib/rules/sort-keys.js' { - declare module.exports: $Exports<'eslint/lib/rules/sort-keys'>; -} -declare module 'eslint/lib/rules/sort-vars.js' { - declare module.exports: $Exports<'eslint/lib/rules/sort-vars'>; -} -declare module 'eslint/lib/rules/space-before-blocks.js' { - declare module.exports: $Exports<'eslint/lib/rules/space-before-blocks'>; -} -declare module 'eslint/lib/rules/space-before-function-paren.js' { - declare module.exports: $Exports<'eslint/lib/rules/space-before-function-paren'>; -} -declare module 'eslint/lib/rules/space-in-parens.js' { - declare module.exports: $Exports<'eslint/lib/rules/space-in-parens'>; -} -declare module 'eslint/lib/rules/space-infix-ops.js' { - declare module.exports: $Exports<'eslint/lib/rules/space-infix-ops'>; -} -declare module 'eslint/lib/rules/space-unary-ops.js' { - declare module.exports: $Exports<'eslint/lib/rules/space-unary-ops'>; -} -declare module 'eslint/lib/rules/spaced-comment.js' { - declare module.exports: $Exports<'eslint/lib/rules/spaced-comment'>; -} -declare module 'eslint/lib/rules/strict.js' { - declare module.exports: $Exports<'eslint/lib/rules/strict'>; -} -declare module 'eslint/lib/rules/switch-colon-spacing.js' { - declare module.exports: $Exports<'eslint/lib/rules/switch-colon-spacing'>; -} -declare module 'eslint/lib/rules/symbol-description.js' { - declare module.exports: $Exports<'eslint/lib/rules/symbol-description'>; -} -declare module 'eslint/lib/rules/template-curly-spacing.js' { - declare module.exports: $Exports<'eslint/lib/rules/template-curly-spacing'>; -} -declare module 'eslint/lib/rules/template-tag-spacing.js' { - declare module.exports: $Exports<'eslint/lib/rules/template-tag-spacing'>; -} -declare module 'eslint/lib/rules/unicode-bom.js' { - declare module.exports: $Exports<'eslint/lib/rules/unicode-bom'>; -} -declare module 'eslint/lib/rules/use-isnan.js' { - declare module.exports: $Exports<'eslint/lib/rules/use-isnan'>; -} -declare module 'eslint/lib/rules/utils/ast-utils.js' { - declare module.exports: $Exports<'eslint/lib/rules/utils/ast-utils'>; -} -declare module 'eslint/lib/rules/utils/fix-tracker.js' { - declare module.exports: $Exports<'eslint/lib/rules/utils/fix-tracker'>; -} -declare module 'eslint/lib/rules/utils/keywords.js' { - declare module.exports: $Exports<'eslint/lib/rules/utils/keywords'>; -} -declare module 'eslint/lib/rules/utils/lazy-loading-rule-map.js' { - declare module.exports: $Exports<'eslint/lib/rules/utils/lazy-loading-rule-map'>; -} -declare module 'eslint/lib/rules/utils/patterns/letters.js' { - declare module.exports: $Exports<'eslint/lib/rules/utils/patterns/letters'>; -} -declare module 'eslint/lib/rules/utils/unicode/index' { - declare module.exports: $Exports<'eslint/lib/rules/utils/unicode'>; -} -declare module 'eslint/lib/rules/utils/unicode/index.js' { - declare module.exports: $Exports<'eslint/lib/rules/utils/unicode'>; -} -declare module 'eslint/lib/rules/utils/unicode/is-combining-character.js' { - declare module.exports: $Exports<'eslint/lib/rules/utils/unicode/is-combining-character'>; -} -declare module 'eslint/lib/rules/utils/unicode/is-emoji-modifier.js' { - declare module.exports: $Exports<'eslint/lib/rules/utils/unicode/is-emoji-modifier'>; -} -declare module 'eslint/lib/rules/utils/unicode/is-regional-indicator-symbol.js' { - declare module.exports: $Exports<'eslint/lib/rules/utils/unicode/is-regional-indicator-symbol'>; -} -declare module 'eslint/lib/rules/utils/unicode/is-surrogate-pair.js' { - declare module.exports: $Exports<'eslint/lib/rules/utils/unicode/is-surrogate-pair'>; -} -declare module 'eslint/lib/rules/valid-jsdoc.js' { - declare module.exports: $Exports<'eslint/lib/rules/valid-jsdoc'>; -} -declare module 'eslint/lib/rules/valid-typeof.js' { - declare module.exports: $Exports<'eslint/lib/rules/valid-typeof'>; -} -declare module 'eslint/lib/rules/vars-on-top.js' { - declare module.exports: $Exports<'eslint/lib/rules/vars-on-top'>; -} -declare module 'eslint/lib/rules/wrap-iife.js' { - declare module.exports: $Exports<'eslint/lib/rules/wrap-iife'>; -} -declare module 'eslint/lib/rules/wrap-regex.js' { - declare module.exports: $Exports<'eslint/lib/rules/wrap-regex'>; -} -declare module 'eslint/lib/rules/yield-star-spacing.js' { - declare module.exports: $Exports<'eslint/lib/rules/yield-star-spacing'>; -} -declare module 'eslint/lib/rules/yoda.js' { - declare module.exports: $Exports<'eslint/lib/rules/yoda'>; -} -declare module 'eslint/lib/shared/ajv.js' { - declare module.exports: $Exports<'eslint/lib/shared/ajv'>; -} -declare module 'eslint/lib/shared/ast-utils.js' { - declare module.exports: $Exports<'eslint/lib/shared/ast-utils'>; -} -declare module 'eslint/lib/shared/config-validator.js' { - declare module.exports: $Exports<'eslint/lib/shared/config-validator'>; -} -declare module 'eslint/lib/shared/deprecation-warnings.js' { - declare module.exports: $Exports<'eslint/lib/shared/deprecation-warnings'>; -} -declare module 'eslint/lib/shared/logging.js' { - declare module.exports: $Exports<'eslint/lib/shared/logging'>; -} -declare module 'eslint/lib/shared/relative-module-resolver.js' { - declare module.exports: $Exports<'eslint/lib/shared/relative-module-resolver'>; -} -declare module 'eslint/lib/shared/runtime-info.js' { - declare module.exports: $Exports<'eslint/lib/shared/runtime-info'>; -} -declare module 'eslint/lib/shared/traverser.js' { - declare module.exports: $Exports<'eslint/lib/shared/traverser'>; -} -declare module 'eslint/lib/shared/types.js' { - declare module.exports: $Exports<'eslint/lib/shared/types'>; -} -declare module 'eslint/lib/source-code/index' { - declare module.exports: $Exports<'eslint/lib/source-code'>; -} -declare module 'eslint/lib/source-code/index.js' { - declare module.exports: $Exports<'eslint/lib/source-code'>; -} -declare module 'eslint/lib/source-code/source-code.js' { - declare module.exports: $Exports<'eslint/lib/source-code/source-code'>; -} -declare module 'eslint/lib/source-code/token-store/backward-token-comment-cursor.js' { - declare module.exports: $Exports<'eslint/lib/source-code/token-store/backward-token-comment-cursor'>; -} -declare module 'eslint/lib/source-code/token-store/backward-token-cursor.js' { - declare module.exports: $Exports<'eslint/lib/source-code/token-store/backward-token-cursor'>; -} -declare module 'eslint/lib/source-code/token-store/cursor.js' { - declare module.exports: $Exports<'eslint/lib/source-code/token-store/cursor'>; -} -declare module 'eslint/lib/source-code/token-store/cursors.js' { - declare module.exports: $Exports<'eslint/lib/source-code/token-store/cursors'>; -} -declare module 'eslint/lib/source-code/token-store/decorative-cursor.js' { - declare module.exports: $Exports<'eslint/lib/source-code/token-store/decorative-cursor'>; -} -declare module 'eslint/lib/source-code/token-store/filter-cursor.js' { - declare module.exports: $Exports<'eslint/lib/source-code/token-store/filter-cursor'>; -} -declare module 'eslint/lib/source-code/token-store/forward-token-comment-cursor.js' { - declare module.exports: $Exports<'eslint/lib/source-code/token-store/forward-token-comment-cursor'>; -} -declare module 'eslint/lib/source-code/token-store/forward-token-cursor.js' { - declare module.exports: $Exports<'eslint/lib/source-code/token-store/forward-token-cursor'>; -} -declare module 'eslint/lib/source-code/token-store/index' { - declare module.exports: $Exports<'eslint/lib/source-code/token-store'>; -} -declare module 'eslint/lib/source-code/token-store/index.js' { - declare module.exports: $Exports<'eslint/lib/source-code/token-store'>; -} -declare module 'eslint/lib/source-code/token-store/limit-cursor.js' { - declare module.exports: $Exports<'eslint/lib/source-code/token-store/limit-cursor'>; -} -declare module 'eslint/lib/source-code/token-store/padded-token-cursor.js' { - declare module.exports: $Exports<'eslint/lib/source-code/token-store/padded-token-cursor'>; -} -declare module 'eslint/lib/source-code/token-store/skip-cursor.js' { - declare module.exports: $Exports<'eslint/lib/source-code/token-store/skip-cursor'>; -} -declare module 'eslint/lib/source-code/token-store/utils.js' { - declare module.exports: $Exports<'eslint/lib/source-code/token-store/utils'>; -} diff --git a/flow-typed/npm/flow-bin_v0.x.x.js b/flow-typed/npm/flow-bin_v0.x.x.js deleted file mode 100644 index fda1f290..00000000 --- a/flow-typed/npm/flow-bin_v0.x.x.js +++ /dev/null @@ -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; -} diff --git a/flow-typed/npm/flow-typed_vx.x.x.js b/flow-typed/npm/flow-typed_vx.x.x.js deleted file mode 100644 index 47f1fb49..00000000 --- a/flow-typed/npm/flow-typed_vx.x.x.js +++ /dev/null @@ -1,186 +0,0 @@ -// flow-typed signature: 38cf9368b01c6ad0fd222d614d4e673b -// flow-typed version: <>/flow-typed_v3.2.1/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'flow-typed' - * - * 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 'flow-typed' { - 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 'flow-typed/dist/cli' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/commands/create-stub' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/commands/install' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/commands/runTests' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/commands/search' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/commands/update-cache' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/commands/update' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/commands/validateDefs' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/lib/cacheRepoUtils' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/lib/codeSign' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/lib/fileUtils' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/lib/flowProjectUtils' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/lib/flowVersion' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/lib/git' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/lib/github' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/lib/isInFlowTypedRepo' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/lib/libDefs' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/lib/node' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/lib/npm/npmLibDefs' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/lib/npm/npmProjectUtils' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/lib/semver' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/lib/stubUtils' { - declare module.exports: any; -} - -declare module 'flow-typed/dist/lib/ValidationError' { - declare module.exports: any; -} - -// Filename aliases -declare module 'flow-typed/dist/cli.js' { - declare module.exports: $Exports<'flow-typed/dist/cli'>; -} -declare module 'flow-typed/dist/commands/create-stub.js' { - declare module.exports: $Exports<'flow-typed/dist/commands/create-stub'>; -} -declare module 'flow-typed/dist/commands/install.js' { - declare module.exports: $Exports<'flow-typed/dist/commands/install'>; -} -declare module 'flow-typed/dist/commands/runTests.js' { - declare module.exports: $Exports<'flow-typed/dist/commands/runTests'>; -} -declare module 'flow-typed/dist/commands/search.js' { - declare module.exports: $Exports<'flow-typed/dist/commands/search'>; -} -declare module 'flow-typed/dist/commands/update-cache.js' { - declare module.exports: $Exports<'flow-typed/dist/commands/update-cache'>; -} -declare module 'flow-typed/dist/commands/update.js' { - declare module.exports: $Exports<'flow-typed/dist/commands/update'>; -} -declare module 'flow-typed/dist/commands/validateDefs.js' { - declare module.exports: $Exports<'flow-typed/dist/commands/validateDefs'>; -} -declare module 'flow-typed/dist/lib/cacheRepoUtils.js' { - declare module.exports: $Exports<'flow-typed/dist/lib/cacheRepoUtils'>; -} -declare module 'flow-typed/dist/lib/codeSign.js' { - declare module.exports: $Exports<'flow-typed/dist/lib/codeSign'>; -} -declare module 'flow-typed/dist/lib/fileUtils.js' { - declare module.exports: $Exports<'flow-typed/dist/lib/fileUtils'>; -} -declare module 'flow-typed/dist/lib/flowProjectUtils.js' { - declare module.exports: $Exports<'flow-typed/dist/lib/flowProjectUtils'>; -} -declare module 'flow-typed/dist/lib/flowVersion.js' { - declare module.exports: $Exports<'flow-typed/dist/lib/flowVersion'>; -} -declare module 'flow-typed/dist/lib/git.js' { - declare module.exports: $Exports<'flow-typed/dist/lib/git'>; -} -declare module 'flow-typed/dist/lib/github.js' { - declare module.exports: $Exports<'flow-typed/dist/lib/github'>; -} -declare module 'flow-typed/dist/lib/isInFlowTypedRepo.js' { - declare module.exports: $Exports<'flow-typed/dist/lib/isInFlowTypedRepo'>; -} -declare module 'flow-typed/dist/lib/libDefs.js' { - declare module.exports: $Exports<'flow-typed/dist/lib/libDefs'>; -} -declare module 'flow-typed/dist/lib/node.js' { - declare module.exports: $Exports<'flow-typed/dist/lib/node'>; -} -declare module 'flow-typed/dist/lib/npm/npmLibDefs.js' { - declare module.exports: $Exports<'flow-typed/dist/lib/npm/npmLibDefs'>; -} -declare module 'flow-typed/dist/lib/npm/npmProjectUtils.js' { - declare module.exports: $Exports<'flow-typed/dist/lib/npm/npmProjectUtils'>; -} -declare module 'flow-typed/dist/lib/semver.js' { - declare module.exports: $Exports<'flow-typed/dist/lib/semver'>; -} -declare module 'flow-typed/dist/lib/stubUtils.js' { - declare module.exports: $Exports<'flow-typed/dist/lib/stubUtils'>; -} -declare module 'flow-typed/dist/lib/ValidationError.js' { - declare module.exports: $Exports<'flow-typed/dist/lib/ValidationError'>; -} diff --git a/flow-typed/npm/fs-extra_vx.x.x.js b/flow-typed/npm/fs-extra_vx.x.x.js deleted file mode 100644 index cf20ee05..00000000 --- a/flow-typed/npm/fs-extra_vx.x.x.js +++ /dev/null @@ -1,267 +0,0 @@ -// flow-typed signature: 8f6dd9e2569cf0b11f4dfed1aad1a5a2 -// flow-typed version: <>/fs-extra_v9.0.1/flow_v0.135.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/make-dir' { - 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/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/make-dir.js' { - declare module.exports: $Exports<'fs-extra/lib/mkdirs/make-dir'>; -} -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/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'>; -} diff --git a/flow-typed/npm/graphql-hooks_vx.x.x.js b/flow-typed/npm/graphql-hooks_vx.x.x.js deleted file mode 100644 index 85d9aac2..00000000 --- a/flow-typed/npm/graphql-hooks_vx.x.x.js +++ /dev/null @@ -1,105 +0,0 @@ -// flow-typed signature: c8c3459576e134bc693f8114e3d098ba -// flow-typed version: <>/graphql-hooks_v5.0.0/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'graphql-hooks' - * - * 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 'graphql-hooks' { - 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 'graphql-hooks/dist/graphql-hooks' { - declare module.exports: any; -} - -declare module 'graphql-hooks/dist/graphql-hooks.min' { - declare module.exports: any; -} - -declare module 'graphql-hooks/es/graphql-hooks' { - declare module.exports: any; -} - -declare module 'graphql-hooks/lib/graphql-hooks' { - declare module.exports: any; -} - -declare module 'graphql-hooks/src/ClientContext' { - declare module.exports: any; -} - -declare module 'graphql-hooks/src/GraphQLClient' { - declare module.exports: any; -} - -declare module 'graphql-hooks/src' { - declare module.exports: any; -} - -declare module 'graphql-hooks/src/isExtractableFileEnhanced' { - declare module.exports: any; -} - -declare module 'graphql-hooks/src/useClientRequest' { - declare module.exports: any; -} - -declare module 'graphql-hooks/src/useQuery' { - declare module.exports: any; -} - -declare module 'graphql-hooks/src/useSubscription' { - declare module.exports: any; -} - -// Filename aliases -declare module 'graphql-hooks/dist/graphql-hooks.js' { - declare module.exports: $Exports<'graphql-hooks/dist/graphql-hooks'>; -} -declare module 'graphql-hooks/dist/graphql-hooks.min.js' { - declare module.exports: $Exports<'graphql-hooks/dist/graphql-hooks.min'>; -} -declare module 'graphql-hooks/es/graphql-hooks.js' { - declare module.exports: $Exports<'graphql-hooks/es/graphql-hooks'>; -} -declare module 'graphql-hooks/lib/graphql-hooks.js' { - declare module.exports: $Exports<'graphql-hooks/lib/graphql-hooks'>; -} -declare module 'graphql-hooks/src/ClientContext.js' { - declare module.exports: $Exports<'graphql-hooks/src/ClientContext'>; -} -declare module 'graphql-hooks/src/GraphQLClient.js' { - declare module.exports: $Exports<'graphql-hooks/src/GraphQLClient'>; -} -declare module 'graphql-hooks/src/index' { - declare module.exports: $Exports<'graphql-hooks/src'>; -} -declare module 'graphql-hooks/src/index.js' { - declare module.exports: $Exports<'graphql-hooks/src'>; -} -declare module 'graphql-hooks/src/isExtractableFileEnhanced.js' { - declare module.exports: $Exports<'graphql-hooks/src/isExtractableFileEnhanced'>; -} -declare module 'graphql-hooks/src/useClientRequest.js' { - declare module.exports: $Exports<'graphql-hooks/src/useClientRequest'>; -} -declare module 'graphql-hooks/src/useQuery.js' { - declare module.exports: $Exports<'graphql-hooks/src/useQuery'>; -} -declare module 'graphql-hooks/src/useSubscription.js' { - declare module.exports: $Exports<'graphql-hooks/src/useSubscription'>; -} diff --git a/flow-typed/npm/i18next-electron-fs-backend_vx.x.x.js b/flow-typed/npm/i18next-electron-fs-backend_vx.x.x.js deleted file mode 100644 index d1200aee..00000000 --- a/flow-typed/npm/i18next-electron-fs-backend_vx.x.x.js +++ /dev/null @@ -1,42 +0,0 @@ -// flow-typed signature: 4ca773ba0d8b41b8ff85b21848189b3e -// flow-typed version: <>/i18next-electron-fs-backend_v^1.3.5/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'i18next-electron-fs-backend' - * - * 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 'i18next-electron-fs-backend' { - 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 'i18next-electron-fs-backend/lib' { - declare module.exports: any; -} - -declare module 'i18next-electron-fs-backend/lib/utils' { - declare module.exports: any; -} - -// Filename aliases -declare module 'i18next-electron-fs-backend/lib/index' { - declare module.exports: $Exports<'i18next-electron-fs-backend/lib'>; -} -declare module 'i18next-electron-fs-backend/lib/index.js' { - declare module.exports: $Exports<'i18next-electron-fs-backend/lib'>; -} -declare module 'i18next-electron-fs-backend/lib/utils.js' { - declare module.exports: $Exports<'i18next-electron-fs-backend/lib/utils'>; -} diff --git a/flow-typed/npm/i18next-fs-backend_vx.x.x.js b/flow-typed/npm/i18next-fs-backend_vx.x.x.js deleted file mode 100644 index 20a2c95f..00000000 --- a/flow-typed/npm/i18next-fs-backend_vx.x.x.js +++ /dev/null @@ -1,194 +0,0 @@ -// flow-typed signature: 9a106ce606722a021545390f5add5cc6 -// flow-typed version: <>/i18next-fs-backend_v^1.0.7/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'i18next-fs-backend' - * - * 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 'i18next-fs-backend' { - 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 'i18next-fs-backend/cjs/extname' { - declare module.exports: any; -} - -declare module 'i18next-fs-backend/cjs/formats/json5' { - declare module.exports: any; -} - -declare module 'i18next-fs-backend/cjs/formats/yaml' { - declare module.exports: any; -} - -declare module 'i18next-fs-backend/cjs/fs' { - declare module.exports: any; -} - -declare module 'i18next-fs-backend/cjs' { - declare module.exports: any; -} - -declare module 'i18next-fs-backend/cjs/readFile' { - declare module.exports: any; -} - -declare module 'i18next-fs-backend/cjs/utils' { - declare module.exports: any; -} - -declare module 'i18next-fs-backend/cjs/writeFile' { - declare module.exports: any; -} - -declare module 'i18next-fs-backend/esm/extname' { - declare module.exports: any; -} - -declare module 'i18next-fs-backend/esm/formats/json5' { - declare module.exports: any; -} - -declare module 'i18next-fs-backend/esm/formats/yaml' { - declare module.exports: any; -} - -declare module 'i18next-fs-backend/esm' { - declare module.exports: any; -} - -declare module 'i18next-fs-backend/esm/readFile' { - declare module.exports: any; -} - -declare module 'i18next-fs-backend/esm/utils' { - declare module.exports: any; -} - -declare module 'i18next-fs-backend/esm/writeFile' { - declare module.exports: any; -} - -declare module 'i18next-fs-backend/lib/extname' { - declare module.exports: any; -} - -declare module 'i18next-fs-backend/lib/formats/json5' { - declare module.exports: any; -} - -declare module 'i18next-fs-backend/lib/formats/yaml' { - declare module.exports: any; -} - -declare module 'i18next-fs-backend/lib' { - declare module.exports: any; -} - -declare module 'i18next-fs-backend/lib/readFile' { - declare module.exports: any; -} - -declare module 'i18next-fs-backend/lib/utils' { - declare module.exports: any; -} - -declare module 'i18next-fs-backend/lib/writeFile' { - declare module.exports: any; -} - -// Filename aliases -declare module 'i18next-fs-backend/cjs/extname.js' { - declare module.exports: $Exports<'i18next-fs-backend/cjs/extname'>; -} -declare module 'i18next-fs-backend/cjs/formats/json5.js' { - declare module.exports: $Exports<'i18next-fs-backend/cjs/formats/json5'>; -} -declare module 'i18next-fs-backend/cjs/formats/yaml.js' { - declare module.exports: $Exports<'i18next-fs-backend/cjs/formats/yaml'>; -} -declare module 'i18next-fs-backend/cjs/fs.js' { - declare module.exports: $Exports<'i18next-fs-backend/cjs/fs'>; -} -declare module 'i18next-fs-backend/cjs/index' { - declare module.exports: $Exports<'i18next-fs-backend/cjs'>; -} -declare module 'i18next-fs-backend/cjs/index.js' { - declare module.exports: $Exports<'i18next-fs-backend/cjs'>; -} -declare module 'i18next-fs-backend/cjs/readFile.js' { - declare module.exports: $Exports<'i18next-fs-backend/cjs/readFile'>; -} -declare module 'i18next-fs-backend/cjs/utils.js' { - declare module.exports: $Exports<'i18next-fs-backend/cjs/utils'>; -} -declare module 'i18next-fs-backend/cjs/writeFile.js' { - declare module.exports: $Exports<'i18next-fs-backend/cjs/writeFile'>; -} -declare module 'i18next-fs-backend/esm/extname.js' { - declare module.exports: $Exports<'i18next-fs-backend/esm/extname'>; -} -declare module 'i18next-fs-backend/esm/formats/json5.js' { - declare module.exports: $Exports<'i18next-fs-backend/esm/formats/json5'>; -} -declare module 'i18next-fs-backend/esm/formats/yaml.js' { - declare module.exports: $Exports<'i18next-fs-backend/esm/formats/yaml'>; -} -declare module 'i18next-fs-backend/esm/index' { - declare module.exports: $Exports<'i18next-fs-backend/esm'>; -} -declare module 'i18next-fs-backend/esm/index.js' { - declare module.exports: $Exports<'i18next-fs-backend/esm'>; -} -declare module 'i18next-fs-backend/esm/readFile.js' { - declare module.exports: $Exports<'i18next-fs-backend/esm/readFile'>; -} -declare module 'i18next-fs-backend/esm/utils.js' { - declare module.exports: $Exports<'i18next-fs-backend/esm/utils'>; -} -declare module 'i18next-fs-backend/esm/writeFile.js' { - declare module.exports: $Exports<'i18next-fs-backend/esm/writeFile'>; -} -declare module 'i18next-fs-backend/index' { - declare module.exports: $Exports<'i18next-fs-backend'>; -} -declare module 'i18next-fs-backend/index.js' { - declare module.exports: $Exports<'i18next-fs-backend'>; -} -declare module 'i18next-fs-backend/lib/extname.js' { - declare module.exports: $Exports<'i18next-fs-backend/lib/extname'>; -} -declare module 'i18next-fs-backend/lib/formats/json5.js' { - declare module.exports: $Exports<'i18next-fs-backend/lib/formats/json5'>; -} -declare module 'i18next-fs-backend/lib/formats/yaml.js' { - declare module.exports: $Exports<'i18next-fs-backend/lib/formats/yaml'>; -} -declare module 'i18next-fs-backend/lib/index' { - declare module.exports: $Exports<'i18next-fs-backend/lib'>; -} -declare module 'i18next-fs-backend/lib/index.js' { - declare module.exports: $Exports<'i18next-fs-backend/lib'>; -} -declare module 'i18next-fs-backend/lib/readFile.js' { - declare module.exports: $Exports<'i18next-fs-backend/lib/readFile'>; -} -declare module 'i18next-fs-backend/lib/utils.js' { - declare module.exports: $Exports<'i18next-fs-backend/lib/utils'>; -} -declare module 'i18next-fs-backend/lib/writeFile.js' { - declare module.exports: $Exports<'i18next-fs-backend/lib/writeFile'>; -} diff --git a/flow-typed/npm/i18next_vx.x.x.js b/flow-typed/npm/i18next_vx.x.x.js deleted file mode 100644 index 9929391e..00000000 --- a/flow-typed/npm/i18next_vx.x.x.js +++ /dev/null @@ -1,73 +0,0 @@ -// flow-typed signature: e025b537c18204ce8b57aaf5f6eb6c34 -// flow-typed version: <>/i18next_v^19.8.2/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'i18next' - * - * 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 'i18next' { - 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 'i18next/dist/cjs/i18next' { - declare module.exports: any; -} - -declare module 'i18next/dist/esm/i18next' { - declare module.exports: any; -} - -declare module 'i18next/dist/umd/i18next' { - declare module.exports: any; -} - -declare module 'i18next/dist/umd/i18next.min' { - declare module.exports: any; -} - -declare module 'i18next/i18next' { - declare module.exports: any; -} - -declare module 'i18next/i18next.min' { - declare module.exports: any; -} - -// Filename aliases -declare module 'i18next/dist/cjs/i18next.js' { - declare module.exports: $Exports<'i18next/dist/cjs/i18next'>; -} -declare module 'i18next/dist/esm/i18next.js' { - declare module.exports: $Exports<'i18next/dist/esm/i18next'>; -} -declare module 'i18next/dist/umd/i18next.js' { - declare module.exports: $Exports<'i18next/dist/umd/i18next'>; -} -declare module 'i18next/dist/umd/i18next.min.js' { - declare module.exports: $Exports<'i18next/dist/umd/i18next.min'>; -} -declare module 'i18next/i18next.js' { - declare module.exports: $Exports<'i18next/i18next'>; -} -declare module 'i18next/i18next.min.js' { - declare module.exports: $Exports<'i18next/i18next.min'>; -} -declare module 'i18next/index' { - declare module.exports: $Exports<'i18next'>; -} -declare module 'i18next/index.js' { - declare module.exports: $Exports<'i18next'>; -} diff --git a/flow-typed/npm/if-env_vx.x.x.js b/flow-typed/npm/if-env_vx.x.x.js deleted file mode 100644 index 94e7e651..00000000 --- a/flow-typed/npm/if-env_vx.x.x.js +++ /dev/null @@ -1,39 +0,0 @@ -// flow-typed signature: ae7f062cf954b4896fbea1274de3a992 -// flow-typed version: <>/if-env_v^1.0.4/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'if-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 'if-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 'if-env/bin/if-env' { - declare module.exports: any; -} - -declare module 'if-env/test/if-env.test' { - declare module.exports: any; -} - -// Filename aliases -declare module 'if-env/bin/if-env.js' { - declare module.exports: $Exports<'if-env/bin/if-env'>; -} -declare module 'if-env/test/if-env.test.js' { - declare module.exports: $Exports<'if-env/test/if-env.test'>; -} diff --git a/flow-typed/npm/is-url_v1.x.x.js b/flow-typed/npm/is-url_v1.x.x.js deleted file mode 100644 index 33ad5c7e..00000000 --- a/flow-typed/npm/is-url_v1.x.x.js +++ /dev/null @@ -1,6 +0,0 @@ -// flow-typed signature: 973b6eb447c3951be710fcd33a5ffbdd -// flow-typed version: c6154227d1/is-url_v1.x.x/flow_>=v0.104.x - -declare module 'is-url' { - declare module.exports: (url: string) => boolean -} diff --git a/flow-typed/npm/jimp_vx.x.x.js b/flow-typed/npm/jimp_vx.x.x.js deleted file mode 100644 index 7620ccb6..00000000 --- a/flow-typed/npm/jimp_vx.x.x.js +++ /dev/null @@ -1,66 +0,0 @@ -// flow-typed signature: 11d5788d55e07773f424ad247c3f9efb -// flow-typed version: <>/jimp_v0.16.1/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'jimp' - * - * 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 'jimp' { - 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 'jimp/browser/examples/jimp-worker' { - declare module.exports: any; -} - -declare module 'jimp/browser/lib/jimp' { - declare module.exports: any; -} - -declare module 'jimp/browser/lib/jimp.min' { - declare module.exports: any; -} - -declare module 'jimp/dist' { - declare module.exports: any; -} - -declare module 'jimp/es' { - declare module.exports: any; -} - -// Filename aliases -declare module 'jimp/browser/examples/jimp-worker.js' { - declare module.exports: $Exports<'jimp/browser/examples/jimp-worker'>; -} -declare module 'jimp/browser/lib/jimp.js' { - declare module.exports: $Exports<'jimp/browser/lib/jimp'>; -} -declare module 'jimp/browser/lib/jimp.min.js' { - declare module.exports: $Exports<'jimp/browser/lib/jimp.min'>; -} -declare module 'jimp/dist/index' { - declare module.exports: $Exports<'jimp/dist'>; -} -declare module 'jimp/dist/index.js' { - declare module.exports: $Exports<'jimp/dist'>; -} -declare module 'jimp/es/index' { - declare module.exports: $Exports<'jimp/es'>; -} -declare module 'jimp/es/index.js' { - declare module.exports: $Exports<'jimp/es'>; -} diff --git a/flow-typed/npm/lodash_v4.x.x.js b/flow-typed/npm/lodash_v4.x.x.js deleted file mode 100644 index 0dc3b4bf..00000000 --- a/flow-typed/npm/lodash_v4.x.x.js +++ /dev/null @@ -1,6117 +0,0 @@ -// flow-typed signature: 61f6aff2b7a4c2d2b48136a10568f722 -// flow-typed version: 173a6441ff/lodash_v4.x.x/flow_>=v0.104.x - -declare module "lodash" { - declare type Path = $ReadOnlyArray | string | number; - declare type __CurriedFunction1 = (...r: [AA]) => R; - declare type CurriedFunction1 = __CurriedFunction1; - - declare type __CurriedFunction2 = (( - ...r: [AA] - ) => CurriedFunction1) & - ((...r: [AA, BB]) => R); - declare type CurriedFunction2 = __CurriedFunction2; - - declare type __CurriedFunction3 = (( - ...r: [AA] - ) => CurriedFunction2) & - ((...r: [AA, BB]) => CurriedFunction1) & - ((...r: [AA, BB, CC]) => R); - declare type CurriedFunction3 = __CurriedFunction3< - A, - B, - C, - R, - *, - *, - * - >; - - declare type __CurriedFunction4< - A, - B, - C, - D, - R, - AA: A, - BB: B, - CC: C, - DD: D - > = ((...r: [AA]) => CurriedFunction3) & - ((...r: [AA, BB]) => CurriedFunction2) & - ((...r: [AA, BB, CC]) => CurriedFunction1) & - ((...r: [AA, BB, CC, DD]) => R); - declare type CurriedFunction4 = __CurriedFunction4< - A, - B, - C, - D, - R, - *, - *, - *, - * - >; - - declare type __CurriedFunction5< - A, - B, - C, - D, - E, - R, - AA: A, - BB: B, - CC: C, - DD: D, - EE: E - > = ((...r: [AA]) => CurriedFunction4) & - ((...r: [AA, BB]) => CurriedFunction3) & - ((...r: [AA, BB, CC]) => CurriedFunction2) & - ((...r: [AA, BB, CC, DD]) => CurriedFunction1) & - ((...r: [AA, BB, CC, DD, EE]) => R); - declare type CurriedFunction5 = __CurriedFunction5< - A, - B, - C, - D, - E, - R, - *, - *, - *, - *, - * - >; - - declare type __CurriedFunction6< - A, - B, - C, - D, - E, - F, - R, - AA: A, - BB: B, - CC: C, - DD: D, - EE: E, - FF: F - > = ((...r: [AA]) => CurriedFunction5) & - ((...r: [AA, BB]) => CurriedFunction4) & - ((...r: [AA, BB, CC]) => CurriedFunction3) & - ((...r: [AA, BB, CC, DD]) => CurriedFunction2) & - ((...r: [AA, BB, CC, DD, EE]) => CurriedFunction1) & - ((...r: [AA, BB, CC, DD, EE, FF]) => R); - declare type CurriedFunction6 = __CurriedFunction6< - A, - B, - C, - D, - E, - F, - R, - *, - *, - *, - *, - *, - * - >; - - declare type Curry = (((...r: [A]) => R) => CurriedFunction1) & - (((...r: [A, B]) => R) => CurriedFunction2) & - (((...r: [A, B, C]) => R) => CurriedFunction3) & - (( - (...r: [A, B, C, D]) => R - ) => CurriedFunction4) & - (( - (...r: [A, B, C, D, E]) => R - ) => CurriedFunction5) & - (( - (...r: [A, B, C, D, E, F]) => R - ) => CurriedFunction6); - - declare type UnaryFn = (a: A) => R; - - declare type TemplateSettings = { - escape?: RegExp, - evaluate?: RegExp, - imports?: Object, - interpolate?: RegExp, - variable?: string, - ... - }; - - declare type TruncateOptions = { - length?: number, - omission?: string, - separator?: RegExp | string, - ... - }; - - declare type Cancelable = { - cancel: () => void, - flush: () => mixed, - ... - }; - - declare type DebounceOptions = { - leading?: boolean, - maxWait?: number, - trailing?: boolean, - ... - }; - - declare type ThrottleOptions = { - leading?: boolean, - trailing?: boolean, - ... - }; - - // using opaque type for object key is not supported by Flow atm: https://github.com/facebook/flow/issues/5407 - declare type Key = string | number; - declare type IndexerObject = { [key: K]: V, ... }; - declare type ReadOnlyIndexerObject = $ReadOnly>; - declare type NestedArray = Array>; - declare type Collection = $ReadOnlyArray | ReadOnlyIndexerObject; - - declare type matchesIterateeShorthand = { [Key]: any, ... }; - declare type matchesPropertyIterateeShorthand = [string, any]; - declare type propertyIterateeShorthand = string; - - declare type OPredicate = - | ((value: A, key: string, object: O) => any) - | matchesIterateeShorthand - | matchesPropertyIterateeShorthand - | propertyIterateeShorthand; - - declare type IterateeWithResult = - | ((value: V, key: K, object: O) => R) - | string; - - declare type OIterateeWithResult = - | ReadOnlyIndexerObject - | IterateeWithResult; - declare type OIteratee = OIterateeWithResult; - - declare type AFlatMapIteratee = - | ((item: V, index: number, array: O) => $ReadOnlyArray | R) - | string - declare type OFlatMapIteratee = IterateeWithResult | R>; - - declare type Predicate = - | ((value: T, index: number, array: Array) => any) - | matchesIterateeShorthand - | matchesPropertyIterateeShorthand - | propertyIterateeShorthand; - - declare type _ValueOnlyIteratee = (value: T) => mixed; - declare type ValueOnlyIteratee = _ValueOnlyIteratee | string; - declare type _Iteratee = ( - item: T, - index: number, - array: ?Array - ) => mixed; - declare type Iteratee = _Iteratee | Object | string; - declare type Comparator = (item: T, item2: T) => boolean; - - declare type ReadOnlyMapIterator = - | ((item: T, index: number, array: $ReadOnlyArray) => U) - | propertyIterateeShorthand; - - declare type OMapIterator = - | ((item: T, key: string, object: O) => U) - | propertyIterateeShorthand; - - declare class Lodash { - // Array - chunk(array?: ?$ReadOnlyArray, size?: ?number): Array>; - compact(array?: ?$ReadOnlyArray): Array; - concat( - base?: ?$ReadOnlyArray, - ...elements: $ReadOnlyArray - ): Array; - difference( - array?: ?$ReadOnlyArray, - ...values: $ReadOnlyArray> - ): Array; - differenceBy( - array?: ?$ReadOnlyArray, - values?: ?$ReadOnlyArray, - iteratee?: ?ValueOnlyIteratee - ): Array; - differenceWith( - array?: ?$ReadOnlyArray, - values?: ?$ReadOnlyArray, - comparator?: ?(item: T, item2: U) => boolean - ): Array; - drop(array?: ?$ReadOnlyArray, n?: ?number): Array; - dropRight(array?: ?$ReadOnlyArray, n?: ?number): Array; - dropRightWhile(array?: ?$ReadOnlyArray, predicate?: ?Predicate): Array; - dropWhile(array?: ?$ReadOnlyArray, predicate?: ?Predicate): Array; - fill( - array?: ?Array, - value?: ?U, - start?: ?number, - end?: ?number - ): Array; - findIndex( - array: $ReadOnlyArray, - predicate?: ?Predicate, - fromIndex?: ?number - ): number; - findIndex( - array: void | null, - predicate?: ?Predicate, - fromIndex?: ?number - ): -1; - findLastIndex( - array: $ReadOnlyArray, - predicate?: ?Predicate, - fromIndex?: ?number - ): number; - findLastIndex( - array: void | null, - predicate?: ?Predicate, - fromIndex?: ?number - ): -1; - // alias of _.head - first(array: ?$ReadOnlyArray): T; - flatten(array?: ?$ReadOnlyArray<$ReadOnlyArray | X>): Array; - flattenDeep(array?: ?$ReadOnlyArray): Array; - flattenDepth(array?: ?$ReadOnlyArray, depth?: ?number): Array; - fromPairs(pairs?: ?$ReadOnlyArray<[A, B]>): {| [key: A]: B |}; - head(array: ?$ReadOnlyArray): T; - indexOf(array: $ReadOnlyArray, value: T, fromIndex?: number): number; - indexOf(array: void | null, value?: ?T, fromIndex?: ?number): -1; - initial(array: ?$ReadOnlyArray): Array; - intersection(...arrays?: Array<$ReadOnlyArray>): Array; - //Workaround until (...parameter: T, parameter2: U) works - intersectionBy( - a1?: ?$ReadOnlyArray, - iteratee?: ?ValueOnlyIteratee - ): Array; - intersectionBy( - a1?: ?$ReadOnlyArray, - a2?: ?$ReadOnlyArray, - iteratee?: ?ValueOnlyIteratee - ): Array; - intersectionBy( - a1?: ?$ReadOnlyArray, - a2?: ?$ReadOnlyArray, - a3?: ?$ReadOnlyArray, - iteratee?: ?ValueOnlyIteratee - ): Array; - intersectionBy( - a1?: ?$ReadOnlyArray, - a2?: ?$ReadOnlyArray, - a3?: ?$ReadOnlyArray, - a4?: ?$ReadOnlyArray, - iteratee?: ?ValueOnlyIteratee - ): Array; - //Workaround until (...parameter: T, parameter2: U) works - intersectionWith( - a1?: ?$ReadOnlyArray, - comparator?: ?Comparator - ): Array; - intersectionWith( - a1?: ?$ReadOnlyArray, - a2?: ?$ReadOnlyArray, - comparator?: ?Comparator - ): Array; - intersectionWith( - a1?: ?$ReadOnlyArray, - a2?: ?$ReadOnlyArray, - a3?: ?$ReadOnlyArray, - comparator?: ?Comparator - ): Array; - intersectionWith( - a1?: ?$ReadOnlyArray, - a2?: ?$ReadOnlyArray, - a3?: ?$ReadOnlyArray, - a4?: ?$ReadOnlyArray, - comparator?: ?Comparator - ): Array; - join(array: $ReadOnlyArray, separator?: ?string): string; - join(array: void | null, separator?: ?string): ""; - last(array: ?$ReadOnlyArray): T; - lastIndexOf(array: $ReadOnlyArray, value?: ?T, fromIndex?: ?number): number; - lastIndexOf(array: void | null, value?: ?T, fromIndex?: ?number): -1; - nth(array: $ReadOnlyArray, n?: ?number): T; - nth(array: void | null, n?: ?number): void; - pull(array: Array, ...values?: $ReadOnlyArray): Array; - pull(array: T, ...values?: $ReadOnlyArray): T; - pullAll(array: Array, values?: ?$ReadOnlyArray): Array; - pullAll(array: T, values?: ?$ReadOnlyArray): T; - pullAllBy( - array: Array, - values?: ?$ReadOnlyArray, - iteratee?: ?ValueOnlyIteratee - ): Array; - pullAllBy( - array: T, - values?: ?$ReadOnlyArray, - iteratee?: ?ValueOnlyIteratee - ): T; - pullAllWith( - array: T, - values?: ?$ReadOnlyArray, - comparator?: ?Function - ): T; - pullAllWith(array: Array, values?: ?($ReadOnlyArray), comparator?: ?Function): Array; - pullAt(array?: ?Array, ...indexed?: $ReadOnlyArray): Array; - pullAt(array?: ?Array, indexed?: ?$ReadOnlyArray): Array; - remove(array?: ?Array, predicate?: ?Predicate): Array; - reverse(array: Array): Array; - reverse(array: T): T; - slice( - array?: ?$ReadOnlyArray, - start?: ?number, - end?: ?number - ): Array; - sortedIndex(array: $ReadOnlyArray, value: T): number; - sortedIndex(array: void | null, value: ?T): 0; - sortedIndexBy( - array: $ReadOnlyArray, - value?: ?T, - iteratee?: ?ValueOnlyIteratee - ): number; - sortedIndexBy( - array: void | null, - value?: ?T, - iteratee?: ?ValueOnlyIteratee - ): 0; - sortedIndexOf(array: $ReadOnlyArray, value: T): number; - sortedIndexOf(array: void | null, value?: ?T): -1; - sortedLastIndex(array: $ReadOnlyArray, value: T): number; - sortedLastIndex(array: void | null, value?: ?T): 0; - sortedLastIndexBy( - array: $ReadOnlyArray, - value: T, - iteratee?: ValueOnlyIteratee - ): number; - sortedLastIndexBy( - array: void | null, - value?: ?T, - iteratee?: ?ValueOnlyIteratee - ): 0; - sortedLastIndexOf(array: $ReadOnlyArray, value: T): number; - sortedLastIndexOf(array: void | null, value?: ?T): -1; - sortedUniq(array?: ?$ReadOnlyArray): Array; - sortedUniqBy( - array?: ?$ReadOnlyArray, - iteratee?: ?ValueOnlyIteratee - ): Array; - tail(array?: ?$ReadOnlyArray): Array; - take(array?: ?$ReadOnlyArray, n?: ?number): Array; - takeRight(array?: ?$ReadOnlyArray, n?: ?number): Array; - takeRightWhile(array?: ?$ReadOnlyArray, predicate?: ?Predicate): Array; - takeWhile(array?: ?$ReadOnlyArray, predicate?: ?Predicate): Array; - union(...arrays?: Array<$ReadOnlyArray>): Array; - //Workaround until (...parameter: T, parameter2: U) works - unionBy( - a1?: ?$ReadOnlyArray, - iteratee?: ?ValueOnlyIteratee - ): Array; - unionBy( - a1?: ?$ReadOnlyArray, - a2: $ReadOnlyArray, - iteratee?: ValueOnlyIteratee - ): Array; - unionBy( - a1: $ReadOnlyArray, - a2: $ReadOnlyArray, - a3: $ReadOnlyArray, - iteratee?: ValueOnlyIteratee - ): Array; - unionBy( - a1: $ReadOnlyArray, - a2: $ReadOnlyArray, - a3: $ReadOnlyArray, - a4: $ReadOnlyArray, - iteratee?: ValueOnlyIteratee - ): Array; - //Workaround until (...parameter: T, parameter2: U) works - unionWith(a1?: ?$ReadOnlyArray, comparator?: ?Comparator): Array; - unionWith( - a1: $ReadOnlyArray, - a2: $ReadOnlyArray, - comparator?: Comparator - ): Array; - unionWith( - a1: $ReadOnlyArray, - a2: $ReadOnlyArray, - a3: $ReadOnlyArray, - comparator?: Comparator - ): Array; - unionWith( - a1: $ReadOnlyArray, - a2: $ReadOnlyArray, - a3: $ReadOnlyArray, - a4: $ReadOnlyArray, - comparator?: Comparator - ): Array; - uniq(array?: ?$ReadOnlyArray): Array; - uniqBy(array?: ?$ReadOnlyArray, iteratee?: ?ValueOnlyIteratee): Array; - uniqWith(array?: ?$ReadOnlyArray, comparator?: ?Comparator): Array; - unzip(array?: ?$ReadOnlyArray): Array; - unzipWith(array: ?$ReadOnlyArray, iteratee?: ?Iteratee): Array; - without(array?: ?$ReadOnlyArray, ...values?: Array): Array; - xor(...array: $ReadOnlyArray<$ReadOnlyArray>): Array; - //Workaround until (...parameter: T, parameter2: U) works - xorBy(a1?: ?$ReadOnlyArray, iteratee?: ?ValueOnlyIteratee): Array; - xorBy( - a1: $ReadOnlyArray, - a2: $ReadOnlyArray, - iteratee?: ValueOnlyIteratee - ): Array; - xorBy( - a1: $ReadOnlyArray, - a2: $ReadOnlyArray, - a3: $ReadOnlyArray, - iteratee?: ValueOnlyIteratee - ): Array; - xorBy( - a1: $ReadOnlyArray, - a2: $ReadOnlyArray, - a3: $ReadOnlyArray, - a4: $ReadOnlyArray, - iteratee?: ValueOnlyIteratee - ): Array; - //Workaround until (...parameter: T, parameter2: U) works - xorWith(a1?: ?$ReadOnlyArray, comparator?: ?Comparator): Array; - xorWith( - a1: $ReadOnlyArray, - a2: $ReadOnlyArray, - comparator?: Comparator - ): Array; - xorWith( - a1: $ReadOnlyArray, - a2: $ReadOnlyArray, - a3: $ReadOnlyArray, - comparator?: Comparator - ): Array; - xorWith( - a1: $ReadOnlyArray, - a2: $ReadOnlyArray, - a3: $ReadOnlyArray, - a4: $ReadOnlyArray, - comparator?: Comparator - ): Array; - zip(a1?: ?($ReadOnlyArray), a2?: ?($ReadOnlyArray)): Array<[A, B]>; - zip(a1: $ReadOnlyArray, a2: $ReadOnlyArray, a3: $ReadOnlyArray): Array<[A, B, C]>; - zip(a1: $ReadOnlyArray, a2: $ReadOnlyArray, a3: $ReadOnlyArray, a4: $ReadOnlyArray): Array<[A, B, C, D]>; - zip( - a1: $ReadOnlyArray, - a2: $ReadOnlyArray, - a3: $ReadOnlyArray, - a4: $ReadOnlyArray, - a5: $ReadOnlyArray - ): Array<[A, B, C, D, E]>; - - zipObject(props: $ReadOnlyArray, values?: ?$ReadOnlyArray): { [key: K]: V, ... }; - zipObject(props: void | null, values?: ?$ReadOnlyArray): {...}; - zipObjectDeep(props: $ReadOnlyArray, values?: ?any): Object; - zipObjectDeep(props: void | null, values?: ?any): {...}; - - zipWith(a1?: ?$ReadOnlyArray): Array<[A]>; - zipWith(a1: $ReadOnlyArray, iteratee: (A) => T): Array; - - zipWith(a1: $ReadOnlyArray, a2: $ReadOnlyArray): Array<[A, B]>; - zipWith( - a1: $ReadOnlyArray, - a2: $ReadOnlyArray, - iteratee: (A, B) => T - ): Array; - - zipWith( - a1: $ReadOnlyArray, - a2: $ReadOnlyArray, - a3: $ReadOnlyArray - ): Array<[A, B, C]>; - zipWith( - a1: $ReadOnlyArray, - a2: $ReadOnlyArray, - a3: $ReadOnlyArray, - iteratee: (A, B, C) => T - ): Array; - - zipWith( - a1: $ReadOnlyArray, - a2: $ReadOnlyArray, - a3: $ReadOnlyArray, - a4: $ReadOnlyArray - ): Array<[A, B, C, D]>; - zipWith( - a1: $ReadOnlyArray, - a2: $ReadOnlyArray, - a3: $ReadOnlyArray, - a4: $ReadOnlyArray, - iteratee: (A, B, C, D) => T - ): Array; - - // Collection - countBy(array: $ReadOnlyArray, iteratee?: ?ValueOnlyIteratee): { [string]: number, ... }; - countBy(array: void | null, iteratee?: ?ValueOnlyIteratee): {...}; - countBy(string: string, iteratee?: ?ValueOnlyIteratee): { [string]: number, ... }; - countBy(object: ReadOnlyIndexerObject, iteratee?: ?ValueOnlyIteratee): { [string]: number, ... }; - // alias of _.forEach - each | $ReadOnlyArray | string | void | null>(collection: T, iteratee?: ?IterateeWithResult): T; - // alias of _.forEachRight - eachRight | $ReadOnlyArray | string | void | null>(collection: T, iteratee?: ?IterateeWithResult): T; - every(array?: ?$ReadOnlyArray, iteratee?: ?Iteratee): boolean; - every(str: string, iteratee?: ?Iteratee): boolean; - every>(object: T, iteratee?: OIterateeWithResult): boolean; - filter(array?: ?$ReadOnlyArray, predicate?: ?Predicate): Array; - filter>( - object: T, - predicate?: OPredicate - ): Array; - find( - array: $ReadOnlyArray, - predicate?: ?Predicate, - fromIndex?: ?number - ): T | void; - find( - array: void | null, - predicate?: ?Predicate, - fromIndex?: ?number - ): void; - find>( - object: T, - predicate?: ?OPredicate, - fromIndex?: ?number - ): R; - findLast( - array: $ReadOnlyArray, - predicate?: ?Predicate, - fromIndex?: ?number - ): T | void; - findLast( - array: void | null, - predicate?: ?Predicate, - fromIndex?: ?number - ): void; - findLast>( - object: T, - predicate?: ?OPredicate, - fromIndex?: ?number - ): R; - flatMap = Array>( - array: T, - iteratee?: ?AFlatMapIteratee - ): Array; - flatMap | string = IndexerObject>( - object: T, - iteratee?: ?OFlatMapIteratee - ): Array; - flatMapDeep = Array>( - array: T, - iteratee?: ?AFlatMapIteratee - ): Array; - flatMapDeep | string = IndexerObject>( - object: T, - iteratee?: ?OFlatMapIteratee - ): Array; - flatMapDepth = Array>( - array: T, - iteratee?: ?AFlatMapIteratee, - depth?: ?number - ): Array; - flatMapDepth | string = IndexerObject>( - object: T, - iteratee?: ?OFlatMapIteratee, - depth?: ?number - ): Array; - forEach | $ReadOnlyArray | string | void | null>(collection: T, iteratee?: ?IterateeWithResult): T; - forEachRight | $ReadOnlyArray | string | void | null>(collection: T, iteratee?: ?IterateeWithResult): T; - groupBy( - array: $ReadOnlyArray, - iteratee?: ?ValueOnlyIteratee - ): { [key: V]: Array, ... }; - groupBy(array: void | null, iteratee?: ?ValueOnlyIteratee): {...}; - groupBy>( - object: T, - iteratee?: ValueOnlyIteratee - ): { [key: V]: Array, ... }; - includes( - array: $ReadOnlyArray, - value: T, - fromIndex?: ?number - ): boolean; - includes(array: void | null, value?: ?T, fromIndex?: ?number): false; - includes(object: ReadOnlyIndexerObject, value: A, fromIndex?: number): boolean; - includes(str: string, value: string, fromIndex?: number): boolean; - invokeMap( - array?: ?$ReadOnlyArray, - path?: ?((value: T) => Path) | Path, - ...args?: $ReadOnlyArray - ): Array; - invokeMap( - object: ReadOnlyIndexerObject, - path: ((value: any) => Path) | Path, - ...args?: $ReadOnlyArray - ): Array; - keyBy( - array: $ReadOnlyArray, - iteratee?: ?ValueOnlyIteratee - ): { [key: V]: T, ... }; - keyBy(array: void | null, iteratee?: ?ValueOnlyIteratee<*>): {...}; - keyBy>( - object: T, - iteratee?: ?ValueOnlyIteratee - ): { [key: V]: A, ... }; - map( - array?: ?$ReadOnlyArray, - iteratee?: ?ReadOnlyMapIterator - ): Array; - map, U>( - object: ?T, - iteratee?: OMapIterator - ): Array; - map( - str: ?string, - iteratee?: (char: string, index: number, str: string) => any - ): string; - orderBy( - array: $ReadOnlyArray, - iteratees?: ?$ReadOnlyArray> | ?string, - orders?: ?$ReadOnlyArray<"asc" | "desc"> | ?string - ): Array; - orderBy( - array: null | void, - iteratees?: ?$ReadOnlyArray> | ?string, - orders?: ?$ReadOnlyArray<"asc" | "desc"> | ?string - ): Array; - orderBy>( - object: T, - iteratees?: $ReadOnlyArray> | string, - orders?: $ReadOnlyArray<"asc" | "desc"> | string - ): Array; - partition( - array?: ?$ReadOnlyArray, - predicate?: ?Predicate - ): [Array, Array]; - partition>( - object: T, - predicate?: OPredicate - ): [Array, Array]; - reduce( - array: $ReadOnlyArray, - iteratee?: ( - accumulator: U, - value: T, - index: number, - array: ?Array - ) => U, - accumulator?: U - ): U; - reduce( - array: void | null, - iteratee?: ?( - accumulator: U, - value: T, - index: any, - array: ?Array - ) => U, - accumulator?: U - ): U; - reduce, U>( - object: T, - iteratee?: (accumulator: U, value: any, key: string, object: T) => U, - accumulator?: U - ): U; - reduceRight( - array: void | null, - iteratee?: ?( - accumulator: U, - value: T, - index: any, - array: ?Array - ) => U, - accumulator?: U - ): U; - reduceRight( - array: $ReadOnlyArray, - iteratee?: ?( - accumulator: U, - value: T, - index: number, - array: ?Array - ) => U, - accumulator?: ?U - ): U; - reduceRight, U>( - object: T, - iteratee?: ?(accumulator: U, value: any, key: string, object: T) => U, - accumulator?: ?U - ): U; - reject(array?: ?$ReadOnlyArray, predicate?: ?Predicate): Array; - reject>( - object?: ?T, - predicate?: ?OPredicate - ): Array; - sample(collection: ?Collection): T; - sampleSize(collection?: ?Collection, n?: ?number): Array; - shuffle(array?: ?Collection): Array; - size(collection?: ?Collection | string): number; - some(array: void | null, predicate?: ?Predicate): false; - some(array: ?$ReadOnlyArray, predicate?: Predicate): boolean; - some>( - object?: ?T, - predicate?: OPredicate - ): boolean; - sortBy( - array: ?$ReadOnlyArray, - ...iteratees?: $ReadOnlyArray> - ): Array; - sortBy( - array: ?$ReadOnlyArray, - iteratees?: $ReadOnlyArray> - ): Array; - sortBy>( - object: T, - ...iteratees?: $ReadOnlyArray> - ): Array; - sortBy>( - object: T, - iteratees?: $ReadOnlyArray> - ): Array; - - // Date - now(): number; - - // Function - after(n: number, fn: Function): Function; - ary(func: Function, n?: number): Function; - before(n: number, fn: Function): Function; - bind) => any>(func: F, thisArg: any, ...partials: $ReadOnlyArray): F; - bindKey(obj?: ?Object, key?: ?string, ...partials?: $ReadOnlyArray): Function; - curry: Curry; - curry(func: Function, arity?: number): Function; - curryRight(func: Function, arity?: number): Function; - debounce) => any>( - func: F, - wait?: number, - options?: DebounceOptions - ): F & Cancelable; - defer(func: (...$ReadOnlyArray) => any, ...args?: $ReadOnlyArray): TimeoutID; - delay(func: Function, wait: number, ...args?: $ReadOnlyArray): TimeoutID; - flip(func: (...$ReadOnlyArray) => R): (...Array) => R; - memoize(func: (...A) => R, resolver?: (...A) => any): (...A) => R; - negate(predicate: (...A) => R): (...A) => boolean; - once) => any>(func: F): F; - overArgs(func?: ?Function, ...transforms?: $ReadOnlyArray): Function; - overArgs(func?: ?Function, transforms?: ?$ReadOnlyArray): Function; - partial(func: (...$ReadOnlyArray) => R, ...partials: $ReadOnlyArray): (...Array) => R; - partialRight(func: (...$ReadOnlyArray) => R, ...partials: $ReadOnlyArray): (...Array) => R; - partialRight(func: (...$ReadOnlyArray) => R, partials: $ReadOnlyArray): (...Array) => R; - rearg(func: Function, ...indexes: $ReadOnlyArray): Function; - rearg(func: Function, indexes: $ReadOnlyArray): Function; - rest(func: Function, start?: number): Function; - spread(func: Function): Function; - throttle) => any>( - func: F, - wait?: number, - options?: ThrottleOptions - ): F & Cancelable; - unary) => any>(func: F): F; - wrap(value?: any, wrapper?: ?Function): Function; - - // Lang - castArray(): Array; - castArray(value: T): Array; - castArray>(value: T): T; - clone(value: T): T; - cloneDeep(value: T): T; - cloneDeepWith( - value: T, - customizer?: ?(value: T, key: number | string, object: T, stack: any) => U - ): U; - cloneWith( - value: T, - customizer?: ?(value: T, key: number | string, object: T, stack: any) => U - ): U; - conformsTo>( - source: T, - predicates: T & $ReadOnly<{ [key: string]: (x: any) => boolean, ... }> - ): boolean; - eq(value: any, other: any): boolean; - gt(value: any, other: any): boolean; - gte(value: any, other: any): boolean; - isArguments(value: void | null): false; - isArguments(value: any): boolean; - isArray(value: $ReadOnlyArray): true; - isArray(value: any): false; - isArrayBuffer(value: ArrayBuffer): true; - isArrayBuffer(value: any): false; - isArrayLike(value: $ReadOnlyArray | string | { length: number, ... }): true; - isArrayLike(value: any): false; - isArrayLikeObject(value: { length: number, ... } | $ReadOnlyArray): true; - isArrayLikeObject(value: any): false; - isBoolean(value: boolean): true; - isBoolean(value: any): false; - isBuffer(value: void | null): false; - isBuffer(value: any): boolean; - isDate(value: Date): true; - isDate(value: any): false; - isElement(value: Element): true; - isElement(value: any): false; - isEmpty(value: void | null | "" | {...} | [] | number | boolean): true; - isEmpty(value: any): boolean; - isEqual(value: any, other: any): boolean; - isEqualWith( - value?: ?T, - other?: ?U, - customizer?: ?( - objValue: any, - otherValue: any, - key: number | string, - object: T, - other: U, - stack: any - ) => boolean | void - ): boolean; - isError(value: Error): true; - isError(value: any): false; - isFinite(value: number): boolean; - isFinite(value: any): false; - isFunction(value: Function): true; - isFunction(value: any): false; - isInteger(value: number): boolean; - isInteger(value: any): false; - isLength(value: void | null): false; - isLength(value: any): boolean; - isMap(value: Map): true; - isMap(value: any): false; - isMatch(object?: ?Object, source?: ?Object): boolean; - isMatchWith( - object?: ?T, - source?: ?U, - customizer?: ?( - objValue: any, - srcValue: any, - key: number | string, - object: T, - source: U - ) => boolean | void - ): boolean; - isNaN(value: number): boolean; - isNaN(value: any): false; - isNative(value: number | string | void | null | Object): false; - isNative(value: any): boolean; - isNil(value: void | null): true; - isNil(value: any): false; - isNull(value: null): true; - isNull(value: any): false; - isNumber(value: number): true; - isNumber(value: any): false; - isObject(value: any): boolean; - isObjectLike(value: void | null): false; - isObjectLike(value: any): boolean; - isPlainObject(value: any): boolean; - isRegExp(value: RegExp): true; - isRegExp(value: any): false; - isSafeInteger(value: number): boolean; - isSafeInteger(value: any): false; - isSet(value: Set): true; - isSet(value: any): false; - isString(value: string): true; - isString(value: any): false; - isSymbol(value: Symbol): true; - isSymbol(value: any): false; - isTypedArray(value: $TypedArray): true; - isTypedArray(value: any): false; - isUndefined(value: void): true; - isUndefined(value: any): false; - isWeakMap(value: WeakMap): true; - isWeakMap(value: any): false; - isWeakSet(value: WeakSet): true; - isWeakSet(value: any): false; - lt(value: any, other: any): boolean; - lte(value: any, other: any): boolean; - toArray(value: any): Array; - toFinite(value: void | null): 0; - toFinite(value: any): number; - toInteger(value: void | null): 0; - toInteger(value: any): number; - toLength(value: void | null): 0; - toLength(value: any): number; - toNumber(value: void | null): 0; - toNumber(value: any): number; - toPlainObject(value: any): Object; - toSafeInteger(value: void | null): 0; - toSafeInteger(value: any): number; - toString(value: void | null): ""; - toString(value: any): string; - - // Math - add(augend: number, addend: number): number; - ceil(number: number, precision?: number): number; - divide(dividend: number, divisor: number): number; - floor(number: number, precision?: number): number; - max(array: ?$ReadOnlyArray): T; - maxBy(array: ?$ReadOnlyArray, iteratee?: Iteratee): T; - mean(array: $ReadOnlyArray<*>): number; - meanBy(array: $ReadOnlyArray, iteratee?: Iteratee): number; - min(array: ?$ReadOnlyArray): T; - minBy(array: ?$ReadOnlyArray, iteratee?: Iteratee): T; - multiply(multiplier: number, multiplicand: number): number; - round(number: number, precision?: number): number; - subtract(minuend: number, subtrahend: number): number; - sum(array: $ReadOnlyArray<*>): number; - sumBy(array: $ReadOnlyArray, iteratee?: Iteratee): number; - - // number - clamp(number?: number, lower?: ?number, upper?: ?number): number; - clamp(number: ?number, lower?: ?number, upper?: ?number): 0; - inRange(number: number, start?: number, end: number): boolean; - random(lower?: number, upper?: number, floating?: boolean): number; - - // Object - assign(object?: ?Object, ...sources?: $ReadOnlyArray): Object; - assignIn(): {...}; - assignIn(a: A, b: B): A & B; - assignIn(a: A, b: B, c: C): A & B & C; - assignIn(a: A, b: B, c: C, d: D): A & B & C & D; - assignIn(a: A, b: B, c: C, d: D, e: E): A & B & C & D & E; - assignInWith(): {...}; - assignInWith( - object: T, - s1: A, - customizer?: ( - objValue: any, - srcValue: any, - key: string, - object: T, - source: A - ) => any | void - ): Object; - assignInWith( - object: T, - s1: A, - s2: B, - customizer?: ( - objValue: any, - srcValue: any, - key: string, - object: T, - source: A | B - ) => any | void - ): Object; - assignInWith( - object: T, - s1: A, - s2: B, - s3: C, - customizer?: ( - objValue: any, - srcValue: any, - key: string, - object: T, - source: A | B | C - ) => any | void - ): Object; - assignInWith( - object: T, - s1: A, - s2: B, - s3: C, - s4: D, - customizer?: ( - objValue: any, - srcValue: any, - key: string, - object: T, - source: A | B | C | D - ) => any | void - ): Object; - assignWith(): {...}; - assignWith( - object: T, - s1: A, - customizer?: ( - objValue: any, - srcValue: any, - key: string, - object: T, - source: A - ) => any | void - ): Object; - assignWith( - object: T, - s1: A, - s2: B, - customizer?: ( - objValue: any, - srcValue: any, - key: string, - object: T, - source: A | B - ) => any | void - ): Object; - assignWith( - object: T, - s1: A, - s2: B, - s3: C, - customizer?: ( - objValue: any, - srcValue: any, - key: string, - object: T, - source: A | B | C - ) => any | void - ): Object; - assignWith( - object: T, - s1: A, - s2: B, - s3: C, - s4: D, - customizer?: ( - objValue: any, - srcValue: any, - key: string, - object: T, - source: A | B | C | D - ) => any | void - ): Object; - at(object?: ?Object, ...paths: $ReadOnlyArray): Array; - at(object?: ?Object, paths: $ReadOnlyArray): Array; - create(prototype: void | null, properties: void | null): {...}; - create(prototype: T, properties: Object): T; - create(prototype: any, properties: void | null): {...}; - defaults(object?: ?Object, ...sources?: $ReadOnlyArray): Object; - defaultsDeep(object?: ?Object, ...sources?: $ReadOnlyArray): Object; - // alias for _.toPairs - entries(object?: ?Object): Array<[string, any]>; - // alias for _.toPairsIn - entriesIn(object?: ?Object): Array<[string, any]>; - // alias for _.assignIn - extend(a?: ?A, b?: ?B): A & B; - extend(a: A, b: B, c: C): A & B & C; - extend(a: A, b: B, c: C, d: D): A & B & C & D; - extend(a: A, b: B, c: C, d: D, e: E): A & B & C & D & E; - // alias for _.assignInWith - extendWith( - object?: ?T, - s1?: ?A, - customizer?: ?( - objValue: any, - srcValue: any, - key: string, - object: T, - source: A - ) => any | void - ): Object; - extendWith( - object: T, - s1: A, - s2: B, - customizer?: ( - objValue: any, - srcValue: any, - key: string, - object: T, - source: A | B - ) => any | void - ): Object; - extendWith( - object: T, - s1: A, - s2: B, - s3: C, - customizer?: ( - objValue: any, - srcValue: any, - key: string, - object: T, - source: A | B | C - ) => any | void - ): Object; - extendWith( - object: T, - s1: A, - s2: B, - s3: C, - s4: D, - customizer?: ( - objValue: any, - srcValue: any, - key: string, - object: T, - source: A | B | C | D - ) => any | void - ): Object; - findKey>( - object: T, - predicate?: ?OPredicate - ): string | void; - findKey>( - object: void | null, - predicate?: ?OPredicate - ): void; - findLastKey>( - object: T, - predicate?: ?OPredicate - ): string | void; - findLastKey>( - object: void | null, - predicate?: ?OPredicate - ): void; - forIn(object: Object, iteratee?: ?OIteratee<*>): Object; - forIn(object: void | null, iteratee?: ?OIteratee<*>): null; - forInRight(object: Object, iteratee?: ?OIteratee<*>): Object; - forInRight(object: void | null, iteratee?: ?OIteratee<*>): null; - forOwn(object: Object, iteratee?: ?OIteratee<*>): Object; - forOwn(object: void | null, iteratee?: ?OIteratee<*>): null; - forOwnRight(object: Object, iteratee?: ?OIteratee<*>): Object; - forOwnRight(object: void | null, iteratee?: ?OIteratee<*>): null; - functions(object?: ?Object): Array; - functionsIn(object?: ?Object): Array; - get( - object?: ?Object | ?$ReadOnlyArray | void | null, - path?: ?Path, - defaultValue?: any - ): any; - has(object: Object, path: Path): boolean; - has(object: Object, path: void | null): false; - has(object: void | null, path?: ?Path): false; - hasIn(object: Object, path: Path): boolean; - hasIn(object: Object, path: void | null): false; - hasIn(object: void | null, path?: ?Path): false; - invert(object: Object, multiVal?: ?boolean): Object; - invert(object: void | null, multiVal?: ?boolean): {...}; - invertBy(object: Object, iteratee?: ?Function): Object; - invertBy(object: void | null, iteratee?: ?Function): {...}; - invoke( - object?: ?Object, - path?: ?Path, - ...args?: $ReadOnlyArray - ): any; - keys(object?: ?ReadOnlyIndexerObject): Array; - keys(object?: ?Object): Array; - keysIn(object?: ?Object): Array; - mapKeys(object: Object, iteratee?: ?OIteratee<*>): Object; - mapKeys(object: void | null, iteratee?: ?OIteratee<*>): {...}; - mapValues(object: Object, iteratee?: ?OIteratee<*>): Object; - mapValues(object: void | null, iteratee?: ?OIteratee<*>): {...}; - merge(object?: ?Object, ...sources?: $ReadOnlyArray): Object; - mergeWith(): {...}; - mergeWith( - object: T, - customizer?: ( - objValue: any, - srcValue: any, - key: string, - object: T, - source: A - ) => any | void - ): Object; - mergeWith( - object: T, - s1: A, - s2: B, - customizer?: ( - objValue: any, - srcValue: any, - key: string, - object: T, - source: A | B - ) => any | void - ): Object; - mergeWith( - object: T, - s1: A, - s2: B, - s3: C, - customizer?: ( - objValue: any, - srcValue: any, - key: string, - object: T, - source: A | B | C - ) => any | void - ): Object; - mergeWith( - object: T, - s1: A, - s2: B, - s3: C, - s4: D, - customizer?: ( - objValue: any, - srcValue: any, - key: string, - object: T, - source: A | B | C | D - ) => any | void - ): Object; - omit(object?: ?Object, ...props: $ReadOnlyArray): Object; - omit(object?: ?Object, props: $ReadOnlyArray): Object; - omitBy>( - object: $ReadOnly, - predicate?: ?OPredicate - ): Object; - omitBy(object: void | null, predicate?: ?OPredicate): {...}; - pick(object?: ?Object, ...props: $ReadOnlyArray): Object; - pick(object?: ?Object, props: $ReadOnlyArray): Object; - pickBy>( - object: $ReadOnly, - predicate?: ?OPredicate - ): Object; - pickBy(object: void | null, predicate?: ?OPredicate): {...}; - result( - object?: ?Object, - path?: ?Path, - defaultValue?: any - ): any; - set(object: Object, path?: ?Path, value: any): Object; - set( - object: T, - path?: ?Path, - value?: ?any - ): T; - setWith( - object: T, - path?: ?Path, - value: any, - customizer?: (nsValue: any, key: string, nsObject: T) => any - ): Object; - setWith( - object: T, - path?: ?Path, - value?: ?any, - customizer?: ?(nsValue: any, key: string, nsObject: T) => any - ): T; - toPairs(object?: ?Object | $ReadOnlyArray<*>): Array<[string, any]>; - toPairsIn(object?: ?Object): Array<[string, any]>; - transform( - collection: Object | $ReadOnlyArray, - iteratee?: ?OIteratee<*>, - accumulator?: any - ): any; - transform( - collection: void | null, - iteratee?: ?OIteratee<*>, - accumulator?: ?any - ): {...}; - unset(object: void | null, path?: ?Path): true; - unset(object: Object, path?: ?Path): boolean; - update(object: Object, path: Path, updater: Function): Object; - update( - object: T, - path?: ?Path, - updater?: ?Function - ): T; - updateWith( - object: Object, - path?: ?Path, - updater?: ?Function, - customizer?: ?Function - ): Object; - updateWith( - object: T, - path?: ?Path, - updater?: ?Function, - customizer?: ?Function - ): T; - values(object?: ?Object): Array; - valuesIn(object?: ?Object): Array; - - // Seq - // harder to read, but this is _() - (value: any): any; - chain(value: T): any; - tap(value: T, interceptor: (value: T) => any): T; - thru(value: T1, interceptor: (value: T1) => T2): T2; - // TODO: _.prototype.* - - // String - camelCase(string: string): string; - camelCase(string: void | null): ""; - capitalize(string: string): string; - capitalize(string: void | null): ""; - deburr(string: string): string; - deburr(string: void | null): ""; - endsWith(string: string, target?: string, position?: ?number): boolean; - endsWith(string: void | null, target?: ?string, position?: ?number): false; - escape(string: string): string; - escape(string: void | null): ""; - escapeRegExp(string: string): string; - escapeRegExp(string: void | null): ""; - kebabCase(string: string): string; - kebabCase(string: void | null): ""; - lowerCase(string: string): string; - lowerCase(string: void | null): ""; - lowerFirst(string: string): string; - lowerFirst(string: void | null): ""; - pad(string?: ?string, length?: ?number, chars?: ?string): string; - padEnd(string?: ?string, length?: ?number, chars?: ?string): string; - padStart(string?: ?string, length?: ?number, chars?: ?string): string; - parseInt(string: string, radix?: ?number): number; - repeat(string: string, n?: ?number): string; - repeat(string: void | null, n?: ?number): ""; - replace( - string: string, - pattern: RegExp | string, - replacement: ((string: string) => string) | string - ): string; - replace( - string: void | null, - pattern?: ?RegExp | ?string, - replacement: ?((string: string) => string) | ?string - ): ""; - snakeCase(string: string): string; - snakeCase(string: void | null): ""; - split( - string?: ?string, - separator?: ?RegExp | ?string, - limit?: ?number - ): Array; - startCase(string: string): string; - startCase(string: void | null): ""; - startsWith(string: string, target?: string, position?: number): boolean; - startsWith( - string: void | null, - target?: ?string, - position?: ?number - ): false; - template(string?: ?string, options?: ?TemplateSettings): Function; - toLower(string: string): string; - toLower(string: void | null): ""; - toUpper(string: string): string; - toUpper(string: void | null): ""; - trim(string: string, chars?: string): string; - trim(string: void | null, chars?: ?string): ""; - trimEnd(string: string, chars?: ?string): string; - trimEnd(string: void | null, chars?: ?string): ""; - trimStart(string: string, chars?: ?string): string; - trimStart(string: void | null, chars?: ?string): ""; - truncate(string: string, options?: TruncateOptions): string; - truncate(string: void | null, options?: ?TruncateOptions): ""; - unescape(string: string): string; - unescape(string: void | null): ""; - upperCase(string: string): string; - upperCase(string: void | null): ""; - upperFirst(string: string): string; - upperFirst(string: void | null): ""; - words(string?: ?string, pattern?: ?RegExp | ?string): Array; - - // Util - attempt(func: Function, ...args: $ReadOnlyArray): any; - bindAll(object: Object, methodNames?: ?$ReadOnlyArray): Object; - bindAll(object: T, methodNames?: ?$ReadOnlyArray): T; - bindAll(object: Object, ...methodNames: $ReadOnlyArray): Object; - cond(pairs?: ?NestedArray): Function; - conforms(source?: ?Object): Function; - constant(value: T): () => T; - defaultTo(value: T1, defaultValue: T2): T2; - defaultTo( - value: T1, - defaultValue: T2 - ): T1; - // NaN is a number instead of its own type, otherwise it would behave like null/void - defaultTo(value: T1, defaultValue: T2): T1 | T2; - flow: $ComposeReverse & ((funcs: $ReadOnlyArray) => Function); - flowRight: $Compose & ((funcs: $ReadOnlyArray) => Function); - identity(value: T): T; - iteratee(func?: any): Function; - matches(source?: ?Object): Function; - matchesProperty(path?: ?Path, srcValue: any): Function; - method(path?: ?Path, ...args?: $ReadOnlyArray): Function; - methodOf(object?: ?Object, ...args?: $ReadOnlyArray): Function; - mixin( - object?: T, - source: Object, - options?: { chain: boolean, ... } - ): T; - noConflict(): Lodash; - noop(...args: $ReadOnlyArray): void; - nthArg(n?: ?number): Function; - over(...iteratees: $ReadOnlyArray): Function; - over(iteratees: $ReadOnlyArray): Function; - overEvery(...predicates: $ReadOnlyArray): Function; - overEvery(predicates: $ReadOnlyArray): Function; - overSome(...predicates: $ReadOnlyArray): Function; - overSome(predicates: $ReadOnlyArray): Function; - property(path?: ?Path): Function; - propertyOf(object?: ?Object): Function; - range(start: number, end: number, step?: number): Array; - range(end: number, step?: number): Array; - rangeRight(start?: ?number, end?: ?number, step?: ?number): Array; - rangeRight(end?: ?number, step?: ?number): Array; - runInContext(context?: ?Object): Function; - - stubArray(): Array<*>; - stubFalse(): false; - stubObject(): {...}; - stubString(): ""; - stubTrue(): true; - times(n?: ?number, ...rest?: $ReadOnlyArray): Array; - times(n: number, iteratee: (i: number) => T): Array; - toPath(value: any): Array; - uniqueId(prefix?: ?string): string; - - // Properties - VERSION: string; - templateSettings: TemplateSettings; - } - - declare module.exports: Lodash; -} - -declare module "lodash/fp" { - declare type Path = $ReadOnlyArray | string | number; - declare type __CurriedFunction1 = (...r: [AA]) => R; - declare type CurriedFunction1 = __CurriedFunction1; - - declare type __CurriedFunction2 = (( - ...r: [AA] - ) => CurriedFunction1) & - ((...r: [AA, BB]) => R); - declare type CurriedFunction2 = __CurriedFunction2; - - declare type __CurriedFunction3 = (( - ...r: [AA] - ) => CurriedFunction2) & - ((...r: [AA, BB]) => CurriedFunction1) & - ((...r: [AA, BB, CC]) => R); - declare type CurriedFunction3 = __CurriedFunction3< - A, - B, - C, - R, - *, - *, - * - >; - - declare type __CurriedFunction4< - A, - B, - C, - D, - R, - AA: A, - BB: B, - CC: C, - DD: D - > = ((...r: [AA]) => CurriedFunction3) & - ((...r: [AA, BB]) => CurriedFunction2) & - ((...r: [AA, BB, CC]) => CurriedFunction1) & - ((...r: [AA, BB, CC, DD]) => R); - declare type CurriedFunction4 = __CurriedFunction4< - A, - B, - C, - D, - R, - *, - *, - *, - * - >; - - declare type __CurriedFunction5< - A, - B, - C, - D, - E, - R, - AA: A, - BB: B, - CC: C, - DD: D, - EE: E - > = ((...r: [AA]) => CurriedFunction4) & - ((...r: [AA, BB]) => CurriedFunction3) & - ((...r: [AA, BB, CC]) => CurriedFunction2) & - ((...r: [AA, BB, CC, DD]) => CurriedFunction1) & - ((...r: [AA, BB, CC, DD, EE]) => R); - declare type CurriedFunction5 = __CurriedFunction5< - A, - B, - C, - D, - E, - R, - *, - *, - *, - *, - * - >; - - declare type __CurriedFunction6< - A, - B, - C, - D, - E, - F, - R, - AA: A, - BB: B, - CC: C, - DD: D, - EE: E, - FF: F - > = ((...r: [AA]) => CurriedFunction5) & - ((...r: [AA, BB]) => CurriedFunction4) & - ((...r: [AA, BB, CC]) => CurriedFunction3) & - ((...r: [AA, BB, CC, DD]) => CurriedFunction2) & - ((...r: [AA, BB, CC, DD, EE]) => CurriedFunction1) & - ((...r: [AA, BB, CC, DD, EE, FF]) => R); - declare type CurriedFunction6 = __CurriedFunction6< - A, - B, - C, - D, - E, - F, - R, - *, - *, - *, - *, - *, - * - >; - - declare type Curry = (((...r: [A]) => R) => CurriedFunction1) & - (((...r: [A, B]) => R) => CurriedFunction2) & - (((...r: [A, B, C]) => R) => CurriedFunction3) & - (( - (...r: [A, B, C, D]) => R - ) => CurriedFunction4) & - (( - (...r: [A, B, C, D, E]) => R - ) => CurriedFunction5) & - (( - (...r: [A, B, C, D, E, F]) => R - ) => CurriedFunction6); - - declare type UnaryFn = (a: A) => R; - - declare type TemplateSettings = { - escape?: RegExp, - evaluate?: RegExp, - imports?: Object, - interpolate?: RegExp, - variable?: string, - ... - }; - - declare type TruncateOptions = { - length?: number, - omission?: string, - separator?: RegExp | string, - ... - }; - - declare type DebounceOptions = { - leading?: boolean, - maxWait?: number, - trailing?: boolean, - ... - }; - - declare type ThrottleOptions = { - leading?: boolean, - trailing?: boolean, - ... - }; - - declare type Key = string | number; - declare type ReadOnlyIndexerObject = $ReadOnly<{ [id: K]: V, ... }> - declare type NestedArray = Array>; - declare type Collection = $ReadOnlyArray | ReadOnlyIndexerObject; - - declare type matchesIterateeShorthand = { [Key]: any, ... }; - declare type matchesPropertyIterateeShorthand = [string, any]; - declare type propertyIterateeShorthand = string; - - declare type OPredicate = - | ((value: A) => any) - | matchesIterateeShorthand - | matchesPropertyIterateeShorthand - | propertyIterateeShorthand; - - declare type IterateeWithResult = - | ((value: V) => R) - | string; - - declare type OIterateeWithResult = - | ReadOnlyIndexerObject - | IterateeWithResult; - declare type OIteratee = OIterateeWithResult; - - declare type Predicate = - | ((value: T) => any) - | matchesIterateeShorthand - | matchesPropertyIterateeShorthand - | propertyIterateeShorthand; - - declare type _ValueOnlyIteratee = (value: T) => mixed; - declare type ValueOnlyIteratee = _ValueOnlyIteratee | string; - declare type _Iteratee = (item: T) => mixed; - declare type Iteratee = _Iteratee | Object | string; - declare type AFlatMapIteratee = - | ((item: T) => Array) - | string; - declare type OFlatMapIteratee = IterateeWithResult>; - declare type Comparator = (item: T, item2: T) => boolean; - - declare type MapIterator = ((item: T) => U) | propertyIterateeShorthand; - - declare type OMapIterator = - | ((item: T) => U) - | propertyIterateeShorthand; - - declare class Lodash { - // Array - chunk(size: number): (array: $ReadOnlyArray) => Array>; - chunk(size: number, array: $ReadOnlyArray): Array>; - compact(array?: ?$ReadOnlyArray): Array; - concat | T, B: Array | U>( - base: A - ): (elements: B) => Array; - concat | T, B: Array | U>( - base: A, - elements: B - ): Array; - difference(values: $ReadOnlyArray): (array: $ReadOnlyArray) => Array; - difference(values: $ReadOnlyArray, array: $ReadOnlyArray): Array; - differenceBy( - iteratee: ValueOnlyIteratee - ): ((values: $ReadOnlyArray) => (array: $ReadOnlyArray) => Array) & - ((values: $ReadOnlyArray, array: $ReadOnlyArray) => Array); - differenceBy( - iteratee: ValueOnlyIteratee, - values: $ReadOnlyArray - ): (array: $ReadOnlyArray) => Array; - differenceBy( - iteratee: ValueOnlyIteratee, - values: $ReadOnlyArray, - array: $ReadOnlyArray - ): Array; - differenceWith( - comparator: Comparator - ): ((first: $ReadOnlyArray) => (second: $ReadOnlyArray) => Array) & - ((first: $ReadOnlyArray, second: $ReadOnlyArray) => Array); - differenceWith( - comparator: Comparator, - first: $ReadOnlyArray - ): (second: $ReadOnlyArray) => Array; - differenceWith( - comparator: Comparator, - first: $ReadOnlyArray, - second: $ReadOnlyArray - ): Array; - drop(n: number): (array: $ReadOnlyArray) => Array; - drop(n: number, array: $ReadOnlyArray): Array; - dropLast(n: number): (array: $ReadOnlyArray) => Array; - dropLast(n: number, array: $ReadOnlyArray): Array; - dropRight(n: number): (array: $ReadOnlyArray) => Array; - dropRight(n: number, array: $ReadOnlyArray): Array; - dropRightWhile(predicate: Predicate): (array: $ReadOnlyArray) => Array; - dropRightWhile(predicate: Predicate, array: $ReadOnlyArray): Array; - dropWhile(predicate: Predicate): (array: $ReadOnlyArray) => Array; - dropWhile(predicate: Predicate, array: $ReadOnlyArray): Array; - dropLastWhile(predicate: Predicate): (array: $ReadOnlyArray) => Array; - dropLastWhile(predicate: Predicate, array: $ReadOnlyArray): Array; - fill( - start: number - ): (( - end: number - ) => ((value: U) => (array: Array) => Array) & - ((value: U, array: Array) => Array)) & - ((end: number, value: U) => (array: Array) => Array) & - ((end: number, value: U, array: Array) => Array); - fill( - start: number, - end: number - ): ((value: U) => (array: Array) => Array) & - ((value: U, array: Array) => Array); - fill( - start: number, - end: number, - value: U - ): (array: Array) => Array; - fill( - start: number, - end: number, - value: U, - array: Array - ): Array; - findIndex(predicate: Predicate): (array: $ReadOnlyArray) => number; - findIndex(predicate: Predicate, array: $ReadOnlyArray): number; - findIndexFrom( - predicate: Predicate - ): ((fromIndex: number) => (array: $ReadOnlyArray) => number) & - ((fromIndex: number, array: $ReadOnlyArray) => number); - findIndexFrom( - predicate: Predicate, - fromIndex: number - ): (array: $ReadOnlyArray) => number; - findIndexFrom( - predicate: Predicate, - fromIndex: number, - array: $ReadOnlyArray - ): number; - findLastIndex( - predicate: Predicate - ): (array: $ReadOnlyArray) => number; - findLastIndex(predicate: Predicate, array: $ReadOnlyArray): number; - findLastIndexFrom( - predicate: Predicate - ): ((fromIndex: number) => (array: $ReadOnlyArray) => number) & - ((fromIndex: number, array: $ReadOnlyArray) => number); - findLastIndexFrom( - predicate: Predicate, - fromIndex: number - ): (array: $ReadOnlyArray) => number; - findLastIndexFrom( - predicate: Predicate, - fromIndex: number, - array: $ReadOnlyArray - ): number; - // alias of _.head - first(array: $ReadOnlyArray): T; - flatten(array: $ReadOnlyArray<$ReadOnlyArray | X>): Array; - unnest(array: $ReadOnlyArray<$ReadOnlyArray | X>): Array; - flattenDeep(array: $ReadOnlyArray): Array; - flattenDepth(depth: number): (array: $ReadOnlyArray) => Array; - flattenDepth(depth: number, array: $ReadOnlyArray): Array; - fromPairs(pairs: $ReadOnlyArray<[A, B]>): {| [key: A]: B |}; - head(array: $ReadOnlyArray): T; - indexOf(value: T): (array: $ReadOnlyArray) => number; - indexOf(value: T, array: $ReadOnlyArray): number; - indexOfFrom( - value: T - ): ((fromIndex: number) => (array: $ReadOnlyArray) => number) & - ((fromIndex: number, array: $ReadOnlyArray) => number); - indexOfFrom(value: T, fromIndex: number): (array: $ReadOnlyArray) => number; - indexOfFrom(value: T, fromIndex: number, array: $ReadOnlyArray): number; - initial(array: $ReadOnlyArray): Array; - init(array: $ReadOnlyArray): Array; - intersection(a1: $ReadOnlyArray): (a2: $ReadOnlyArray) => Array; - intersection(a1: $ReadOnlyArray, a2: $ReadOnlyArray): Array; - intersectionBy( - iteratee: ValueOnlyIteratee - ): ((a1: $ReadOnlyArray) => (a2: $ReadOnlyArray) => Array) & - ((a1: $ReadOnlyArray, a2: $ReadOnlyArray) => Array); - intersectionBy( - iteratee: ValueOnlyIteratee, - a1: $ReadOnlyArray - ): (a2: $ReadOnlyArray) => Array; - intersectionBy( - iteratee: ValueOnlyIteratee, - a1: $ReadOnlyArray, - a2: $ReadOnlyArray - ): Array; - intersectionWith( - comparator: Comparator - ): ((a1: $ReadOnlyArray) => (a2: $ReadOnlyArray) => Array) & - ((a1: $ReadOnlyArray, a2: $ReadOnlyArray) => Array); - intersectionWith( - comparator: Comparator, - a1: $ReadOnlyArray - ): (a2: $ReadOnlyArray) => Array; - intersectionWith( - comparator: Comparator, - a1: $ReadOnlyArray, - a2: $ReadOnlyArray - ): Array; - join(separator: string): (array: $ReadOnlyArray) => string; - join(separator: string, array: $ReadOnlyArray): string; - last(array: $ReadOnlyArray): T; - lastIndexOf(value: T): (array: $ReadOnlyArray) => number; - lastIndexOf(value: T, array: $ReadOnlyArray): number; - lastIndexOfFrom( - value: T - ): ((fromIndex: number) => (array: $ReadOnlyArray) => number) & - ((fromIndex: number, array: $ReadOnlyArray) => number); - lastIndexOfFrom( - value: T, - fromIndex: number - ): (array: $ReadOnlyArray) => number; - lastIndexOfFrom(value: T, fromIndex: number, array: $ReadOnlyArray): number; - nth(n: number): (array: $ReadOnlyArray) => T; - nth(n: number, array: $ReadOnlyArray): T; - pull(value: T): (array: Array) => Array; - pull(value: T, array: Array): Array; - pullAll(values: $ReadOnlyArray): (array: Array) => Array; - pullAll(values: $ReadOnlyArray, array: Array): Array; - pullAllBy( - iteratee: ValueOnlyIteratee - ): ((values: $ReadOnlyArray) => (array: Array) => Array) & - ((values: $ReadOnlyArray, array: Array) => Array); - pullAllBy( - iteratee: ValueOnlyIteratee, - values: $ReadOnlyArray - ): (array: Array) => Array; - pullAllBy( - iteratee: ValueOnlyIteratee, - values: $ReadOnlyArray, - array: Array - ): Array; - pullAllWith( - comparator: Function - ): ((values: Array) => (array: Array) => Array) & - ((values: Array, array: Array) => Array); - pullAllWith(comparator: Function, values: Array): (array: Array) => Array; - pullAllWith(comparator: Function, values: Array, array: Array): Array; - pullAt(indexed: Array): (array: Array) => Array; - pullAt(indexed: Array, array: Array): Array; - remove(predicate: Predicate): (array: Array) => Array; - remove(predicate: Predicate, array: Array): Array; - reverse(array: Array): Array; - slice( - start: number - ): ((end: number) => (array: $ReadOnlyArray) => Array) & - ((end: number, array: $ReadOnlyArray) => Array); - slice(start: number, end: number): (array: $ReadOnlyArray) => Array; - slice(start: number, end: number, array: $ReadOnlyArray): Array; - sortedIndex(value: T): (array: $ReadOnlyArray) => number; - sortedIndex(value: T, array: $ReadOnlyArray): number; - sortedIndexBy( - iteratee: ValueOnlyIteratee - ): ((value: T) => (array: $ReadOnlyArray) => number) & - ((value: T, array: $ReadOnlyArray) => number); - sortedIndexBy( - iteratee: ValueOnlyIteratee, - value: T - ): (array: $ReadOnlyArray) => number; - sortedIndexBy( - iteratee: ValueOnlyIteratee, - value: T, - array: $ReadOnlyArray - ): number; - sortedIndexOf(value: T): (array: $ReadOnlyArray) => number; - sortedIndexOf(value: T, array: $ReadOnlyArray): number; - sortedLastIndex(value: T): (array: $ReadOnlyArray) => number; - sortedLastIndex(value: T, array: $ReadOnlyArray): number; - sortedLastIndexBy( - iteratee: ValueOnlyIteratee - ): ((value: T) => (array: $ReadOnlyArray) => number) & - ((value: T, array: $ReadOnlyArray) => number); - sortedLastIndexBy( - iteratee: ValueOnlyIteratee, - value: T - ): (array: $ReadOnlyArray) => number; - sortedLastIndexBy( - iteratee: ValueOnlyIteratee, - value: T, - array: $ReadOnlyArray - ): number; - sortedLastIndexOf(value: T): (array: $ReadOnlyArray) => number; - sortedLastIndexOf(value: T, array: $ReadOnlyArray): number; - sortedUniq(array: $ReadOnlyArray): Array; - sortedUniqBy(iteratee: ValueOnlyIteratee, array: $ReadOnlyArray): Array; - tail(array: $ReadOnlyArray): Array; - take(n: number): (array: $ReadOnlyArray) => Array; - take(n: number, array: $ReadOnlyArray): Array; - takeRight(n: number): (array: $ReadOnlyArray) => Array; - takeRight(n: number, array: $ReadOnlyArray): Array; - takeLast(n: number): (array: $ReadOnlyArray) => Array; - takeLast(n: number, array: $ReadOnlyArray): Array; - takeRightWhile(predicate: Predicate): (array: $ReadOnlyArray) => Array; - takeRightWhile(predicate: Predicate, array: $ReadOnlyArray): Array; - takeLastWhile(predicate: Predicate): (array: $ReadOnlyArray) => Array; - takeLastWhile(predicate: Predicate, array: $ReadOnlyArray): Array; - takeWhile(predicate: Predicate): (array: $ReadOnlyArray) => Array; - takeWhile(predicate: Predicate, array: $ReadOnlyArray): Array; - union(a1: $ReadOnlyArray): (a2: $ReadOnlyArray) => Array; - union(a1: $ReadOnlyArray, a2: $ReadOnlyArray): Array; - unionBy( - iteratee: ValueOnlyIteratee - ): ((a1: $ReadOnlyArray) => (a2: $ReadOnlyArray) => Array) & - ((a1: $ReadOnlyArray, a2: $ReadOnlyArray) => Array); - unionBy( - iteratee: ValueOnlyIteratee, - a1: $ReadOnlyArray - ): (a2: $ReadOnlyArray) => Array; - unionBy( - iteratee: ValueOnlyIteratee, - a1: $ReadOnlyArray, - a2: $ReadOnlyArray - ): Array; - unionWith( - comparator: Comparator - ): ((a1: $ReadOnlyArray) => (a2: $ReadOnlyArray) => Array) & - ((a1: $ReadOnlyArray, a2: $ReadOnlyArray) => Array); - unionWith( - comparator: Comparator, - a1: $ReadOnlyArray - ): (a2: $ReadOnlyArray) => Array; - unionWith( - comparator: Comparator, - a1: $ReadOnlyArray, - a2: $ReadOnlyArray - ): Array; - uniq(array: $ReadOnlyArray): Array; - uniqBy(iteratee: ValueOnlyIteratee): (array: $ReadOnlyArray) => Array; - uniqBy(iteratee: ValueOnlyIteratee, array: $ReadOnlyArray): Array; - uniqWith(comparator: Comparator): (array: $ReadOnlyArray) => Array; - uniqWith(comparator: Comparator, array: $ReadOnlyArray): Array; - unzip(array: $ReadOnlyArray): Array; - unzipWith(iteratee: Iteratee): (array: $ReadOnlyArray) => Array; - unzipWith(iteratee: Iteratee, array: $ReadOnlyArray): Array; - without(values: $ReadOnlyArray): (array: $ReadOnlyArray) => Array; - without(values: $ReadOnlyArray, array: $ReadOnlyArray): Array; - xor(a1: $ReadOnlyArray): (a2: $ReadOnlyArray) => Array; - xor(a1: $ReadOnlyArray, a2: $ReadOnlyArray): Array; - symmetricDifference(a1: $ReadOnlyArray): (a2: $ReadOnlyArray) => Array; - symmetricDifference(a1: $ReadOnlyArray, a2: $ReadOnlyArray): Array; - xorBy( - iteratee: ValueOnlyIteratee - ): ((a1: $ReadOnlyArray) => (a2: $ReadOnlyArray) => Array) & - ((a1: $ReadOnlyArray, a2: $ReadOnlyArray) => Array); - xorBy( - iteratee: ValueOnlyIteratee, - a1: $ReadOnlyArray - ): (a2: $ReadOnlyArray) => Array; - xorBy( - iteratee: ValueOnlyIteratee, - a1: $ReadOnlyArray, - a2: $ReadOnlyArray - ): Array; - symmetricDifferenceBy( - iteratee: ValueOnlyIteratee - ): ((a1: $ReadOnlyArray) => (a2: $ReadOnlyArray) => Array) & - ((a1: $ReadOnlyArray, a2: $ReadOnlyArray) => Array); - symmetricDifferenceBy( - iteratee: ValueOnlyIteratee, - a1: $ReadOnlyArray - ): (a2: $ReadOnlyArray) => Array; - symmetricDifferenceBy( - iteratee: ValueOnlyIteratee, - a1: $ReadOnlyArray, - a2: $ReadOnlyArray - ): Array; - xorWith( - comparator: Comparator - ): ((a1: $ReadOnlyArray) => (a2: $ReadOnlyArray) => Array) & - ((a1: $ReadOnlyArray, a2: $ReadOnlyArray) => Array); - xorWith( - comparator: Comparator, - a1: $ReadOnlyArray - ): (a2: $ReadOnlyArray) => Array; - xorWith(comparator: Comparator, a1: $ReadOnlyArray, a2: $ReadOnlyArray): Array; - symmetricDifferenceWith( - comparator: Comparator - ): ((a1: $ReadOnlyArray) => (a2: $ReadOnlyArray) => Array) & - ((a1: $ReadOnlyArray, a2: $ReadOnlyArray) => Array); - symmetricDifferenceWith( - comparator: Comparator, - a1: $ReadOnlyArray - ): (a2: $ReadOnlyArray) => Array; - symmetricDifferenceWith( - comparator: Comparator, - a1: $ReadOnlyArray, - a2: $ReadOnlyArray - ): Array; - zip(a1: $ReadOnlyArray): (a2: $ReadOnlyArray) => Array<[A, B]>; - zip(a1: $ReadOnlyArray, a2: $ReadOnlyArray): Array<[A, B]>; - zipAll(arrays: $ReadOnlyArray<$ReadOnlyArray>): Array; - zipObject(props?: $ReadOnlyArray): (values?: $ReadOnlyArray) => { [key: K]: V, ... }; - zipObject(props?: $ReadOnlyArray, values?: $ReadOnlyArray): { [key: K]: V, ... }; - zipObj(props: $ReadOnlyArray): (values: $ReadOnlyArray) => Object; - zipObj(props: $ReadOnlyArray, values: $ReadOnlyArray): Object; - zipObjectDeep(props: $ReadOnlyArray): (values: any) => Object; - zipObjectDeep(props: $ReadOnlyArray, values: any): Object; - zipWith( - iteratee: Iteratee - ): ((a1: NestedArray) => (a2: NestedArray) => Array) & - ((a1: NestedArray, a2: NestedArray) => Array); - zipWith( - iteratee: Iteratee, - a1: NestedArray - ): (a2: NestedArray) => Array; - zipWith( - iteratee: Iteratee, - a1: NestedArray, - a2: NestedArray - ): Array; - - // Collection - countBy( - iteratee: ValueOnlyIteratee - ): (collection: Collection) => { [string]: number, ... }; - countBy( - iteratee: ValueOnlyIteratee, - collection: Collection - ): { [string]: number, ... }; - // alias of _.forEach - each( - iteratee: Iteratee | OIteratee - ): (collection: Collection) => Array; - each( - iteratee: Iteratee | OIteratee, - collection: Collection - ): Array; - // alias of _.forEachRight - eachRight( - iteratee: Iteratee | OIteratee - ): (collection: Collection) => Array; - eachRight( - iteratee: Iteratee | OIteratee, - collection: Collection - ): Array; - every( - iteratee: Iteratee | OIteratee - ): (collection: Collection) => boolean; - every( - iteratee: Iteratee | OIteratee, - collection: Collection - ): boolean; - all( - iteratee: Iteratee | OIteratee - ): (collection: Collection) => boolean; - all( - iteratee: Iteratee | OIteratee, - collection: Collection - ): boolean; - filter( - predicate: Predicate | OPredicate - ): (collection: Collection) => Array; - filter( - predicate: Predicate | OPredicate, - collection: Collection - ): Array; - find( - predicate: Predicate | OPredicate - ): (collection: Collection) => T | void; - find( - predicate: Predicate | OPredicate, - collection: Collection - ): T | void; - findFrom( - predicate: Predicate | OPredicate - ): (( - fromIndex: number - ) => (collection: Collection) => T | void) & - (( - fromIndex: number, - collection: Collection - ) => T | void); - findFrom( - predicate: Predicate | OPredicate, - fromIndex: number - ): (collection: Collection) => T | void; - findFrom( - predicate: Predicate | OPredicate, - fromIndex: number, - collection: Collection - ): T | void; - findLast( - predicate: Predicate | OPredicate - ): (collection: Collection) => T | void; - findLast( - predicate: Predicate | OPredicate, - collection: Collection - ): T | void; - findLastFrom( - predicate: Predicate | OPredicate - ): (( - fromIndex: number - ) => (collection: Collection) => T | void) & - (( - fromIndex: number, - collection: Collection - ) => T | void); - findLastFrom( - predicate: Predicate | OPredicate, - fromIndex: number - ): (collection: Collection) => T | void; - findLastFrom( - predicate: Predicate | OPredicate, - fromIndex: number, - collection: Collection - ): T | void; - flatMap( - iteratee: AFlatMapIteratee | OFlatMapIteratee - ): (collection: Collection) => Array; - flatMap( - iteratee: AFlatMapIteratee | OFlatMapIteratee, - collection: Collection - ): Array; - flatMapDeep( - iteratee: AFlatMapIteratee | OFlatMapIteratee - ): (collection: Collection) => Array; - flatMapDeep( - iteratee: AFlatMapIteratee | OFlatMapIteratee, - collection: Collection - ): Array; - flatMapDepth( - iteratee: AFlatMapIteratee | OFlatMapIteratee - ): (( - depth: number - ) => (collection: Collection) => Array) & - ((depth: number, collection: Collection) => Array); - flatMapDepth( - iteratee: AFlatMapIteratee | OFlatMapIteratee, - depth: number - ): (collection: Collection) => Array; - flatMapDepth( - iteratee: AFlatMapIteratee | OFlatMapIteratee, - depth: number, - collection: Collection - ): Array; - forEach( - iteratee: Iteratee | OIteratee - ): (collection: Collection) => Array; - forEach( - iteratee: Iteratee | OIteratee, - collection: Collection - ): Array; - forEachRight( - iteratee: Iteratee | OIteratee - ): (collection: Collection) => Array; - forEachRight( - iteratee: Iteratee | OIteratee, - collection: Collection - ): Array; - groupBy( - iteratee: ValueOnlyIteratee - ): ( - collection: Collection - ) => { [key: V]: Array, ... }; - groupBy( - iteratee: ValueOnlyIteratee, - collection: Collection - ): { [key: V]: Array, ... }; - includes(value: T): (collection: Collection) => boolean; - includes(value: T, collection: Collection): boolean; - includes(value: string): (str: string) => boolean; - includes(value: string, str: string): boolean; - contains(value: string): (str: string) => boolean; - contains(value: string, str: string): boolean; - contains(value: T): (collection: Collection) => boolean; - contains(value: T, collection: Collection): boolean; - includesFrom( - value: string - ): ((fromIndex: number) => (str: string) => boolean) & - ((fromIndex: number, str: string) => boolean); - includesFrom(value: string, fromIndex: number): (str: string) => boolean; - includesFrom(value: string, fromIndex: number, str: string): boolean; - includesFrom( - value: T - ): ((fromIndex: number) => (collection: $ReadOnlyArray) => boolean) & - ((fromIndex: number, collection: $ReadOnlyArray) => boolean); - includesFrom( - value: T, - fromIndex: number - ): (collection: $ReadOnlyArray) => boolean; - includesFrom(value: T, fromIndex: number, collection: $ReadOnlyArray): boolean; - invokeMap( - path: ((value: T) => Path) | Path - ): (collection: Collection) => Array; - invokeMap( - path: ((value: T) => Path) | Path, - collection: Collection - ): Array; - invokeArgsMap( - path: ((value: T) => Path) | Path - ): (( - collection: Collection - ) => (args: $ReadOnlyArray) => Array) & - (( - collection: Collection, - args: $ReadOnlyArray - ) => Array); - invokeArgsMap( - path: ((value: T) => Path) | Path, - collection: Collection - ): (args: $ReadOnlyArray) => Array; - invokeArgsMap( - path: ((value: T) => Path) | Path, - collection: Collection, - args: $ReadOnlyArray - ): Array; - keyBy( - iteratee: ValueOnlyIteratee - ): (collection: Collection) => { [key: V]: T, ... }; - keyBy( - iteratee: ValueOnlyIteratee, - collection: Collection - ): { [key: V]: T, ... }; - indexBy( - iteratee: ValueOnlyIteratee - ): (collection: Collection) => { [key: V]: T, ... }; - indexBy( - iteratee: ValueOnlyIteratee, - collection: Collection - ): { [key: V]: T, ... }; - map( - iteratee: MapIterator | OMapIterator - ): (collection: Collection) => Array; - map( - iteratee: MapIterator | OMapIterator, - collection: Collection - ): Array; - map(iteratee: (char: string) => any): (str: string) => string; - map(iteratee: (char: string) => any, str: string): string; - pluck( - iteratee: MapIterator | OMapIterator - ): (collection: Collection) => Array; - pluck( - iteratee: MapIterator | OMapIterator, - collection: Collection - ): Array; - pluck(iteratee: (char: string) => any): (str: string) => string; - pluck(iteratee: (char: string) => any, str: string): string; - orderBy( - iteratees: $ReadOnlyArray | OIteratee<*>> | string - ): (( - orders: $ReadOnlyArray<"asc" | "desc"> | string - ) => (collection: Collection) => Array) & - (( - orders: $ReadOnlyArray<"asc" | "desc"> | string, - collection: Collection - ) => Array); - orderBy( - iteratees: $ReadOnlyArray | OIteratee<*>> | string, - orders: $ReadOnlyArray<"asc" | "desc"> | string - ): (collection: Collection) => Array; - orderBy( - iteratees: $ReadOnlyArray | OIteratee<*>> | string, - orders: $ReadOnlyArray<"asc" | "desc"> | string, - collection: Collection - ): Array; - partition( - predicate: Predicate | OPredicate - ): (collection: Collection) => [Array, Array]; - partition( - predicate: Predicate | OPredicate, - collection: Collection - ): [Array, Array]; - reduce( - iteratee: (accumulator: U, value: T) => U - ): ((accumulator: U) => (collection: Collection) => U) & - ((accumulator: U, collection: Collection) => U); - reduce( - iteratee: (accumulator: U, value: T) => U, - accumulator: U - ): (collection: Collection) => U; - reduce( - iteratee: (accumulator: U, value: T) => U, - accumulator: U, - collection: Collection - ): U; - reduceRight( - iteratee: (value: T, accumulator: U) => U - ): ((accumulator: U) => (collection: Collection) => U) & - ((accumulator: U, collection: Collection) => U); - reduceRight( - iteratee: (value: T, accumulator: U) => U, - accumulator: U - ): (collection: Collection) => U; - reduceRight( - iteratee: (value: T, accumulator: U) => U, - accumulator: U, - collection: Collection - ): U; - reject( - predicate: Predicate | OPredicate - ): (collection: Collection) => Array; - reject( - predicate: Predicate | OPredicate, - collection: Collection - ): Array; - sample(collection: Collection): T; - sampleSize( - n: number - ): (collection: Collection) => Array; - sampleSize(n: number, collection: Collection): Array; - shuffle(collection: Collection): Array; - size(collection: $ReadOnlyArray | Object | string): number; - some( - predicate: Predicate | OPredicate - ): (collection: Collection) => boolean; - some( - predicate: Predicate | OPredicate, - collection: Collection - ): boolean; - any( - predicate: Predicate | OPredicate - ): (collection: Collection) => boolean; - any( - predicate: Predicate | OPredicate, - collection: Collection - ): boolean; - sortBy( - iteratees: - | $ReadOnlyArray | OIteratee> - | Iteratee - | OIteratee - ): (collection: Collection) => Array; - sortBy( - iteratees: - | $ReadOnlyArray | OIteratee> - | Iteratee - | OIteratee, - collection: Collection - ): Array; - - // Date - now(): number; - - // Function - after(fn: Function): (n: number) => Function; - after(fn: Function, n: number): Function; - ary(func: Function): Function; - nAry(n: number): (func: Function) => Function; - nAry(n: number, func: Function): Function; - before(fn: Function): (n: number) => Function; - before(fn: Function, n: number): Function; - bind(func: Function): (thisArg: any) => Function; - bind(func: Function, thisArg: any): Function; - bindKey(obj: Object): (key: string) => Function; - bindKey(obj: Object, key: string): Function; - curry: Curry; - curryN(arity: number): (func: Function) => Function; - curryN(arity: number, func: Function): Function; - curryRight(func: Function): Function; - curryRightN(arity: number): (func: Function) => Function; - curryRightN(arity: number, func: Function): Function; - debounce(wait: number): (func: (...A) => R) => (...A) => R; - debounce(wait: number, func: (...A) => R): (...A) => R; - defer(func: (...$ReadOnlyArray) => any): TimeoutID; - delay(wait: number): (func: Function) => TimeoutID; - delay(wait: number, func: Function): TimeoutID; - flip(func: Function): Function; - memoize(func: F): F; - negate(predicate: (...A) => R): (...A) => boolean; - complement(predicate: Function): Function; - once(func: Function): Function; - overArgs(func: Function): (transforms: $ReadOnlyArray) => Function; - overArgs(func: Function, transforms: $ReadOnlyArray): Function; - useWith(func: Function): (transforms: $ReadOnlyArray) => Function; - useWith(func: Function, transforms: $ReadOnlyArray): Function; - partial(func: Function): (partials: $ReadOnlyArray) => Function; - partial(func: Function, partials: $ReadOnlyArray): Function; - partialRight(func: Function): (partials: $ReadOnlyArray) => Function; - partialRight(func: Function, partials: $ReadOnlyArray): Function; - rearg(indexes: $ReadOnlyArray): (func: Function) => Function; - rearg(indexes: $ReadOnlyArray, func: Function): Function; - rest(func: Function): Function; - unapply(func: Function): Function; - restFrom(start: number): (func: Function) => Function; - restFrom(start: number, func: Function): Function; - spread(func: Function): Function; - apply(func: Function): Function; - spreadFrom(start: number): (func: Function) => Function; - spreadFrom(start: number, func: Function): Function; - throttle(wait: number): (func: (...A) => R) => (...A) => R; - throttle(wait: number, func: (...A) => R): (...A) => R; - unary(func: (T, ...$ReadOnlyArray) => R): (T) => R; - wrap(wrapper: Function): (value: any) => Function; - wrap(wrapper: Function, value: any): Function; - - // Lang - castArray(): Array; - castArray(value: T): Array; - castArray>(value: T): T; - clone(value: T): T; - cloneDeep(value: T): T; - cloneDeepWith( - customizer: (value: T, key: number | string, object: T, stack: any) => U - ): (value: T) => U; - cloneDeepWith( - customizer: (value: T, key: number | string, object: T, stack: any) => U, - value: T - ): U; - cloneWith( - customizer: (value: T, key: number | string, object: T, stack: any) => U - ): (value: T) => U; - cloneWith( - customizer: (value: T, key: number | string, object: T, stack: any) => U, - value: T - ): U; - conformsTo>( - predicates: T & $ReadOnly<{ [key: string]: (x: any) => boolean, ... }> - ): (source: T) => boolean; - conformsTo>( - predicates: T & $ReadOnly<{ [key: string]: (x: any) => boolean, ... }>, - source: T - ): boolean; - where>( - predicates: T & $ReadOnly<{ [key: string]: (x: any) => boolean, ... }> - ): (source: T) => boolean; - where>( - predicates: T & $ReadOnly<{ [key: string]: (x: any) => boolean, ... }>, - source: T - ): boolean; - conforms>( - predicates: T & $ReadOnly<{ [key: string]: (x: any) => boolean, ... }> - ): (source: T) => boolean; - conforms>( - predicates: T & $ReadOnly<{ [key: string]: (x: any) => boolean, ... }>, - source: T - ): boolean; - eq(value: any): (other: any) => boolean; - eq(value: any, other: any): boolean; - identical(value: any): (other: any) => boolean; - identical(value: any, other: any): boolean; - gt(value: any): (other: any) => boolean; - gt(value: any, other: any): boolean; - gte(value: any): (other: any) => boolean; - gte(value: any, other: any): boolean; - isArguments(value: any): boolean; - isArray(value: any): boolean; - isArrayBuffer(value: any): boolean; - isArrayLike(value: any): boolean; - isArrayLikeObject(value: any): boolean; - isBoolean(value: any): boolean; - isBuffer(value: any): boolean; - isDate(value: any): boolean; - isElement(value: any): boolean; - isEmpty(value: any): boolean; - isEqual(value: any): (other: any) => boolean; - isEqual(value: any, other: any): boolean; - equals(value: any): (other: any) => boolean; - equals(value: any, other: any): boolean; - isEqualWith( - customizer: ( - objValue: any, - otherValue: any, - key: number | string, - object: T, - other: U, - stack: any - ) => boolean | void - ): ((value: T) => (other: U) => boolean) & - ((value: T, other: U) => boolean); - isEqualWith( - customizer: ( - objValue: any, - otherValue: any, - key: number | string, - object: T, - other: U, - stack: any - ) => boolean | void, - value: T - ): (other: U) => boolean; - isEqualWith( - customizer: ( - objValue: any, - otherValue: any, - key: number | string, - object: T, - other: U, - stack: any - ) => boolean | void, - value: T, - other: U - ): boolean; - isError(value: any): boolean; - isFinite(value: any): boolean; - isFunction(value: any): boolean; - isInteger(value: any): boolean; - isLength(value: any): boolean; - isMap(value: any): boolean; - isMatch(source: Object): (object: Object) => boolean; - isMatch(source: Object, object: Object): boolean; - whereEq(source: Object): (object: Object) => boolean; - whereEq(source: Object, object: Object): boolean; - isMatchWith( - customizer: ( - objValue: any, - srcValue: any, - key: number | string, - object: T, - source: U - ) => boolean | void - ): ((source: U) => (object: T) => boolean) & - ((source: U, object: T) => boolean); - isMatchWith( - customizer: ( - objValue: any, - srcValue: any, - key: number | string, - object: T, - source: U - ) => boolean | void, - source: U - ): (object: T) => boolean; - isMatchWith( - customizer: ( - objValue: any, - srcValue: any, - key: number | string, - object: T, - source: U - ) => boolean | void, - source: U, - object: T - ): boolean; - isNaN(value: any): boolean; - isNative(value: any): boolean; - isNil(value: any): boolean; - isNull(value: any): boolean; - isNumber(value: any): boolean; - isObject(value: any): boolean; - isObjectLike(value: any): boolean; - isPlainObject(value: any): boolean; - isRegExp(value: any): boolean; - isSafeInteger(value: any): boolean; - isSet(value: any): boolean; - isString(value: string): true; - isString(value: any): false; - isSymbol(value: any): boolean; - isTypedArray(value: any): boolean; - isUndefined(value: any): boolean; - isWeakMap(value: any): boolean; - isWeakSet(value: any): boolean; - lt(value: any): (other: any) => boolean; - lt(value: any, other: any): boolean; - lte(value: any): (other: any) => boolean; - lte(value: any, other: any): boolean; - toArray(value: any): Array; - toFinite(value: any): number; - toInteger(value: any): number; - toLength(value: any): number; - toNumber(value: any): number; - toPlainObject(value: any): Object; - toSafeInteger(value: any): number; - toString(value: any): string; - - // Math - add(augend: number): (addend: number) => number; - add(augend: number, addend: number): number; - ceil(number: number): number; - divide(dividend: number): (divisor: number) => number; - divide(dividend: number, divisor: number): number; - floor(number: number): number; - max(array: $ReadOnlyArray): T; - maxBy(iteratee: Iteratee): (array: $ReadOnlyArray) => T; - maxBy(iteratee: Iteratee, array: $ReadOnlyArray): T; - mean(array: $ReadOnlyArray<*>): number; - meanBy(iteratee: Iteratee): (array: $ReadOnlyArray) => number; - meanBy(iteratee: Iteratee, array: $ReadOnlyArray): number; - min(array: $ReadOnlyArray): T; - minBy(iteratee: Iteratee): (array: $ReadOnlyArray) => T; - minBy(iteratee: Iteratee, array: $ReadOnlyArray): T; - multiply(multiplier: number): (multiplicand: number) => number; - multiply(multiplier: number, multiplicand: number): number; - round(number: number): number; - subtract(minuend: number): (subtrahend: number) => number; - subtract(minuend: number, subtrahend: number): number; - sum(array: $ReadOnlyArray<*>): number; - sumBy(iteratee: Iteratee): (array: $ReadOnlyArray) => number; - sumBy(iteratee: Iteratee, array: $ReadOnlyArray): number; - - // number - clamp( - lower: number - ): ((upper: number) => (number: number) => number) & - ((upper: number, number: number) => number); - clamp(lower: number, upper: number): (number: number) => number; - clamp(lower: number, upper: number, number: number): number; - inRange( - start: number - ): ((end: number) => (number: number) => boolean) & - ((end: number, number: number) => boolean); - inRange(start: number, end: number): (number: number) => boolean; - inRange(start: number, end: number, number: number): boolean; - random(lower: number): (upper: number) => number; - random(lower: number, upper: number): number; - - // Object - assign(object: Object): (source: Object) => Object; - assign(object: Object, source: Object): Object; - assignAll(objects: Array): Object; - assignInAll(objects: Array): Object; - extendAll(objects: Array): Object; - assignIn(a: A): (b: B) => A & B; - assignIn(a: A, b: B): A & B; - assignInWith( - customizer: ( - objValue: any, - srcValue: any, - key: string, - object: T, - source: A - ) => any | void - ): ((object: T) => (s1: A) => Object) & ((object: T, s1: A) => Object); - assignInWith( - customizer: ( - objValue: any, - srcValue: any, - key: string, - object: T, - source: A - ) => any | void, - object: T - ): (s1: A) => Object; - assignInWith( - customizer: ( - objValue: any, - srcValue: any, - key: string, - object: T, - source: A - ) => any | void, - object: T, - s1: A - ): Object; - assignWith( - customizer: ( - objValue: any, - srcValue: any, - key: string, - object: T, - source: A - ) => any | void - ): ((object: T) => (s1: A) => Object) & ((object: T, s1: A) => Object); - assignWith( - customizer: ( - objValue: any, - srcValue: any, - key: string, - object: T, - source: A - ) => any | void, - object: T - ): (s1: A) => Object; - assignWith( - customizer: ( - objValue: any, - srcValue: any, - key: string, - object: T, - source: A - ) => any | void, - object: T, - s1: A - ): Object; - assignInAllWith( - customizer: ( - objValue: any, - srcValue: any, - key: string, - object: Object, - source: Object - ) => any | void - ): (objects: Array) => Object; - assignInAllWith( - customizer: ( - objValue: any, - srcValue: any, - key: string, - object: Object, - source: Object - ) => any | void, - objects: Array - ): Object; - extendAllWith( - customizer: ( - objValue: any, - srcValue: any, - key: string, - object: Object, - source: Object - ) => any | void - ): (objects: Array) => Object; - extendAllWith( - customizer: ( - objValue: any, - srcValue: any, - key: string, - object: Object, - source: Object - ) => any | void, - objects: Array - ): Object; - assignAllWith( - customizer: ( - objValue: any, - srcValue: any, - key: string, - object: Object, - source: Object - ) => any | void - ): (objects: Array) => Object; - assignAllWith( - customizer: ( - objValue: any, - srcValue: any, - key: string, - object: Object, - source: Object - ) => any | void, - objects: Array - ): Object; - at(paths: $ReadOnlyArray): (object: Object) => Array; - at(paths: $ReadOnlyArray, object: Object): Array; - props(paths: $ReadOnlyArray): (object: Object) => Array; - props(paths: $ReadOnlyArray, object: Object): Array; - paths(paths: $ReadOnlyArray): (object: Object) => Array; - paths(paths: $ReadOnlyArray, object: Object): Array; - create(prototype: T): T; - defaults(source: Object): (object: Object) => Object; - defaults(source: Object, object: Object): Object; - defaultsAll(objects: Array): Object; - defaultsDeep(source: Object): (object: Object) => Object; - defaultsDeep(source: Object, object: Object): Object; - defaultsDeepAll(objects: Array): Object; - // alias for _.toPairs - entries(object: Object): Array<[string, any]>; - // alias for _.toPairsIn - entriesIn(object: Object): Array<[string, any]>; - // alias for _.assignIn - extend(a: A): (b: B) => A & B; - extend(a: A, b: B): A & B; - // alias for _.assignInWith - extendWith( - customizer: ( - objValue: any, - srcValue: any, - key: string, - object: T, - source: A - ) => any | void - ): ((object: T) => (s1: A) => Object) & ((object: T, s1: A) => Object); - extendWith( - customizer: ( - objValue: any, - srcValue: any, - key: string, - object: T, - source: A - ) => any | void, - object: T - ): (s1: A) => Object; - extendWith( - customizer: ( - objValue: any, - srcValue: any, - key: string, - object: T, - source: A - ) => any | void, - object: T, - s1: A - ): Object; - findKey>( - predicate: OPredicate - ): (object: T) => string | void; - findKey>( - predicate: OPredicate, - object: T - ): string | void; - findLastKey>( - predicate: OPredicate - ): (object: T) => string | void; - findLastKey>( - predicate: OPredicate, - object: T - ): string | void; - forIn(iteratee: OIteratee<*>): (object: Object) => Object; - forIn(iteratee: OIteratee<*>, object: Object): Object; - forInRight(iteratee: OIteratee<*>): (object: Object) => Object; - forInRight(iteratee: OIteratee<*>, object: Object): Object; - forOwn(iteratee: OIteratee<*>): (object: Object) => Object; - forOwn(iteratee: OIteratee<*>, object: Object): Object; - forOwnRight(iteratee: OIteratee<*>): (object: Object) => Object; - forOwnRight(iteratee: OIteratee<*>, object: Object): Object; - functions(object: Object): Array; - functionsIn(object: Object): Array; - get( - path: Path - ): (object: Object | $ReadOnlyArray | void | null) => any; - get( - path: Path, - object: Object | $ReadOnlyArray | void | null - ): any; - prop(path: Path): (object: Object | $ReadOnlyArray) => any; - prop(path: Path, object: Object | $ReadOnlyArray): any; - path(path: Path): (object: Object | $ReadOnlyArray) => any; - path(path: Path, object: Object | $ReadOnlyArray): any; - getOr( - defaultValue: any - ): (( - path: Path - ) => (object: Object | $ReadOnlyArray) => any) & - (( - path: Path, - object: Object | $ReadOnlyArray | void | null - ) => any); - getOr( - defaultValue: any, - path: Path - ): (object: Object | $ReadOnlyArray | void | null) => any; - getOr( - defaultValue: any, - path: Path, - object: Object | $ReadOnlyArray | void | null - ): any; - propOr( - defaultValue: any - ): (( - path: Path - ) => (object: Object | $ReadOnlyArray) => any) & - ((path: Path, object: Object | $ReadOnlyArray) => any); - propOr( - defaultValue: any, - path: Path - ): (object: Object | $ReadOnlyArray) => any; - propOr( - defaultValue: any, - path: Path, - object: Object | $ReadOnlyArray - ): any; - pathOr( - defaultValue: any - ): (( - path: Path - ) => (object: Object | $ReadOnlyArray) => any) & - ((path: Path, object: Object | $ReadOnlyArray) => any); - pathOr( - defaultValue: any, - path: Path - ): (object: Object | $ReadOnlyArray) => any; - pathOr( - defaultValue: any, - path: Path, - object: Object | $ReadOnlyArray - ): any; - has(path: Path): (object: Object) => boolean; - has(path: Path, object: Object): boolean; - hasIn(path: Path): (object: Object) => boolean; - hasIn(path: Path, object: Object): boolean; - invert(object: Object): Object; - invertObj(object: Object): Object; - invertBy(iteratee: Function): (object: Object) => Object; - invertBy(iteratee: Function, object: Object): Object; - invoke(path: Path): (object: Object) => any; - invoke(path: Path, object: Object): any; - invokeArgs( - path: Path - ): ((object: Object) => (args: Array) => any) & - ((object: Object, args: Array) => any); - invokeArgs( - path: Path, - object: Object - ): (args: Array) => any; - invokeArgs( - path: Path, - object: Object, - args: Array - ): any; - keys(object: ReadOnlyIndexerObject): Array; - keys(object: Object): Array; - keysIn(object: Object): Array; - mapKeys(iteratee: OIteratee<*>): (object: Object) => Object; - mapKeys(iteratee: OIteratee<*>, object: Object): Object; - mapValues(iteratee: OIteratee<*>): (object: Object) => Object; - mapValues(iteratee: OIteratee<*>, object: Object): Object; - merge(object: Object): (source: Object) => Object; - merge(object: Object, source: Object): Object; - mergeAll(objects: $ReadOnlyArray): Object; - mergeWith( - customizer: ( - objValue: any, - srcValue: any, - key: string, - object: T, - source: A | B - ) => any | void - ): ((object: T) => (s1: A) => Object) & ((object: T, s1: A) => Object); - mergeWith( - customizer: ( - objValue: any, - srcValue: any, - key: string, - object: T, - source: A | B - ) => any | void, - object: T - ): (s1: A) => Object; - mergeWith( - customizer: ( - objValue: any, - srcValue: any, - key: string, - object: T, - source: A | B - ) => any | void, - object: T, - s1: A - ): Object; - mergeAllWith( - customizer: ( - objValue: any, - srcValue: any, - key: string, - object: Object, - source: Object - ) => any | void - ): (objects: $ReadOnlyArray) => Object; - mergeAllWith( - customizer: ( - objValue: any, - srcValue: any, - key: string, - object: Object, - source: Object - ) => any | void, - objects: $ReadOnlyArray - ): Object; - omit(props: $ReadOnlyArray): (object: Object) => Object; - omit(props: $ReadOnlyArray, object: Object): Object; - omitAll(props: $ReadOnlyArray): (object: Object) => Object; - omitAll(props: $ReadOnlyArray, object: Object): Object; - omitBy>( - predicate: OPredicate - ): (object: T) => Object; - omitBy>(predicate: OPredicate, object: T): Object; - pick(...props: $ReadOnlyArray): Object; - pick(props: $ReadOnlyArray, object: Object): Object; - pick(...props: $ReadOnlyArray): (object: Object) => Object; - pick(props: $ReadOnlyArray): (object: Object) => Object; - pickAll(props: $ReadOnlyArray): (object: Object) => Object; - pickAll(props: $ReadOnlyArray, object: Object): Object; - pickBy>( - predicate: OPredicate - ): (object: T) => Object; - pickBy>(predicate: OPredicate, object: T): Object; - result(path: Path): (object: Object) => any; - result(path: Path, object: Object): any; - set( - path: Path - ): ((value: any) => (object: Object) => Object) & - ((value: any, object: Object) => Object); - set(path: Path, value: any): (object: Object) => Object; - set(path: Path, value: any, object: Object): Object; - assoc( - path: Path - ): ((value: any) => (object: Object) => Object) & - ((value: any, object: Object) => Object); - assoc(path: Path, value: any): (object: Object) => Object; - assoc(path: Path, value: any, object: Object): Object; - assocPath( - path: Path - ): ((value: any) => (object: Object) => Object) & - ((value: any, object: Object) => Object); - assocPath( - path: Path, - value: any - ): (object: Object) => Object; - assocPath(path: Path, value: any, object: Object): Object; - setWith( - customizer: (nsValue: any, key: string, nsObject: T) => any - ): (( - path: Path - ) => ((value: any) => (object: T) => Object) & - ((value: any, object: T) => Object)) & - ((path: Path, value: any) => (object: T) => Object) & - ((path: Path, value: any, object: T) => Object); - setWith( - customizer: (nsValue: any, key: string, nsObject: T) => any, - path: Path - ): ((value: any) => (object: T) => Object) & - ((value: any, object: T) => Object); - setWith( - customizer: (nsValue: any, key: string, nsObject: T) => any, - path: Path, - value: any - ): (object: T) => Object; - setWith( - customizer: (nsValue: any, key: string, nsObject: T) => any, - path: Path, - value: any, - object: T - ): Object; - toPairs(object: Object | $ReadOnlyArray<*>): Array<[string, any]>; - toPairsIn(object: Object): Array<[string, any]>; - transform( - iteratee: OIteratee<*> - ): (( - accumulator: any - ) => (collection: Object | $ReadOnlyArray) => any) & - ((accumulator: any, collection: Object | $ReadOnlyArray) => any); - transform( - iteratee: OIteratee<*>, - accumulator: any - ): (collection: Object | $ReadOnlyArray) => any; - transform( - iteratee: OIteratee<*>, - accumulator: any, - collection: Object | $ReadOnlyArray - ): any; - unset(path: Path): (object: Object) => Object; - unset(path: Path, object: Object): Object; - dissoc(path: Path): (object: Object) => Object; - dissoc(path: Path, object: Object): Object; - dissocPath(path: Path): (object: Object) => Object; - dissocPath(path: Path, object: Object): Object; - update( - path: Path - ): ((updater: Function) => (object: Object) => Object) & - ((updater: Function, object: Object) => Object); - update( - path: Path, - updater: Function - ): (object: Object) => Object; - update(path: Path, updater: Function, object: Object): Object; - updateWith( - customizer: Function - ): (( - path: Path - ) => ((updater: Function) => (object: Object) => Object) & - ((updater: Function, object: Object) => Object)) & - (( - path: Path, - updater: Function - ) => (object: Object) => Object) & - ((path: Path, updater: Function, object: Object) => Object); - updateWith( - customizer: Function, - path: Path - ): ((updater: Function) => (object: Object) => Object) & - ((updater: Function, object: Object) => Object); - updateWith( - customizer: Function, - path: Path, - updater: Function - ): (object: Object) => Object; - updateWith( - customizer: Function, - path: Path, - updater: Function, - object: Object - ): Object; - values(object: Object): Array; - valuesIn(object: Object): Array; - - tap(interceptor: (value: T) => any): (value: T) => T; - tap(interceptor: (value: T) => any, value: T): T; - thru(interceptor: (value: T1) => T2): (value: T1) => T2; - thru(interceptor: (value: T1) => T2, value: T1): T2; - - // String - camelCase(string: string): string; - capitalize(string: string): string; - deburr(string: string): string; - endsWith(target: string): (string: string) => boolean; - endsWith(target: string, string: string): boolean; - escape(string: string): string; - escapeRegExp(string: string): string; - kebabCase(string: string): string; - lowerCase(string: string): string; - lowerFirst(string: string): string; - pad(length: number): (string: string) => string; - pad(length: number, string: string): string; - padChars( - chars: string - ): ((length: number) => (string: string) => string) & - ((length: number, string: string) => string); - padChars(chars: string, length: number): (string: string) => string; - padChars(chars: string, length: number, string: string): string; - padEnd(length: number): (string: string) => string; - padEnd(length: number, string: string): string; - padCharsEnd( - chars: string - ): ((length: number) => (string: string) => string) & - ((length: number, string: string) => string); - padCharsEnd(chars: string, length: number): (string: string) => string; - padCharsEnd(chars: string, length: number, string: string): string; - padStart(length: number): (string: string) => string; - padStart(length: number, string: string): string; - padCharsStart( - chars: string - ): ((length: number) => (string: string) => string) & - ((length: number, string: string) => string); - padCharsStart(chars: string, length: number): (string: string) => string; - padCharsStart(chars: string, length: number, string: string): string; - parseInt(radix: number): (string: string) => number; - parseInt(radix: number, string: string): number; - repeat(n: number): (string: string) => string; - repeat(n: number, string: string): string; - replace( - pattern: RegExp | string - ): (( - replacement: ((string: string) => string) | string - ) => (string: string) => string) & - (( - replacement: ((string: string) => string) | string, - string: string - ) => string); - replace( - pattern: RegExp | string, - replacement: ((string: string) => string) | string - ): (string: string) => string; - replace( - pattern: RegExp | string, - replacement: ((string: string) => string) | string, - string: string - ): string; - snakeCase(string: string): string; - split(separator: RegExp | string): (string: string) => Array; - split(separator: RegExp | string, string: string): Array; - startCase(string: string): string; - startsWith(target: string): (string: string) => boolean; - startsWith(target: string, string: string): boolean; - template(string: string): Function; - toLower(string: string): string; - toUpper(string: string): string; - trim(string: string): string; - trimChars(chars: string): (string: string) => string; - trimChars(chars: string, string: string): string; - trimEnd(string: string): string; - trimCharsEnd(chars: string): (string: string) => string; - trimCharsEnd(chars: string, string: string): string; - trimStart(string: string): string; - trimCharsStart(chars: string): (string: string) => string; - trimCharsStart(chars: string, string: string): string; - truncate(options: TruncateOptions): (string: string) => string; - truncate(options: TruncateOptions, string: string): string; - unescape(string: string): string; - upperCase(string: string): string; - upperFirst(string: string): string; - words(string: string): Array; - - // Util - attempt(func: Function): any; - bindAll(methodNames: $ReadOnlyArray): (object: Object) => Object; - bindAll(methodNames: $ReadOnlyArray, object: Object): Object; - cond(pairs: NestedArray): Function; - constant(value: T): () => T; - always(value: T): () => T; - defaultTo(defaultValue: T2): (value: T1) => T2; - defaultTo(defaultValue: T2, value: T1): T2; - defaultTo( - defaultValue: T2 - ): (value: T1) => T1; - defaultTo( - defaultValue: T2, - value: T1 - ): T1; - // NaN is a number instead of its own type, otherwise it would behave like null/void - defaultTo(defaultValue: T2): (value: T1) => T1 | T2; - defaultTo(defaultValue: T2, value: T1): T1 | T2; - flow: $ComposeReverse & ((funcs: $ReadOnlyArray) => Function); - pipe: $ComposeReverse & ((funcs: $ReadOnlyArray) => Function); - flowRight: $Compose & ((funcs: $ReadOnlyArray) => Function); - compose: $Compose & ((funcs: $ReadOnlyArray) => Function); - compose(funcs: $ReadOnlyArray): Function; - identity(value: T): T; - iteratee(func: any): Function; - matches(source: Object): (object: Object) => boolean; - matches(source: Object, object: Object): boolean; - matchesProperty(path: Path): (srcValue: any) => Function; - matchesProperty(path: Path, srcValue: any): Function; - propEq(path: Path): (srcValue: any) => Function; - propEq(path: Path, srcValue: any): Function; - pathEq(path: Path): (srcValue: any) => Function; - pathEq(path: Path, srcValue: any): Function; - method(path: Path): Function; - methodOf(object: Object): Function; - mixin( - object: T - ): ((source: Object) => (options: { chain: boolean, ... }) => T) & - ((source: Object, options: { chain: boolean, ... }) => T); - mixin( - object: T, - source: Object - ): (options: { chain: boolean, ... }) => T; - mixin( - object: T, - source: Object, - options: { chain: boolean, ... } - ): T; - noConflict(): Lodash; - noop(...args: $ReadOnlyArray): void; - nthArg(n: number): Function; - over(iteratees: $ReadOnlyArray): Function; - juxt(iteratees: $ReadOnlyArray): Function; - overEvery(predicates: $ReadOnlyArray): Function; - allPass(predicates: $ReadOnlyArray): Function; - overSome(predicates: $ReadOnlyArray): Function; - anyPass(predicates: $ReadOnlyArray): Function; - property( - path: Path - ): (object: Object | $ReadOnlyArray) => any; - property(path: Path, object: Object | $ReadOnlyArray): any; - propertyOf(object: Object): (path: Path) => Function; - propertyOf(object: Object, path: Path): Function; - range(start: number): (end: number) => Array; - range(start: number, end: number): Array; - rangeStep( - step: number - ): ((start: number) => (end: number) => Array) & - ((start: number, end: number) => Array); - rangeStep(step: number, start: number): (end: number) => Array; - rangeStep(step: number, start: number, end: number): Array; - rangeRight(start: number): (end: number) => Array; - rangeRight(start: number, end: number): Array; - rangeStepRight( - step: number - ): ((start: number) => (end: number) => Array) & - ((start: number, end: number) => Array); - rangeStepRight(step: number, start: number): (end: number) => Array; - rangeStepRight(step: number, start: number, end: number): Array; - runInContext(context: Object): Function; - - stubArray(): Array<*>; - stubFalse(): false; - F(): false; - stubObject(): {...}; - stubString(): ""; - stubTrue(): true; - T(): true; - times(iteratee: (i: number) => T): (n: number) => Array; - times(iteratee: (i: number) => T, n: number): Array; - toPath(value: any): Array; - uniqueId(prefix: string): string; - - __: any; - placeholder: any; - - convert(options: { - cap?: boolean, - curry?: boolean, - fixed?: boolean, - immutable?: boolean, - rearg?: boolean, - ... - }): void; - - // Properties - VERSION: string; - templateSettings: TemplateSettings; - } - - declare module.exports: Lodash; -} - -declare module "lodash/chunk" { - declare module.exports: $PropertyType<$Exports<"lodash">, "chunk">; -} - -declare module "lodash/compact" { - declare module.exports: $PropertyType<$Exports<"lodash">, "compact">; -} - -declare module "lodash/concat" { - declare module.exports: $PropertyType<$Exports<"lodash">, "concat">; -} - -declare module "lodash/difference" { - declare module.exports: $PropertyType<$Exports<"lodash">, "difference">; -} - -declare module "lodash/differenceBy" { - declare module.exports: $PropertyType<$Exports<"lodash">, "differenceBy">; -} - -declare module "lodash/differenceWith" { - declare module.exports: $PropertyType<$Exports<"lodash">, "differenceWith">; -} - -declare module "lodash/drop" { - declare module.exports: $PropertyType<$Exports<"lodash">, "drop">; -} - -declare module "lodash/dropRight" { - declare module.exports: $PropertyType<$Exports<"lodash">, "dropRight">; -} - -declare module "lodash/dropRightWhile" { - declare module.exports: $PropertyType<$Exports<"lodash">, "dropRightWhile">; -} - -declare module "lodash/dropWhile" { - declare module.exports: $PropertyType<$Exports<"lodash">, "dropWhile">; -} - -declare module "lodash/fill" { - declare module.exports: $PropertyType<$Exports<"lodash">, "fill">; -} - -declare module "lodash/findIndex" { - declare module.exports: $PropertyType<$Exports<"lodash">, "findIndex">; -} - -declare module "lodash/findLastIndex" { - declare module.exports: $PropertyType<$Exports<"lodash">, "findLastIndex">; -} - -declare module "lodash/first" { - declare module.exports: $PropertyType<$Exports<"lodash">, "first">; -} - -declare module "lodash/flatten" { - declare module.exports: $PropertyType<$Exports<"lodash">, "flatten">; -} - -declare module "lodash/flattenDeep" { - declare module.exports: $PropertyType<$Exports<"lodash">, "flattenDeep">; -} - -declare module "lodash/flattenDepth" { - declare module.exports: $PropertyType<$Exports<"lodash">, "flattenDepth">; -} - -declare module "lodash/fromPairs" { - declare module.exports: $PropertyType<$Exports<"lodash">, "fromPairs">; -} - -declare module "lodash/head" { - declare module.exports: $PropertyType<$Exports<"lodash">, "head">; -} - -declare module "lodash/indexOf" { - declare module.exports: $PropertyType<$Exports<"lodash">, "indexOf">; -} - -declare module "lodash/initial" { - declare module.exports: $PropertyType<$Exports<"lodash">, "initial">; -} - -declare module "lodash/intersection" { - declare module.exports: $PropertyType<$Exports<"lodash">, "intersection">; -} - -declare module "lodash/intersectionBy" { - declare module.exports: $PropertyType<$Exports<"lodash">, "intersectionBy">; -} - -declare module "lodash/intersectionWith" { - declare module.exports: $PropertyType<$Exports<"lodash">, "intersectionWith">; -} - -declare module "lodash/join" { - declare module.exports: $PropertyType<$Exports<"lodash">, "join">; -} - -declare module "lodash/last" { - declare module.exports: $PropertyType<$Exports<"lodash">, "last">; -} - -declare module "lodash/lastIndexOf" { - declare module.exports: $PropertyType<$Exports<"lodash">, "lastIndexOf">; -} - -declare module "lodash/nth" { - declare module.exports: $PropertyType<$Exports<"lodash">, "nth">; -} - -declare module "lodash/pull" { - declare module.exports: $PropertyType<$Exports<"lodash">, "pull">; -} - -declare module "lodash/pullAll" { - declare module.exports: $PropertyType<$Exports<"lodash">, "pullAll">; -} - -declare module "lodash/pullAllBy" { - declare module.exports: $PropertyType<$Exports<"lodash">, "pullAllBy">; -} - -declare module "lodash/pullAllWith" { - declare module.exports: $PropertyType<$Exports<"lodash">, "pullAllWith">; -} - -declare module "lodash/pullAt" { - declare module.exports: $PropertyType<$Exports<"lodash">, "pullAt">; -} - -declare module "lodash/remove" { - declare module.exports: $PropertyType<$Exports<"lodash">, "remove">; -} - -declare module "lodash/reverse" { - declare module.exports: $PropertyType<$Exports<"lodash">, "reverse">; -} - -declare module "lodash/slice" { - declare module.exports: $PropertyType<$Exports<"lodash">, "slice">; -} - -declare module "lodash/sortedIndex" { - declare module.exports: $PropertyType<$Exports<"lodash">, "sortedIndex">; -} - -declare module "lodash/sortedIndexBy" { - declare module.exports: $PropertyType<$Exports<"lodash">, "sortedIndexBy">; -} - -declare module "lodash/sortedIndexOf" { - declare module.exports: $PropertyType<$Exports<"lodash">, "sortedIndexOf">; -} - -declare module "lodash/sortedLastIndex" { - declare module.exports: $PropertyType<$Exports<"lodash">, "sortedLastIndex">; -} - -declare module "lodash/sortedLastIndexBy" { - declare module.exports: $PropertyType< - $Exports<"lodash">, - "sortedLastIndexBy" - >; -} - -declare module "lodash/sortedLastIndexOf" { - declare module.exports: $PropertyType< - $Exports<"lodash">, - "sortedLastIndexOf" - >; -} - -declare module "lodash/sortedUniq" { - declare module.exports: $PropertyType<$Exports<"lodash">, "sortedUniq">; -} - -declare module "lodash/sortedUniqBy" { - declare module.exports: $PropertyType<$Exports<"lodash">, "sortedUniqBy">; -} - -declare module "lodash/tail" { - declare module.exports: $PropertyType<$Exports<"lodash">, "tail">; -} - -declare module "lodash/take" { - declare module.exports: $PropertyType<$Exports<"lodash">, "take">; -} - -declare module "lodash/takeRight" { - declare module.exports: $PropertyType<$Exports<"lodash">, "takeRight">; -} - -declare module "lodash/takeRightWhile" { - declare module.exports: $PropertyType<$Exports<"lodash">, "takeRightWhile">; -} - -declare module "lodash/takeWhile" { - declare module.exports: $PropertyType<$Exports<"lodash">, "takeWhile">; -} - -declare module "lodash/union" { - declare module.exports: $PropertyType<$Exports<"lodash">, "union">; -} - -declare module "lodash/unionBy" { - declare module.exports: $PropertyType<$Exports<"lodash">, "unionBy">; -} - -declare module "lodash/unionWith" { - declare module.exports: $PropertyType<$Exports<"lodash">, "unionWith">; -} - -declare module "lodash/uniq" { - declare module.exports: $PropertyType<$Exports<"lodash">, "uniq">; -} - -declare module "lodash/uniqBy" { - declare module.exports: $PropertyType<$Exports<"lodash">, "uniqBy">; -} - -declare module "lodash/uniqWith" { - declare module.exports: $PropertyType<$Exports<"lodash">, "uniqWith">; -} - -declare module "lodash/unzip" { - declare module.exports: $PropertyType<$Exports<"lodash">, "unzip">; -} - -declare module "lodash/unzipWith" { - declare module.exports: $PropertyType<$Exports<"lodash">, "unzipWith">; -} - -declare module "lodash/without" { - declare module.exports: $PropertyType<$Exports<"lodash">, "without">; -} - -declare module "lodash/xor" { - declare module.exports: $PropertyType<$Exports<"lodash">, "xor">; -} - -declare module "lodash/xorBy" { - declare module.exports: $PropertyType<$Exports<"lodash">, "xorBy">; -} - -declare module "lodash/xorWith" { - declare module.exports: $PropertyType<$Exports<"lodash">, "xorWith">; -} - -declare module "lodash/zip" { - declare module.exports: $PropertyType<$Exports<"lodash">, "zip">; -} - -declare module "lodash/zipObject" { - declare module.exports: $PropertyType<$Exports<"lodash">, "zipObject">; -} - -declare module "lodash/zipObjectDeep" { - declare module.exports: $PropertyType<$Exports<"lodash">, "zipObjectDeep">; -} - -declare module "lodash/zipWith" { - declare module.exports: $PropertyType<$Exports<"lodash">, "zipWith">; -} - -declare module "lodash/countBy" { - declare module.exports: $PropertyType<$Exports<"lodash">, "countBy">; -} - -declare module "lodash/each" { - declare module.exports: $PropertyType<$Exports<"lodash">, "each">; -} - -declare module "lodash/eachRight" { - declare module.exports: $PropertyType<$Exports<"lodash">, "eachRight">; -} - -declare module "lodash/every" { - declare module.exports: $PropertyType<$Exports<"lodash">, "every">; -} - -declare module "lodash/filter" { - declare module.exports: $PropertyType<$Exports<"lodash">, "filter">; -} - -declare module "lodash/find" { - declare module.exports: $PropertyType<$Exports<"lodash">, "find">; -} - -declare module "lodash/findLast" { - declare module.exports: $PropertyType<$Exports<"lodash">, "findLast">; -} - -declare module "lodash/flatMap" { - declare module.exports: $PropertyType<$Exports<"lodash">, "flatMap">; -} - -declare module "lodash/flatMapDeep" { - declare module.exports: $PropertyType<$Exports<"lodash">, "flatMapDeep">; -} - -declare module "lodash/flatMapDepth" { - declare module.exports: $PropertyType<$Exports<"lodash">, "flatMapDepth">; -} - -declare module "lodash/forEach" { - declare module.exports: $PropertyType<$Exports<"lodash">, "forEach">; -} - -declare module "lodash/forEachRight" { - declare module.exports: $PropertyType<$Exports<"lodash">, "forEachRight">; -} - -declare module "lodash/groupBy" { - declare module.exports: $PropertyType<$Exports<"lodash">, "groupBy">; -} - -declare module "lodash/includes" { - declare module.exports: $PropertyType<$Exports<"lodash">, "includes">; -} - -declare module "lodash/invokeMap" { - declare module.exports: $PropertyType<$Exports<"lodash">, "invokeMap">; -} - -declare module "lodash/keyBy" { - declare module.exports: $PropertyType<$Exports<"lodash">, "keyBy">; -} - -declare module "lodash/map" { - declare module.exports: $PropertyType<$Exports<"lodash">, "map">; -} - -declare module "lodash/orderBy" { - declare module.exports: $PropertyType<$Exports<"lodash">, "orderBy">; -} - -declare module "lodash/partition" { - declare module.exports: $PropertyType<$Exports<"lodash">, "partition">; -} - -declare module "lodash/reduce" { - declare module.exports: $PropertyType<$Exports<"lodash">, "reduce">; -} - -declare module "lodash/reduceRight" { - declare module.exports: $PropertyType<$Exports<"lodash">, "reduceRight">; -} - -declare module "lodash/reject" { - declare module.exports: $PropertyType<$Exports<"lodash">, "reject">; -} - -declare module "lodash/sample" { - declare module.exports: $PropertyType<$Exports<"lodash">, "sample">; -} - -declare module "lodash/sampleSize" { - declare module.exports: $PropertyType<$Exports<"lodash">, "sampleSize">; -} - -declare module "lodash/shuffle" { - declare module.exports: $PropertyType<$Exports<"lodash">, "shuffle">; -} - -declare module "lodash/size" { - declare module.exports: $PropertyType<$Exports<"lodash">, "size">; -} - -declare module "lodash/some" { - declare module.exports: $PropertyType<$Exports<"lodash">, "some">; -} - -declare module "lodash/sortBy" { - declare module.exports: $PropertyType<$Exports<"lodash">, "sortBy">; -} - -declare module "lodash/now" { - declare module.exports: $PropertyType<$Exports<"lodash">, "now">; -} - -declare module "lodash/after" { - declare module.exports: $PropertyType<$Exports<"lodash">, "after">; -} - -declare module "lodash/ary" { - declare module.exports: $PropertyType<$Exports<"lodash">, "ary">; -} - -declare module "lodash/before" { - declare module.exports: $PropertyType<$Exports<"lodash">, "before">; -} - -declare module "lodash/bind" { - declare module.exports: $PropertyType<$Exports<"lodash">, "bind">; -} - -declare module "lodash/bindKey" { - declare module.exports: $PropertyType<$Exports<"lodash">, "bindKey">; -} - -declare module "lodash/curry" { - declare module.exports: $PropertyType<$Exports<"lodash">, "curry">; -} - -declare module "lodash/curryRight" { - declare module.exports: $PropertyType<$Exports<"lodash">, "curryRight">; -} - -declare module "lodash/debounce" { - declare module.exports: $PropertyType<$Exports<"lodash">, "debounce">; -} - -declare module "lodash/defer" { - declare module.exports: $PropertyType<$Exports<"lodash">, "defer">; -} - -declare module "lodash/delay" { - declare module.exports: $PropertyType<$Exports<"lodash">, "delay">; -} - -declare module "lodash/flip" { - declare module.exports: $PropertyType<$Exports<"lodash">, "flip">; -} - -declare module "lodash/memoize" { - declare module.exports: $PropertyType<$Exports<"lodash">, "memoize">; -} - -declare module "lodash/negate" { - declare module.exports: $PropertyType<$Exports<"lodash">, "negate">; -} - -declare module "lodash/once" { - declare module.exports: $PropertyType<$Exports<"lodash">, "once">; -} - -declare module "lodash/overArgs" { - declare module.exports: $PropertyType<$Exports<"lodash">, "overArgs">; -} - -declare module "lodash/partial" { - declare module.exports: $PropertyType<$Exports<"lodash">, "partial">; -} - -declare module "lodash/partialRight" { - declare module.exports: $PropertyType<$Exports<"lodash">, "partialRight">; -} - -declare module "lodash/rearg" { - declare module.exports: $PropertyType<$Exports<"lodash">, "rearg">; -} - -declare module "lodash/rest" { - declare module.exports: $PropertyType<$Exports<"lodash">, "rest">; -} - -declare module "lodash/spread" { - declare module.exports: $PropertyType<$Exports<"lodash">, "spread">; -} - -declare module "lodash/throttle" { - declare module.exports: $PropertyType<$Exports<"lodash">, "throttle">; -} - -declare module "lodash/unary" { - declare module.exports: $PropertyType<$Exports<"lodash">, "unary">; -} - -declare module "lodash/wrap" { - declare module.exports: $PropertyType<$Exports<"lodash">, "wrap">; -} - -declare module "lodash/castArray" { - declare module.exports: $PropertyType<$Exports<"lodash">, "castArray">; -} - -declare module "lodash/clone" { - declare module.exports: $PropertyType<$Exports<"lodash">, "clone">; -} - -declare module "lodash/cloneDeep" { - declare module.exports: $PropertyType<$Exports<"lodash">, "cloneDeep">; -} - -declare module "lodash/cloneDeepWith" { - declare module.exports: $PropertyType<$Exports<"lodash">, "cloneDeepWith">; -} - -declare module "lodash/cloneWith" { - declare module.exports: $PropertyType<$Exports<"lodash">, "cloneWith">; -} - -declare module "lodash/conformsTo" { - declare module.exports: $PropertyType<$Exports<"lodash">, "conformsTo">; -} - -declare module "lodash/eq" { - declare module.exports: $PropertyType<$Exports<"lodash">, "eq">; -} - -declare module "lodash/gt" { - declare module.exports: $PropertyType<$Exports<"lodash">, "gt">; -} - -declare module "lodash/gte" { - declare module.exports: $PropertyType<$Exports<"lodash">, "gte">; -} - -declare module "lodash/isArguments" { - declare module.exports: $PropertyType<$Exports<"lodash">, "isArguments">; -} - -declare module "lodash/isArray" { - declare module.exports: $PropertyType<$Exports<"lodash">, "isArray">; -} - -declare module "lodash/isArrayBuffer" { - declare module.exports: $PropertyType<$Exports<"lodash">, "isArrayBuffer">; -} - -declare module "lodash/isArrayLike" { - declare module.exports: $PropertyType<$Exports<"lodash">, "isArrayLike">; -} - -declare module "lodash/isArrayLikeObject" { - declare module.exports: $PropertyType< - $Exports<"lodash">, - "isArrayLikeObject" - >; -} - -declare module "lodash/isBoolean" { - declare module.exports: $PropertyType<$Exports<"lodash">, "isBoolean">; -} - -declare module "lodash/isBuffer" { - declare module.exports: $PropertyType<$Exports<"lodash">, "isBuffer">; -} - -declare module "lodash/isDate" { - declare module.exports: $PropertyType<$Exports<"lodash">, "isDate">; -} - -declare module "lodash/isElement" { - declare module.exports: $PropertyType<$Exports<"lodash">, "isElement">; -} - -declare module "lodash/isEmpty" { - declare module.exports: $PropertyType<$Exports<"lodash">, "isEmpty">; -} - -declare module "lodash/isEqual" { - declare module.exports: $PropertyType<$Exports<"lodash">, "isEqual">; -} - -declare module "lodash/isEqualWith" { - declare module.exports: $PropertyType<$Exports<"lodash">, "isEqualWith">; -} - -declare module "lodash/isError" { - declare module.exports: $PropertyType<$Exports<"lodash">, "isError">; -} - -declare module "lodash/isFinite" { - declare module.exports: $PropertyType<$Exports<"lodash">, "isFinite">; -} - -declare module "lodash/isFunction" { - declare module.exports: $PropertyType<$Exports<"lodash">, "isFunction">; -} - -declare module "lodash/isInteger" { - declare module.exports: $PropertyType<$Exports<"lodash">, "isInteger">; -} - -declare module "lodash/isLength" { - declare module.exports: $PropertyType<$Exports<"lodash">, "isLength">; -} - -declare module "lodash/isMap" { - declare module.exports: $PropertyType<$Exports<"lodash">, "isMap">; -} - -declare module "lodash/isMatch" { - declare module.exports: $PropertyType<$Exports<"lodash">, "isMatch">; -} - -declare module "lodash/isMatchWith" { - declare module.exports: $PropertyType<$Exports<"lodash">, "isMatchWith">; -} - -declare module "lodash/isNaN" { - declare module.exports: $PropertyType<$Exports<"lodash">, "isNaN">; -} - -declare module "lodash/isNative" { - declare module.exports: $PropertyType<$Exports<"lodash">, "isNative">; -} - -declare module "lodash/isNil" { - declare module.exports: $PropertyType<$Exports<"lodash">, "isNil">; -} - -declare module "lodash/isNull" { - declare module.exports: $PropertyType<$Exports<"lodash">, "isNull">; -} - -declare module "lodash/isNumber" { - declare module.exports: $PropertyType<$Exports<"lodash">, "isNumber">; -} - -declare module "lodash/isObject" { - declare module.exports: $PropertyType<$Exports<"lodash">, "isObject">; -} - -declare module "lodash/isObjectLike" { - declare module.exports: $PropertyType<$Exports<"lodash">, "isObjectLike">; -} - -declare module "lodash/isPlainObject" { - declare module.exports: $PropertyType<$Exports<"lodash">, "isPlainObject">; -} - -declare module "lodash/isRegExp" { - declare module.exports: $PropertyType<$Exports<"lodash">, "isRegExp">; -} - -declare module "lodash/isSafeInteger" { - declare module.exports: $PropertyType<$Exports<"lodash">, "isSafeInteger">; -} - -declare module "lodash/isSet" { - declare module.exports: $PropertyType<$Exports<"lodash">, "isSet">; -} - -declare module "lodash/isString" { - declare module.exports: $PropertyType<$Exports<"lodash">, "isString">; -} - -declare module "lodash/isSymbol" { - declare module.exports: $PropertyType<$Exports<"lodash">, "isSymbol">; -} - -declare module "lodash/isTypedArray" { - declare module.exports: $PropertyType<$Exports<"lodash">, "isTypedArray">; -} - -declare module "lodash/isUndefined" { - declare module.exports: $PropertyType<$Exports<"lodash">, "isUndefined">; -} - -declare module "lodash/isWeakMap" { - declare module.exports: $PropertyType<$Exports<"lodash">, "isWeakMap">; -} - -declare module "lodash/isWeakSet" { - declare module.exports: $PropertyType<$Exports<"lodash">, "isWeakSet">; -} - -declare module "lodash/lt" { - declare module.exports: $PropertyType<$Exports<"lodash">, "lt">; -} - -declare module "lodash/lte" { - declare module.exports: $PropertyType<$Exports<"lodash">, "lte">; -} - -declare module "lodash/toArray" { - declare module.exports: $PropertyType<$Exports<"lodash">, "toArray">; -} - -declare module "lodash/toFinite" { - declare module.exports: $PropertyType<$Exports<"lodash">, "toFinite">; -} - -declare module "lodash/toInteger" { - declare module.exports: $PropertyType<$Exports<"lodash">, "toInteger">; -} - -declare module "lodash/toLength" { - declare module.exports: $PropertyType<$Exports<"lodash">, "toLength">; -} - -declare module "lodash/toNumber" { - declare module.exports: $PropertyType<$Exports<"lodash">, "toNumber">; -} - -declare module "lodash/toPlainObject" { - declare module.exports: $PropertyType<$Exports<"lodash">, "toPlainObject">; -} - -declare module "lodash/toSafeInteger" { - declare module.exports: $PropertyType<$Exports<"lodash">, "toSafeInteger">; -} - -declare module "lodash/toString" { - declare module.exports: $PropertyType<$Exports<"lodash">, "toString">; -} - -declare module "lodash/add" { - declare module.exports: $PropertyType<$Exports<"lodash">, "add">; -} - -declare module "lodash/ceil" { - declare module.exports: $PropertyType<$Exports<"lodash">, "ceil">; -} - -declare module "lodash/divide" { - declare module.exports: $PropertyType<$Exports<"lodash">, "divide">; -} - -declare module "lodash/floor" { - declare module.exports: $PropertyType<$Exports<"lodash">, "floor">; -} - -declare module "lodash/max" { - declare module.exports: $PropertyType<$Exports<"lodash">, "max">; -} - -declare module "lodash/maxBy" { - declare module.exports: $PropertyType<$Exports<"lodash">, "maxBy">; -} - -declare module "lodash/mean" { - declare module.exports: $PropertyType<$Exports<"lodash">, "mean">; -} - -declare module "lodash/meanBy" { - declare module.exports: $PropertyType<$Exports<"lodash">, "meanBy">; -} - -declare module "lodash/min" { - declare module.exports: $PropertyType<$Exports<"lodash">, "min">; -} - -declare module "lodash/minBy" { - declare module.exports: $PropertyType<$Exports<"lodash">, "minBy">; -} - -declare module "lodash/multiply" { - declare module.exports: $PropertyType<$Exports<"lodash">, "multiply">; -} - -declare module "lodash/round" { - declare module.exports: $PropertyType<$Exports<"lodash">, "round">; -} - -declare module "lodash/subtract" { - declare module.exports: $PropertyType<$Exports<"lodash">, "subtract">; -} - -declare module "lodash/sum" { - declare module.exports: $PropertyType<$Exports<"lodash">, "sum">; -} - -declare module "lodash/sumBy" { - declare module.exports: $PropertyType<$Exports<"lodash">, "sumBy">; -} - -declare module "lodash/clamp" { - declare module.exports: $PropertyType<$Exports<"lodash">, "clamp">; -} - -declare module "lodash/inRange" { - declare module.exports: $PropertyType<$Exports<"lodash">, "inRange">; -} - -declare module "lodash/random" { - declare module.exports: $PropertyType<$Exports<"lodash">, "random">; -} - -declare module "lodash/assign" { - declare module.exports: $PropertyType<$Exports<"lodash">, "assign">; -} - -declare module "lodash/assignIn" { - declare module.exports: $PropertyType<$Exports<"lodash">, "assignIn">; -} - -declare module "lodash/assignInWith" { - declare module.exports: $PropertyType<$Exports<"lodash">, "assignInWith">; -} - -declare module "lodash/assignWith" { - declare module.exports: $PropertyType<$Exports<"lodash">, "assignWith">; -} - -declare module "lodash/at" { - declare module.exports: $PropertyType<$Exports<"lodash">, "at">; -} - -declare module "lodash/create" { - declare module.exports: $PropertyType<$Exports<"lodash">, "create">; -} - -declare module "lodash/defaults" { - declare module.exports: $PropertyType<$Exports<"lodash">, "defaults">; -} - -declare module "lodash/defaultsDeep" { - declare module.exports: $PropertyType<$Exports<"lodash">, "defaultsDeep">; -} - -declare module "lodash/entries" { - declare module.exports: $PropertyType<$Exports<"lodash">, "entries">; -} - -declare module "lodash/entriesIn" { - declare module.exports: $PropertyType<$Exports<"lodash">, "entriesIn">; -} - -declare module "lodash/extend" { - declare module.exports: $PropertyType<$Exports<"lodash">, "extend">; -} - -declare module "lodash/extendWith" { - declare module.exports: $PropertyType<$Exports<"lodash">, "extendWith">; -} - -declare module "lodash/findKey" { - declare module.exports: $PropertyType<$Exports<"lodash">, "findKey">; -} - -declare module "lodash/findLastKey" { - declare module.exports: $PropertyType<$Exports<"lodash">, "findLastKey">; -} - -declare module "lodash/forIn" { - declare module.exports: $PropertyType<$Exports<"lodash">, "forIn">; -} - -declare module "lodash/forInRight" { - declare module.exports: $PropertyType<$Exports<"lodash">, "forInRight">; -} - -declare module "lodash/forOwn" { - declare module.exports: $PropertyType<$Exports<"lodash">, "forOwn">; -} - -declare module "lodash/forOwnRight" { - declare module.exports: $PropertyType<$Exports<"lodash">, "forOwnRight">; -} - -declare module "lodash/functions" { - declare module.exports: $PropertyType<$Exports<"lodash">, "functions">; -} - -declare module "lodash/functionsIn" { - declare module.exports: $PropertyType<$Exports<"lodash">, "functionsIn">; -} - -declare module "lodash/get" { - declare module.exports: $PropertyType<$Exports<"lodash">, "get">; -} - -declare module "lodash/has" { - declare module.exports: $PropertyType<$Exports<"lodash">, "has">; -} - -declare module "lodash/hasIn" { - declare module.exports: $PropertyType<$Exports<"lodash">, "hasIn">; -} - -declare module "lodash/invert" { - declare module.exports: $PropertyType<$Exports<"lodash">, "invert">; -} - -declare module "lodash/invertBy" { - declare module.exports: $PropertyType<$Exports<"lodash">, "invertBy">; -} - -declare module "lodash/invoke" { - declare module.exports: $PropertyType<$Exports<"lodash">, "invoke">; -} - -declare module "lodash/keys" { - declare module.exports: $PropertyType<$Exports<"lodash">, "keys">; -} - -declare module "lodash/keysIn" { - declare module.exports: $PropertyType<$Exports<"lodash">, "keysIn">; -} - -declare module "lodash/mapKeys" { - declare module.exports: $PropertyType<$Exports<"lodash">, "mapKeys">; -} - -declare module "lodash/mapValues" { - declare module.exports: $PropertyType<$Exports<"lodash">, "mapValues">; -} - -declare module "lodash/merge" { - declare module.exports: $PropertyType<$Exports<"lodash">, "merge">; -} - -declare module "lodash/mergeWith" { - declare module.exports: $PropertyType<$Exports<"lodash">, "mergeWith">; -} - -declare module "lodash/omit" { - declare module.exports: $PropertyType<$Exports<"lodash">, "omit">; -} - -declare module "lodash/omitBy" { - declare module.exports: $PropertyType<$Exports<"lodash">, "omitBy">; -} - -declare module "lodash/pick" { - declare module.exports: $PropertyType<$Exports<"lodash">, "pick">; -} - -declare module "lodash/pickBy" { - declare module.exports: $PropertyType<$Exports<"lodash">, "pickBy">; -} - -declare module "lodash/result" { - declare module.exports: $PropertyType<$Exports<"lodash">, "result">; -} - -declare module "lodash/set" { - declare module.exports: $PropertyType<$Exports<"lodash">, "set">; -} - -declare module "lodash/setWith" { - declare module.exports: $PropertyType<$Exports<"lodash">, "setWith">; -} - -declare module "lodash/toPairs" { - declare module.exports: $PropertyType<$Exports<"lodash">, "toPairs">; -} - -declare module "lodash/toPairsIn" { - declare module.exports: $PropertyType<$Exports<"lodash">, "toPairsIn">; -} - -declare module "lodash/transform" { - declare module.exports: $PropertyType<$Exports<"lodash">, "transform">; -} - -declare module "lodash/unset" { - declare module.exports: $PropertyType<$Exports<"lodash">, "unset">; -} - -declare module "lodash/update" { - declare module.exports: $PropertyType<$Exports<"lodash">, "update">; -} - -declare module "lodash/updateWith" { - declare module.exports: $PropertyType<$Exports<"lodash">, "updateWith">; -} - -declare module "lodash/values" { - declare module.exports: $PropertyType<$Exports<"lodash">, "values">; -} - -declare module "lodash/valuesIn" { - declare module.exports: $PropertyType<$Exports<"lodash">, "valuesIn">; -} - -declare module "lodash/chain" { - declare module.exports: $PropertyType<$Exports<"lodash">, "chain">; -} - -declare module "lodash/tap" { - declare module.exports: $PropertyType<$Exports<"lodash">, "tap">; -} - -declare module "lodash/thru" { - declare module.exports: $PropertyType<$Exports<"lodash">, "thru">; -} - -declare module "lodash/camelCase" { - declare module.exports: $PropertyType<$Exports<"lodash">, "camelCase">; -} - -declare module "lodash/capitalize" { - declare module.exports: $PropertyType<$Exports<"lodash">, "capitalize">; -} - -declare module "lodash/deburr" { - declare module.exports: $PropertyType<$Exports<"lodash">, "deburr">; -} - -declare module "lodash/endsWith" { - declare module.exports: $PropertyType<$Exports<"lodash">, "endsWith">; -} - -declare module "lodash/escape" { - declare module.exports: $PropertyType<$Exports<"lodash">, "escape">; -} - -declare module "lodash/escapeRegExp" { - declare module.exports: $PropertyType<$Exports<"lodash">, "escapeRegExp">; -} - -declare module "lodash/kebabCase" { - declare module.exports: $PropertyType<$Exports<"lodash">, "kebabCase">; -} - -declare module "lodash/lowerCase" { - declare module.exports: $PropertyType<$Exports<"lodash">, "lowerCase">; -} - -declare module "lodash/lowerFirst" { - declare module.exports: $PropertyType<$Exports<"lodash">, "lowerFirst">; -} - -declare module "lodash/pad" { - declare module.exports: $PropertyType<$Exports<"lodash">, "pad">; -} - -declare module "lodash/padEnd" { - declare module.exports: $PropertyType<$Exports<"lodash">, "padEnd">; -} - -declare module "lodash/padStart" { - declare module.exports: $PropertyType<$Exports<"lodash">, "padStart">; -} - -declare module "lodash/parseInt" { - declare module.exports: $PropertyType<$Exports<"lodash">, "parseInt">; -} - -declare module "lodash/repeat" { - declare module.exports: $PropertyType<$Exports<"lodash">, "repeat">; -} - -declare module "lodash/replace" { - declare module.exports: $PropertyType<$Exports<"lodash">, "replace">; -} - -declare module "lodash/snakeCase" { - declare module.exports: $PropertyType<$Exports<"lodash">, "snakeCase">; -} - -declare module "lodash/split" { - declare module.exports: $PropertyType<$Exports<"lodash">, "split">; -} - -declare module "lodash/startCase" { - declare module.exports: $PropertyType<$Exports<"lodash">, "startCase">; -} - -declare module "lodash/startsWith" { - declare module.exports: $PropertyType<$Exports<"lodash">, "startsWith">; -} - -declare module "lodash/template" { - declare module.exports: $PropertyType<$Exports<"lodash">, "template">; -} - -declare module "lodash/toLower" { - declare module.exports: $PropertyType<$Exports<"lodash">, "toLower">; -} - -declare module "lodash/toUpper" { - declare module.exports: $PropertyType<$Exports<"lodash">, "toUpper">; -} - -declare module "lodash/trim" { - declare module.exports: $PropertyType<$Exports<"lodash">, "trim">; -} - -declare module "lodash/trimEnd" { - declare module.exports: $PropertyType<$Exports<"lodash">, "trimEnd">; -} - -declare module "lodash/trimStart" { - declare module.exports: $PropertyType<$Exports<"lodash">, "trimStart">; -} - -declare module "lodash/truncate" { - declare module.exports: $PropertyType<$Exports<"lodash">, "truncate">; -} - -declare module "lodash/unescape" { - declare module.exports: $PropertyType<$Exports<"lodash">, "unescape">; -} - -declare module "lodash/upperCase" { - declare module.exports: $PropertyType<$Exports<"lodash">, "upperCase">; -} - -declare module "lodash/upperFirst" { - declare module.exports: $PropertyType<$Exports<"lodash">, "upperFirst">; -} - -declare module "lodash/words" { - declare module.exports: $PropertyType<$Exports<"lodash">, "words">; -} - -declare module "lodash/attempt" { - declare module.exports: $PropertyType<$Exports<"lodash">, "attempt">; -} - -declare module "lodash/bindAll" { - declare module.exports: $PropertyType<$Exports<"lodash">, "bindAll">; -} - -declare module "lodash/cond" { - declare module.exports: $PropertyType<$Exports<"lodash">, "cond">; -} - -declare module "lodash/conforms" { - declare module.exports: $PropertyType<$Exports<"lodash">, "conforms">; -} - -declare module "lodash/constant" { - declare module.exports: $PropertyType<$Exports<"lodash">, "constant">; -} - -declare module "lodash/defaultTo" { - declare module.exports: $PropertyType<$Exports<"lodash">, "defaultTo">; -} - -declare module "lodash/flow" { - declare module.exports: $PropertyType<$Exports<"lodash">, "flow">; -} - -declare module "lodash/flowRight" { - declare module.exports: $PropertyType<$Exports<"lodash">, "flowRight">; -} - -declare module "lodash/identity" { - declare module.exports: $PropertyType<$Exports<"lodash">, "identity">; -} - -declare module "lodash/iteratee" { - declare module.exports: $PropertyType<$Exports<"lodash">, "iteratee">; -} - -declare module "lodash/matches" { - declare module.exports: $PropertyType<$Exports<"lodash">, "matches">; -} - -declare module "lodash/matchesProperty" { - declare module.exports: $PropertyType<$Exports<"lodash">, "matchesProperty">; -} - -declare module "lodash/method" { - declare module.exports: $PropertyType<$Exports<"lodash">, "method">; -} - -declare module "lodash/methodOf" { - declare module.exports: $PropertyType<$Exports<"lodash">, "methodOf">; -} - -declare module "lodash/mixin" { - declare module.exports: $PropertyType<$Exports<"lodash">, "mixin">; -} - -declare module "lodash/noConflict" { - declare module.exports: $PropertyType<$Exports<"lodash">, "noConflict">; -} - -declare module "lodash/noop" { - declare module.exports: $PropertyType<$Exports<"lodash">, "noop">; -} - -declare module "lodash/nthArg" { - declare module.exports: $PropertyType<$Exports<"lodash">, "nthArg">; -} - -declare module "lodash/over" { - declare module.exports: $PropertyType<$Exports<"lodash">, "over">; -} - -declare module "lodash/overEvery" { - declare module.exports: $PropertyType<$Exports<"lodash">, "overEvery">; -} - -declare module "lodash/overSome" { - declare module.exports: $PropertyType<$Exports<"lodash">, "overSome">; -} - -declare module "lodash/property" { - declare module.exports: $PropertyType<$Exports<"lodash">, "property">; -} - -declare module "lodash/propertyOf" { - declare module.exports: $PropertyType<$Exports<"lodash">, "propertyOf">; -} - -declare module "lodash/range" { - declare module.exports: $PropertyType<$Exports<"lodash">, "range">; -} - -declare module "lodash/rangeRight" { - declare module.exports: $PropertyType<$Exports<"lodash">, "rangeRight">; -} - -declare module "lodash/runInContext" { - declare module.exports: $PropertyType<$Exports<"lodash">, "runInContext">; -} - -declare module "lodash/stubArray" { - declare module.exports: $PropertyType<$Exports<"lodash">, "stubArray">; -} - -declare module "lodash/stubFalse" { - declare module.exports: $PropertyType<$Exports<"lodash">, "stubFalse">; -} - -declare module "lodash/stubObject" { - declare module.exports: $PropertyType<$Exports<"lodash">, "stubObject">; -} - -declare module "lodash/stubString" { - declare module.exports: $PropertyType<$Exports<"lodash">, "stubString">; -} - -declare module "lodash/stubTrue" { - declare module.exports: $PropertyType<$Exports<"lodash">, "stubTrue">; -} - -declare module "lodash/times" { - declare module.exports: $PropertyType<$Exports<"lodash">, "times">; -} - -declare module "lodash/toPath" { - declare module.exports: $PropertyType<$Exports<"lodash">, "toPath">; -} - -declare module "lodash/uniqueId" { - declare module.exports: $PropertyType<$Exports<"lodash">, "uniqueId">; -} - -declare module "lodash/fp/chunk" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "chunk">; -} - -declare module "lodash/fp/compact" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "compact">; -} - -declare module "lodash/fp/concat" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "concat">; -} - -declare module "lodash/fp/difference" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "difference">; -} - -declare module "lodash/fp/differenceBy" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "differenceBy">; -} - -declare module "lodash/fp/differenceWith" { - declare module.exports: $PropertyType< - $Exports<"lodash/fp">, - "differenceWith" - >; -} - -declare module "lodash/fp/drop" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "drop">; -} - -declare module "lodash/fp/dropLast" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "dropLast">; -} - -declare module "lodash/fp/dropRight" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "dropRight">; -} - -declare module "lodash/fp/dropRightWhile" { - declare module.exports: $PropertyType< - $Exports<"lodash/fp">, - "dropRightWhile" - >; -} - -declare module "lodash/fp/dropWhile" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "dropWhile">; -} - -declare module "lodash/fp/dropLastWhile" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "dropLastWhile">; -} - -declare module "lodash/fp/fill" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "fill">; -} - -declare module "lodash/fp/findIndex" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "findIndex">; -} - -declare module "lodash/fp/findIndexFrom" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "findIndexFrom">; -} - -declare module "lodash/fp/findLastIndex" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "findLastIndex">; -} - -declare module "lodash/fp/findLastIndexFrom" { - declare module.exports: $PropertyType< - $Exports<"lodash/fp">, - "findLastIndexFrom" - >; -} - -declare module "lodash/fp/first" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "first">; -} - -declare module "lodash/fp/flatten" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "flatten">; -} - -declare module "lodash/fp/unnest" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "unnest">; -} - -declare module "lodash/fp/flattenDeep" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "flattenDeep">; -} - -declare module "lodash/fp/flattenDepth" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "flattenDepth">; -} - -declare module "lodash/fp/fromPairs" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "fromPairs">; -} - -declare module "lodash/fp/head" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "head">; -} - -declare module "lodash/fp/indexOf" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "indexOf">; -} - -declare module "lodash/fp/indexOfFrom" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "indexOfFrom">; -} - -declare module "lodash/fp/initial" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "initial">; -} - -declare module "lodash/fp/init" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "init">; -} - -declare module "lodash/fp/intersection" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "intersection">; -} - -declare module "lodash/fp/intersectionBy" { - declare module.exports: $PropertyType< - $Exports<"lodash/fp">, - "intersectionBy" - >; -} - -declare module "lodash/fp/intersectionWith" { - declare module.exports: $PropertyType< - $Exports<"lodash/fp">, - "intersectionWith" - >; -} - -declare module "lodash/fp/join" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "join">; -} - -declare module "lodash/fp/last" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "last">; -} - -declare module "lodash/fp/lastIndexOf" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "lastIndexOf">; -} - -declare module "lodash/fp/lastIndexOfFrom" { - declare module.exports: $PropertyType< - $Exports<"lodash/fp">, - "lastIndexOfFrom" - >; -} - -declare module "lodash/fp/nth" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "nth">; -} - -declare module "lodash/fp/pull" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "pull">; -} - -declare module "lodash/fp/pullAll" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "pullAll">; -} - -declare module "lodash/fp/pullAllBy" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "pullAllBy">; -} - -declare module "lodash/fp/pullAllWith" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "pullAllWith">; -} - -declare module "lodash/fp/pullAt" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "pullAt">; -} - -declare module "lodash/fp/remove" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "remove">; -} - -declare module "lodash/fp/reverse" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "reverse">; -} - -declare module "lodash/fp/slice" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "slice">; -} - -declare module "lodash/fp/sortedIndex" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "sortedIndex">; -} - -declare module "lodash/fp/sortedIndexBy" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "sortedIndexBy">; -} - -declare module "lodash/fp/sortedIndexOf" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "sortedIndexOf">; -} - -declare module "lodash/fp/sortedLastIndex" { - declare module.exports: $PropertyType< - $Exports<"lodash/fp">, - "sortedLastIndex" - >; -} - -declare module "lodash/fp/sortedLastIndexBy" { - declare module.exports: $PropertyType< - $Exports<"lodash/fp">, - "sortedLastIndexBy" - >; -} - -declare module "lodash/fp/sortedLastIndexOf" { - declare module.exports: $PropertyType< - $Exports<"lodash/fp">, - "sortedLastIndexOf" - >; -} - -declare module "lodash/fp/sortedUniq" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "sortedUniq">; -} - -declare module "lodash/fp/sortedUniqBy" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "sortedUniqBy">; -} - -declare module "lodash/fp/tail" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "tail">; -} - -declare module "lodash/fp/take" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "take">; -} - -declare module "lodash/fp/takeRight" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "takeRight">; -} - -declare module "lodash/fp/takeLast" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "takeLast">; -} - -declare module "lodash/fp/takeRightWhile" { - declare module.exports: $PropertyType< - $Exports<"lodash/fp">, - "takeRightWhile" - >; -} - -declare module "lodash/fp/takeLastWhile" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "takeLastWhile">; -} - -declare module "lodash/fp/takeWhile" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "takeWhile">; -} - -declare module "lodash/fp/union" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "union">; -} - -declare module "lodash/fp/unionBy" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "unionBy">; -} - -declare module "lodash/fp/unionWith" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "unionWith">; -} - -declare module "lodash/fp/uniq" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "uniq">; -} - -declare module "lodash/fp/uniqBy" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "uniqBy">; -} - -declare module "lodash/fp/uniqWith" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "uniqWith">; -} - -declare module "lodash/fp/unzip" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "unzip">; -} - -declare module "lodash/fp/unzipWith" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "unzipWith">; -} - -declare module "lodash/fp/without" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "without">; -} - -declare module "lodash/fp/xor" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "xor">; -} - -declare module "lodash/fp/symmetricDifference" { - declare module.exports: $PropertyType< - $Exports<"lodash/fp">, - "symmetricDifference" - >; -} - -declare module "lodash/fp/xorBy" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "xorBy">; -} - -declare module "lodash/fp/symmetricDifferenceBy" { - declare module.exports: $PropertyType< - $Exports<"lodash/fp">, - "symmetricDifferenceBy" - >; -} - -declare module "lodash/fp/xorWith" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "xorWith">; -} - -declare module "lodash/fp/symmetricDifferenceWith" { - declare module.exports: $PropertyType< - $Exports<"lodash/fp">, - "symmetricDifferenceWith" - >; -} - -declare module "lodash/fp/zip" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "zip">; -} - -declare module "lodash/fp/zipAll" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "zipAll">; -} - -declare module "lodash/fp/zipObject" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "zipObject">; -} - -declare module "lodash/fp/zipObj" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "zipObj">; -} - -declare module "lodash/fp/zipObjectDeep" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "zipObjectDeep">; -} - -declare module "lodash/fp/zipWith" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "zipWith">; -} - -declare module "lodash/fp/countBy" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "countBy">; -} - -declare module "lodash/fp/each" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "each">; -} - -declare module "lodash/fp/eachRight" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "eachRight">; -} - -declare module "lodash/fp/every" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "every">; -} - -declare module "lodash/fp/all" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "all">; -} - -declare module "lodash/fp/filter" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "filter">; -} - -declare module "lodash/fp/find" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "find">; -} - -declare module "lodash/fp/findFrom" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "findFrom">; -} - -declare module "lodash/fp/findLast" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "findLast">; -} - -declare module "lodash/fp/findLastFrom" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "findLastFrom">; -} - -declare module "lodash/fp/flatMap" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "flatMap">; -} - -declare module "lodash/fp/flatMapDeep" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "flatMapDeep">; -} - -declare module "lodash/fp/flatMapDepth" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "flatMapDepth">; -} - -declare module "lodash/fp/forEach" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "forEach">; -} - -declare module "lodash/fp/forEachRight" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "forEachRight">; -} - -declare module "lodash/fp/groupBy" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "groupBy">; -} - -declare module "lodash/fp/includes" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "includes">; -} - -declare module "lodash/fp/contains" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "contains">; -} - -declare module "lodash/fp/includesFrom" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "includesFrom">; -} - -declare module "lodash/fp/invokeMap" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "invokeMap">; -} - -declare module "lodash/fp/invokeArgsMap" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "invokeArgsMap">; -} - -declare module "lodash/fp/keyBy" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "keyBy">; -} - -declare module "lodash/fp/indexBy" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "indexBy">; -} - -declare module "lodash/fp/map" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "map">; -} - -declare module "lodash/fp/pluck" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "pluck">; -} - -declare module "lodash/fp/orderBy" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "orderBy">; -} - -declare module "lodash/fp/partition" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "partition">; -} - -declare module "lodash/fp/reduce" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "reduce">; -} - -declare module "lodash/fp/reduceRight" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "reduceRight">; -} - -declare module "lodash/fp/reject" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "reject">; -} - -declare module "lodash/fp/sample" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "sample">; -} - -declare module "lodash/fp/sampleSize" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "sampleSize">; -} - -declare module "lodash/fp/shuffle" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "shuffle">; -} - -declare module "lodash/fp/size" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "size">; -} - -declare module "lodash/fp/some" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "some">; -} - -declare module "lodash/fp/any" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "any">; -} - -declare module "lodash/fp/sortBy" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "sortBy">; -} - -declare module "lodash/fp/now" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "now">; -} - -declare module "lodash/fp/after" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "after">; -} - -declare module "lodash/fp/ary" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "ary">; -} - -declare module "lodash/fp/nAry" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "nAry">; -} - -declare module "lodash/fp/before" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "before">; -} - -declare module "lodash/fp/bind" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "bind">; -} - -declare module "lodash/fp/bindKey" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "bindKey">; -} - -declare module "lodash/fp/curry" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "curry">; -} - -declare module "lodash/fp/curryN" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "curryN">; -} - -declare module "lodash/fp/curryRight" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "curryRight">; -} - -declare module "lodash/fp/curryRightN" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "curryRightN">; -} - -declare module "lodash/fp/debounce" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "debounce">; -} - -declare module "lodash/fp/defer" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "defer">; -} - -declare module "lodash/fp/delay" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "delay">; -} - -declare module "lodash/fp/flip" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "flip">; -} - -declare module "lodash/fp/memoize" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "memoize">; -} - -declare module "lodash/fp/negate" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "negate">; -} - -declare module "lodash/fp/complement" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "complement">; -} - -declare module "lodash/fp/once" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "once">; -} - -declare module "lodash/fp/overArgs" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "overArgs">; -} - -declare module "lodash/fp/useWith" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "useWith">; -} - -declare module "lodash/fp/partial" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "partial">; -} - -declare module "lodash/fp/partialRight" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "partialRight">; -} - -declare module "lodash/fp/rearg" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "rearg">; -} - -declare module "lodash/fp/rest" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "rest">; -} - -declare module "lodash/fp/unapply" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "unapply">; -} - -declare module "lodash/fp/restFrom" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "restFrom">; -} - -declare module "lodash/fp/spread" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "spread">; -} - -declare module "lodash/fp/apply" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "apply">; -} - -declare module "lodash/fp/spreadFrom" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "spreadFrom">; -} - -declare module "lodash/fp/throttle" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "throttle">; -} - -declare module "lodash/fp/unary" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "unary">; -} - -declare module "lodash/fp/wrap" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "wrap">; -} - -declare module "lodash/fp/castArray" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "castArray">; -} - -declare module "lodash/fp/clone" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "clone">; -} - -declare module "lodash/fp/cloneDeep" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "cloneDeep">; -} - -declare module "lodash/fp/cloneDeepWith" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "cloneDeepWith">; -} - -declare module "lodash/fp/cloneWith" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "cloneWith">; -} - -declare module "lodash/fp/conformsTo" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "conformsTo">; -} - -declare module "lodash/fp/where" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "where">; -} - -declare module "lodash/fp/conforms" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "conforms">; -} - -declare module "lodash/fp/eq" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "eq">; -} - -declare module "lodash/fp/identical" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "identical">; -} - -declare module "lodash/fp/gt" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "gt">; -} - -declare module "lodash/fp/gte" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "gte">; -} - -declare module "lodash/fp/isArguments" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "isArguments">; -} - -declare module "lodash/fp/isArray" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "isArray">; -} - -declare module "lodash/fp/isArrayBuffer" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "isArrayBuffer">; -} - -declare module "lodash/fp/isArrayLike" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "isArrayLike">; -} - -declare module "lodash/fp/isArrayLikeObject" { - declare module.exports: $PropertyType< - $Exports<"lodash/fp">, - "isArrayLikeObject" - >; -} - -declare module "lodash/fp/isBoolean" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "isBoolean">; -} - -declare module "lodash/fp/isBuffer" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "isBuffer">; -} - -declare module "lodash/fp/isDate" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "isDate">; -} - -declare module "lodash/fp/isElement" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "isElement">; -} - -declare module "lodash/fp/isEmpty" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "isEmpty">; -} - -declare module "lodash/fp/isEqual" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "isEqual">; -} - -declare module "lodash/fp/equals" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "equals">; -} - -declare module "lodash/fp/isEqualWith" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "isEqualWith">; -} - -declare module "lodash/fp/isError" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "isError">; -} - -declare module "lodash/fp/isFinite" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "isFinite">; -} - -declare module "lodash/fp/isFunction" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "isFunction">; -} - -declare module "lodash/fp/isInteger" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "isInteger">; -} - -declare module "lodash/fp/isLength" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "isLength">; -} - -declare module "lodash/fp/isMap" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "isMap">; -} - -declare module "lodash/fp/isMatch" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "isMatch">; -} - -declare module "lodash/fp/whereEq" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "whereEq">; -} - -declare module "lodash/fp/isMatchWith" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "isMatchWith">; -} - -declare module "lodash/fp/isNaN" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "isNaN">; -} - -declare module "lodash/fp/isNative" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "isNative">; -} - -declare module "lodash/fp/isNil" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "isNil">; -} - -declare module "lodash/fp/isNull" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "isNull">; -} - -declare module "lodash/fp/isNumber" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "isNumber">; -} - -declare module "lodash/fp/isObject" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "isObject">; -} - -declare module "lodash/fp/isObjectLike" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "isObjectLike">; -} - -declare module "lodash/fp/isPlainObject" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "isPlainObject">; -} - -declare module "lodash/fp/isRegExp" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "isRegExp">; -} - -declare module "lodash/fp/isSafeInteger" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "isSafeInteger">; -} - -declare module "lodash/fp/isSet" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "isSet">; -} - -declare module "lodash/fp/isString" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "isString">; -} - -declare module "lodash/fp/isSymbol" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "isSymbol">; -} - -declare module "lodash/fp/isTypedArray" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "isTypedArray">; -} - -declare module "lodash/fp/isUndefined" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "isUndefined">; -} - -declare module "lodash/fp/isWeakMap" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "isWeakMap">; -} - -declare module "lodash/fp/isWeakSet" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "isWeakSet">; -} - -declare module "lodash/fp/lt" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "lt">; -} - -declare module "lodash/fp/lte" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "lte">; -} - -declare module "lodash/fp/toArray" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "toArray">; -} - -declare module "lodash/fp/toFinite" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "toFinite">; -} - -declare module "lodash/fp/toInteger" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "toInteger">; -} - -declare module "lodash/fp/toLength" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "toLength">; -} - -declare module "lodash/fp/toNumber" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "toNumber">; -} - -declare module "lodash/fp/toPlainObject" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "toPlainObject">; -} - -declare module "lodash/fp/toSafeInteger" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "toSafeInteger">; -} - -declare module "lodash/fp/toString" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "toString">; -} - -declare module "lodash/fp/add" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "add">; -} - -declare module "lodash/fp/ceil" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "ceil">; -} - -declare module "lodash/fp/divide" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "divide">; -} - -declare module "lodash/fp/floor" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "floor">; -} - -declare module "lodash/fp/max" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "max">; -} - -declare module "lodash/fp/maxBy" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "maxBy">; -} - -declare module "lodash/fp/mean" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "mean">; -} - -declare module "lodash/fp/meanBy" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "meanBy">; -} - -declare module "lodash/fp/min" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "min">; -} - -declare module "lodash/fp/minBy" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "minBy">; -} - -declare module "lodash/fp/multiply" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "multiply">; -} - -declare module "lodash/fp/round" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "round">; -} - -declare module "lodash/fp/subtract" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "subtract">; -} - -declare module "lodash/fp/sum" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "sum">; -} - -declare module "lodash/fp/sumBy" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "sumBy">; -} - -declare module "lodash/fp/clamp" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "clamp">; -} - -declare module "lodash/fp/inRange" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "inRange">; -} - -declare module "lodash/fp/random" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "random">; -} - -declare module "lodash/fp/assign" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "assign">; -} - -declare module "lodash/fp/assignAll" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "assignAll">; -} - -declare module "lodash/fp/assignInAll" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "assignInAll">; -} - -declare module "lodash/fp/extendAll" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "extendAll">; -} - -declare module "lodash/fp/assignIn" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "assignIn">; -} - -declare module "lodash/fp/assignInWith" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "assignInWith">; -} - -declare module "lodash/fp/assignWith" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "assignWith">; -} - -declare module "lodash/fp/assignInAllWith" { - declare module.exports: $PropertyType< - $Exports<"lodash/fp">, - "assignInAllWith" - >; -} - -declare module "lodash/fp/extendAllWith" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "extendAllWith">; -} - -declare module "lodash/fp/assignAllWith" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "assignAllWith">; -} - -declare module "lodash/fp/at" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "at">; -} - -declare module "lodash/fp/props" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "props">; -} - -declare module "lodash/fp/paths" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "paths">; -} - -declare module "lodash/fp/create" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "create">; -} - -declare module "lodash/fp/defaults" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "defaults">; -} - -declare module "lodash/fp/defaultsAll" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "defaultsAll">; -} - -declare module "lodash/fp/defaultsDeep" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "defaultsDeep">; -} - -declare module "lodash/fp/defaultsDeepAll" { - declare module.exports: $PropertyType< - $Exports<"lodash/fp">, - "defaultsDeepAll" - >; -} - -declare module "lodash/fp/entries" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "entries">; -} - -declare module "lodash/fp/entriesIn" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "entriesIn">; -} - -declare module "lodash/fp/extend" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "extend">; -} - -declare module "lodash/fp/extendWith" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "extendWith">; -} - -declare module "lodash/fp/findKey" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "findKey">; -} - -declare module "lodash/fp/findLastKey" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "findLastKey">; -} - -declare module "lodash/fp/forIn" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "forIn">; -} - -declare module "lodash/fp/forInRight" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "forInRight">; -} - -declare module "lodash/fp/forOwn" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "forOwn">; -} - -declare module "lodash/fp/forOwnRight" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "forOwnRight">; -} - -declare module "lodash/fp/functions" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "functions">; -} - -declare module "lodash/fp/functionsIn" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "functionsIn">; -} - -declare module "lodash/fp/get" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "get">; -} - -declare module "lodash/fp/prop" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "prop">; -} - -declare module "lodash/fp/path" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "path">; -} - -declare module "lodash/fp/getOr" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "getOr">; -} - -declare module "lodash/fp/propOr" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "propOr">; -} - -declare module "lodash/fp/pathOr" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "pathOr">; -} - -declare module "lodash/fp/has" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "has">; -} - -declare module "lodash/fp/hasIn" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "hasIn">; -} - -declare module "lodash/fp/invert" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "invert">; -} - -declare module "lodash/fp/invertObj" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "invertObj">; -} - -declare module "lodash/fp/invertBy" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "invertBy">; -} - -declare module "lodash/fp/invoke" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "invoke">; -} - -declare module "lodash/fp/invokeArgs" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "invokeArgs">; -} - -declare module "lodash/fp/keys" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "keys">; -} - -declare module "lodash/fp/keysIn" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "keysIn">; -} - -declare module "lodash/fp/mapKeys" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "mapKeys">; -} - -declare module "lodash/fp/mapValues" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "mapValues">; -} - -declare module "lodash/fp/merge" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "merge">; -} - -declare module "lodash/fp/mergeAll" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "mergeAll">; -} - -declare module "lodash/fp/mergeWith" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "mergeWith">; -} - -declare module "lodash/fp/mergeAllWith" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "mergeAllWith">; -} - -declare module "lodash/fp/omit" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "omit">; -} - -declare module "lodash/fp/omitAll" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "omitAll">; -} - -declare module "lodash/fp/omitBy" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "omitBy">; -} - -declare module "lodash/fp/pick" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "pick">; -} - -declare module "lodash/fp/pickAll" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "pickAll">; -} - -declare module "lodash/fp/pickBy" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "pickBy">; -} - -declare module "lodash/fp/result" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "result">; -} - -declare module "lodash/fp/set" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "set">; -} - -declare module "lodash/fp/assoc" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "assoc">; -} - -declare module "lodash/fp/assocPath" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "assocPath">; -} - -declare module "lodash/fp/setWith" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "setWith">; -} - -declare module "lodash/fp/toPairs" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "toPairs">; -} - -declare module "lodash/fp/toPairsIn" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "toPairsIn">; -} - -declare module "lodash/fp/transform" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "transform">; -} - -declare module "lodash/fp/unset" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "unset">; -} - -declare module "lodash/fp/dissoc" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "dissoc">; -} - -declare module "lodash/fp/dissocPath" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "dissocPath">; -} - -declare module "lodash/fp/update" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "update">; -} - -declare module "lodash/fp/updateWith" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "updateWith">; -} - -declare module "lodash/fp/values" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "values">; -} - -declare module "lodash/fp/valuesIn" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "valuesIn">; -} - -declare module "lodash/fp/tap" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "tap">; -} - -declare module "lodash/fp/thru" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "thru">; -} - -declare module "lodash/fp/camelCase" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "camelCase">; -} - -declare module "lodash/fp/capitalize" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "capitalize">; -} - -declare module "lodash/fp/deburr" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "deburr">; -} - -declare module "lodash/fp/endsWith" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "endsWith">; -} - -declare module "lodash/fp/escape" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "escape">; -} - -declare module "lodash/fp/escapeRegExp" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "escapeRegExp">; -} - -declare module "lodash/fp/kebabCase" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "kebabCase">; -} - -declare module "lodash/fp/lowerCase" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "lowerCase">; -} - -declare module "lodash/fp/lowerFirst" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "lowerFirst">; -} - -declare module "lodash/fp/pad" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "pad">; -} - -declare module "lodash/fp/padChars" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "padChars">; -} - -declare module "lodash/fp/padEnd" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "padEnd">; -} - -declare module "lodash/fp/padCharsEnd" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "padCharsEnd">; -} - -declare module "lodash/fp/padStart" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "padStart">; -} - -declare module "lodash/fp/padCharsStart" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "padCharsStart">; -} - -declare module "lodash/fp/parseInt" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "parseInt">; -} - -declare module "lodash/fp/repeat" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "repeat">; -} - -declare module "lodash/fp/replace" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "replace">; -} - -declare module "lodash/fp/snakeCase" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "snakeCase">; -} - -declare module "lodash/fp/split" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "split">; -} - -declare module "lodash/fp/startCase" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "startCase">; -} - -declare module "lodash/fp/startsWith" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "startsWith">; -} - -declare module "lodash/fp/template" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "template">; -} - -declare module "lodash/fp/toLower" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "toLower">; -} - -declare module "lodash/fp/toUpper" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "toUpper">; -} - -declare module "lodash/fp/trim" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "trim">; -} - -declare module "lodash/fp/trimChars" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "trimChars">; -} - -declare module "lodash/fp/trimEnd" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "trimEnd">; -} - -declare module "lodash/fp/trimCharsEnd" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "trimCharsEnd">; -} - -declare module "lodash/fp/trimStart" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "trimStart">; -} - -declare module "lodash/fp/trimCharsStart" { - declare module.exports: $PropertyType< - $Exports<"lodash/fp">, - "trimCharsStart" - >; -} - -declare module "lodash/fp/truncate" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "truncate">; -} - -declare module "lodash/fp/unescape" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "unescape">; -} - -declare module "lodash/fp/upperCase" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "upperCase">; -} - -declare module "lodash/fp/upperFirst" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "upperFirst">; -} - -declare module "lodash/fp/words" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "words">; -} - -declare module "lodash/fp/attempt" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "attempt">; -} - -declare module "lodash/fp/bindAll" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "bindAll">; -} - -declare module "lodash/fp/cond" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "cond">; -} - -declare module "lodash/fp/constant" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "constant">; -} - -declare module "lodash/fp/always" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "always">; -} - -declare module "lodash/fp/defaultTo" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "defaultTo">; -} - -declare module "lodash/fp/flow" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "flow">; -} - -declare module "lodash/fp/pipe" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "pipe">; -} - -declare module "lodash/fp/flowRight" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "flowRight">; -} - -declare module "lodash/fp/compose" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "compose">; -} - -declare module "lodash/fp/identity" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "identity">; -} - -declare module "lodash/fp/iteratee" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "iteratee">; -} - -declare module "lodash/fp/matches" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "matches">; -} - -declare module "lodash/fp/matchesProperty" { - declare module.exports: $PropertyType< - $Exports<"lodash/fp">, - "matchesProperty" - >; -} - -declare module "lodash/fp/propEq" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "propEq">; -} - -declare module "lodash/fp/pathEq" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "pathEq">; -} - -declare module "lodash/fp/method" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "method">; -} - -declare module "lodash/fp/methodOf" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "methodOf">; -} - -declare module "lodash/fp/mixin" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "mixin">; -} - -declare module "lodash/fp/noConflict" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "noConflict">; -} - -declare module "lodash/fp/noop" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "noop">; -} - -declare module "lodash/fp/nthArg" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "nthArg">; -} - -declare module "lodash/fp/over" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "over">; -} - -declare module "lodash/fp/juxt" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "juxt">; -} - -declare module "lodash/fp/overEvery" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "overEvery">; -} - -declare module "lodash/fp/allPass" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "allPass">; -} - -declare module "lodash/fp/overSome" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "overSome">; -} - -declare module "lodash/fp/anyPass" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "anyPass">; -} - -declare module "lodash/fp/property" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "property">; -} - -declare module "lodash/fp/propertyOf" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "propertyOf">; -} - -declare module "lodash/fp/range" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "range">; -} - -declare module "lodash/fp/rangeStep" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "rangeStep">; -} - -declare module "lodash/fp/rangeRight" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "rangeRight">; -} - -declare module "lodash/fp/rangeStepRight" { - declare module.exports: $PropertyType< - $Exports<"lodash/fp">, - "rangeStepRight" - >; -} - -declare module "lodash/fp/runInContext" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "runInContext">; -} - -declare module "lodash/fp/stubArray" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "stubArray">; -} - -declare module "lodash/fp/stubFalse" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "stubFalse">; -} - -declare module "lodash/fp/F" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "F">; -} - -declare module "lodash/fp/stubObject" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "stubObject">; -} - -declare module "lodash/fp/stubString" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "stubString">; -} - -declare module "lodash/fp/stubTrue" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "stubTrue">; -} - -declare module "lodash/fp/T" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "T">; -} - -declare module "lodash/fp/times" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "times">; -} - -declare module "lodash/fp/toPath" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "toPath">; -} - -declare module "lodash/fp/uniqueId" { - declare module.exports: $PropertyType<$Exports<"lodash/fp">, "uniqueId">; -} diff --git a/flow-typed/npm/menubar_vx.x.x.js b/flow-typed/npm/menubar_vx.x.x.js deleted file mode 100644 index fb446490..00000000 --- a/flow-typed/npm/menubar_vx.x.x.js +++ /dev/null @@ -1,84 +0,0 @@ -// flow-typed signature: 490c9c9983d964b5c579de37099b81bf -// flow-typed version: <>/menubar_v9.0.1/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'menubar' - * - * 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 'menubar' { - 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 'menubar/lib/__mocks__/electron' { - declare module.exports: any; -} - -declare module 'menubar/lib' { - declare module.exports: any; -} - -declare module 'menubar/lib/Menubar' { - declare module.exports: any; -} - -declare module 'menubar/lib/Menubar.spec' { - declare module.exports: any; -} - -declare module 'menubar/lib/types' { - declare module.exports: any; -} - -declare module 'menubar/lib/util/cleanOptions' { - declare module.exports: any; -} - -declare module 'menubar/lib/util/cleanOptions.spec' { - declare module.exports: any; -} - -declare module 'menubar/lib/util/getWindowPosition' { - declare module.exports: any; -} - -// Filename aliases -declare module 'menubar/lib/__mocks__/electron.js' { - declare module.exports: $Exports<'menubar/lib/__mocks__/electron'>; -} -declare module 'menubar/lib/index' { - declare module.exports: $Exports<'menubar/lib'>; -} -declare module 'menubar/lib/index.js' { - declare module.exports: $Exports<'menubar/lib'>; -} -declare module 'menubar/lib/Menubar.js' { - declare module.exports: $Exports<'menubar/lib/Menubar'>; -} -declare module 'menubar/lib/Menubar.spec.js' { - declare module.exports: $Exports<'menubar/lib/Menubar.spec'>; -} -declare module 'menubar/lib/types.js' { - declare module.exports: $Exports<'menubar/lib/types'>; -} -declare module 'menubar/lib/util/cleanOptions.js' { - declare module.exports: $Exports<'menubar/lib/util/cleanOptions'>; -} -declare module 'menubar/lib/util/cleanOptions.spec.js' { - declare module.exports: $Exports<'menubar/lib/util/cleanOptions.spec'>; -} -declare module 'menubar/lib/util/getWindowPosition.js' { - declare module.exports: $Exports<'menubar/lib/util/getWindowPosition'>; -} diff --git a/flow-typed/npm/node-fetch_v2.x.x.js b/flow-typed/npm/node-fetch_v2.x.x.js deleted file mode 100644 index 3f37f21b..00000000 --- a/flow-typed/npm/node-fetch_v2.x.x.js +++ /dev/null @@ -1,133 +0,0 @@ -// flow-typed signature: 800c99f4687ac083d3ed2dd6b9ee9457 -// flow-typed version: 711a5f887a/node-fetch_v2.x.x/flow_>=v0.104.x - -declare module 'node-fetch' { - import type http from 'http'; - import type https from 'https'; - import type { URL } from 'url'; - import type { Readable } from 'stream'; - - declare export type AbortSignal = { - +aborted: boolean; - +onabort: (event?: { ... }) => void; - - +addEventListener: (name: string, cb: () => mixed) => void; - +removeEventListener: (name: string, cb: () => mixed) => void; - +dispatchEvent: (event: { ... }) => void; - ..., - } - - declare export class Request mixins Body { - constructor(input: string | { href: string, ... } | Request, init?: RequestInit): this; - context: RequestContext; - headers: Headers; - method: string; - redirect: RequestRedirect; - referrer: string; - url: string; - - // node-fetch extensions - agent: http.Agent | https.Agent; - compress: boolean; - counter: number; - follow: number; - hostname: string; - port: number; - protocol: string; - size: number; - timeout: number; - } - - declare type HeaderObject = { [index: string]: string, ... } - - declare type RequestInit = {| - body?: BodyInit, - headers?: HeaderObject, - method?: string, - redirect?: RequestRedirect, - signal?: AbortSignal | null, - - // node-fetch extensions - agent?: (URL => (http.Agent | https.Agent)) | http.Agent | https.Agent | null; - compress?: boolean, - follow?: number, - size?: number, - timeout?: number, - |}; - - declare export interface FetchError extends Error { - name: 'FetchError'; - type: string; - code: ?number; - errno: ?number; - } - - declare export interface AbortError extends Error { - name: 'AbortError'; - type: 'aborted'; - } - - declare type RequestContext = - 'audio' | 'beacon' | 'cspreport' | 'download' | 'embed' | - 'eventsource' | 'favicon' | 'fetch' | 'font' | 'form' | 'frame' | - 'hyperlink' | 'iframe' | 'image' | 'imageset' | 'import' | - 'internal' | 'location' | 'manifest' | 'object' | 'ping' | 'plugin' | - 'prefetch' | 'script' | 'serviceworker' | 'sharedworker' | - 'subresource' | 'style' | 'track' | 'video' | 'worker' | - 'xmlhttprequest' | 'xslt'; - declare type RequestRedirect = 'error' | 'follow' | 'manual'; - - declare export class Headers { - append(name: string, value: string): void; - delete(name: string): void; - forEach(callback: (value: string, name: string) => void): void; - get(name: string): string; - getAll(name: string): Array; - has(name: string): boolean; - raw(): { [k: string]: string[], ... }; - set(name: string, value: string): void; - } - - declare export class Body { - buffer(): Promise; - json(): Promise; - json(): Promise; - text(): Promise; - body: stream$Readable; - bodyUsed: boolean; - } - - declare export class Response mixins Body { - constructor(body?: BodyInit, init?: ResponseInit): this; - clone(): Response; - error(): Response; - redirect(url: string, status: number): Response; - headers: Headers; - ok: boolean; - status: number; - statusText: string; - size: number; - timeout: number; - type: ResponseType; - url: string; - } - - declare type ResponseType = - | 'basic' - | 'cors' - | 'default' - | 'error' - | 'opaque' - | 'opaqueredirect'; - - declare interface ResponseInit { - headers?: HeaderInit, - status: number, - statusText?: string, - } - - declare type HeaderInit = Headers | Array; - declare type BodyInit = string | null | Buffer | Blob | Readable; - - declare export default function fetch(url: string | Request, init?: RequestInit): Promise -} diff --git a/flow-typed/npm/prop-types_v15.x.x.js b/flow-typed/npm/prop-types_v15.x.x.js deleted file mode 100644 index 1c4e25c0..00000000 --- a/flow-typed/npm/prop-types_v15.x.x.js +++ /dev/null @@ -1,38 +0,0 @@ -// flow-typed signature: c93a723cbeb4d2f95d6a472157f6052f -// flow-typed version: 61b795e5b6/prop-types_v15.x.x/flow_>=v0.104.x - -type $npm$propTypes$ReactPropsCheckType = ( - props: any, - propName: string, - componentName: string, - href?: string -) => ?Error; - -// Copied from: https://github.com/facebook/flow/blob/0938da8d7293d0077fbe95c3a3e0eebadb57b012/lib/react.js#L433-L449 -declare module 'prop-types' { - declare var array: React$PropType$Primitive>; - declare var bool: React$PropType$Primitive; - declare var func: React$PropType$Primitive<(...a: Array) => mixed>; - declare var number: React$PropType$Primitive; - declare var object: React$PropType$Primitive<{ +[string]: mixed, ... }>; - declare var string: React$PropType$Primitive; - declare var symbol: React$PropType$Primitive; - declare var any: React$PropType$Primitive; - declare var arrayOf: React$PropType$ArrayOf; - declare var element: React$PropType$Primitive; - declare var elementType: React$PropType$Primitive; - declare var instanceOf: React$PropType$InstanceOf; - declare var node: React$PropType$Primitive; - declare var objectOf: React$PropType$ObjectOf; - declare var oneOf: React$PropType$OneOf; - declare var oneOfType: React$PropType$OneOfType; - declare var shape: React$PropType$Shape; - - declare function checkPropTypes( - propTypes: { [key: $Keys]: $npm$propTypes$ReactPropsCheckType, ... }, - values: V, - location: string, - componentName: string, - getStack: ?() => ?string - ): void; -} diff --git a/flow-typed/npm/proxy-agent_vx.x.x.js b/flow-typed/npm/proxy-agent_vx.x.x.js deleted file mode 100644 index 9baaab09..00000000 --- a/flow-typed/npm/proxy-agent_vx.x.x.js +++ /dev/null @@ -1,38 +0,0 @@ -// flow-typed signature: a09e676723a6497a38e4cb8c96b7bfa2 -// flow-typed version: <>/proxy-agent_v4.0.0/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'proxy-agent' - * - * 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 'proxy-agent' { - 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 'proxy-agent/test/test' { - declare module.exports: any; -} - -// Filename aliases -declare module 'proxy-agent/index' { - declare module.exports: $Exports<'proxy-agent'>; -} -declare module 'proxy-agent/index.js' { - declare module.exports: $Exports<'proxy-agent'>; -} -declare module 'proxy-agent/test/test.js' { - declare module.exports: $Exports<'proxy-agent/test/test'>; -} diff --git a/flow-typed/npm/react-ace_vx.x.x.js b/flow-typed/npm/react-ace_vx.x.x.js deleted file mode 100644 index b633dcf4..00000000 --- a/flow-typed/npm/react-ace_vx.x.x.js +++ /dev/null @@ -1,112 +0,0 @@ -// flow-typed signature: 495fd041a3e65670aa0c80e271702388 -// flow-typed version: <>/react-ace_v9.1.4/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'react-ace' - * - * 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 'react-ace' { - 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 'react-ace/dist/react-ace' { - declare module.exports: any; -} - -declare module 'react-ace/dist/react-ace.min' { - declare module.exports: any; -} - -declare module 'react-ace/lib/ace' { - declare module.exports: any; -} - -declare module 'react-ace/lib/diff' { - declare module.exports: any; -} - -declare module 'react-ace/lib/editorOptions' { - declare module.exports: any; -} - -declare module 'react-ace/lib' { - declare module.exports: any; -} - -declare module 'react-ace/lib/split' { - declare module.exports: any; -} - -declare module 'react-ace/lib/types' { - declare module.exports: any; -} - -declare module 'react-ace/webpack.config.base' { - declare module.exports: any; -} - -declare module 'react-ace/webpack.config.development' { - declare module.exports: any; -} - -declare module 'react-ace/webpack.config.example' { - declare module.exports: any; -} - -declare module 'react-ace/webpack.config.production' { - declare module.exports: any; -} - -// Filename aliases -declare module 'react-ace/dist/react-ace.js' { - declare module.exports: $Exports<'react-ace/dist/react-ace'>; -} -declare module 'react-ace/dist/react-ace.min.js' { - declare module.exports: $Exports<'react-ace/dist/react-ace.min'>; -} -declare module 'react-ace/lib/ace.js' { - declare module.exports: $Exports<'react-ace/lib/ace'>; -} -declare module 'react-ace/lib/diff.js' { - declare module.exports: $Exports<'react-ace/lib/diff'>; -} -declare module 'react-ace/lib/editorOptions.js' { - declare module.exports: $Exports<'react-ace/lib/editorOptions'>; -} -declare module 'react-ace/lib/index' { - declare module.exports: $Exports<'react-ace/lib'>; -} -declare module 'react-ace/lib/index.js' { - declare module.exports: $Exports<'react-ace/lib'>; -} -declare module 'react-ace/lib/split.js' { - declare module.exports: $Exports<'react-ace/lib/split'>; -} -declare module 'react-ace/lib/types.js' { - declare module.exports: $Exports<'react-ace/lib/types'>; -} -declare module 'react-ace/webpack.config.base.js' { - declare module.exports: $Exports<'react-ace/webpack.config.base'>; -} -declare module 'react-ace/webpack.config.development.js' { - declare module.exports: $Exports<'react-ace/webpack.config.development'>; -} -declare module 'react-ace/webpack.config.example.js' { - declare module.exports: $Exports<'react-ace/webpack.config.example'>; -} -declare module 'react-ace/webpack.config.production.js' { - declare module.exports: $Exports<'react-ace/webpack.config.production'>; -} diff --git a/flow-typed/npm/react-dom_v16.x.x.js b/flow-typed/npm/react-dom_v16.x.x.js deleted file mode 100644 index 889928b9..00000000 --- a/flow-typed/npm/react-dom_v16.x.x.js +++ /dev/null @@ -1,110 +0,0 @@ -// flow-typed signature: a333d1cdbb5a4103d0be63a412070e22 -// flow-typed version: b2693c1879/react-dom_v16.x.x/flow_>=v0.117.x - -declare module 'react-dom' { - declare function findDOMNode( - componentOrElement: Element | ?React$Component, - ): null | Element | Text; - - declare function render( - element: React$Element, - container: Element, - callback?: () => void, - ): React$ElementRef; - - declare function hydrate( - element: React$Element, - container: Element, - callback?: () => void, - ): React$ElementRef; - - declare function createPortal( - node: React$Node, - container: Element, - ): React$Portal; - - declare function unmountComponentAtNode(container: any): boolean; - declare var version: string; - - declare function unstable_batchedUpdates( - callback: (a: A, b: B, c: C, d: D, e: E) => mixed, - a: A, - b: B, - c: C, - d: D, - e: E, - ): void; - declare function unstable_renderSubtreeIntoContainer< - ElementType: React$ElementType, - >( - parentComponent: React$Component, - nextElement: React$Element, - container: any, - callback?: () => void, - ): React$ElementRef; -} - -declare module 'react-dom/server' { - declare function renderToString(element: React$Node): string; - declare function renderToStaticMarkup(element: React$Node): string; - declare function renderToNodeStream(element: React$Node): stream$Readable; - declare function renderToStaticNodeStream( - element: React$Node, - ): stream$Readable; - declare var version: string; -} - -type Thenable = { then(resolve: () => mixed, reject?: () => mixed): mixed, ... }; - -declare module 'react-dom/test-utils' { - declare var Simulate: { [eventName: string]: (element: Element, eventData?: Object) => void, ... }; - declare function renderIntoDocument( - instance: React$Element, - ): React$Component; - declare function mockComponent( - componentClass: React$ElementType, - mockTagName?: string, - ): Object; - declare function isElement(element: React$Element): boolean; - declare function isElementOfType( - element: React$Element, - componentClass: React$ElementType, - ): boolean; - declare function isDOMComponent(instance: any): boolean; - declare function isCompositeComponent( - instance: React$Component, - ): boolean; - declare function isCompositeComponentWithType( - instance: React$Component, - componentClass: React$ElementType, - ): boolean; - declare function findAllInRenderedTree( - tree: React$Component, - test: (child: React$Component) => boolean, - ): Array>; - declare function scryRenderedDOMComponentsWithClass( - tree: React$Component, - className: string, - ): Array; - declare function findRenderedDOMComponentWithClass( - tree: React$Component, - className: string, - ): ?Element; - declare function scryRenderedDOMComponentsWithTag( - tree: React$Component, - tagName: string, - ): Array; - declare function findRenderedDOMComponentWithTag( - tree: React$Component, - tagName: string, - ): ?Element; - declare function scryRenderedComponentsWithType( - tree: React$Component, - componentClass: React$ElementType, - ): Array>; - declare function findRenderedComponentWithType( - tree: React$Component, - componentClass: React$ElementType, - ): ?React$Component; - declare function act(callback: () => void | Thenable): Thenable; -} diff --git a/flow-typed/npm/react-i18next_vx.x.x.js b/flow-typed/npm/react-i18next_vx.x.x.js deleted file mode 100644 index 17076ac1..00000000 --- a/flow-typed/npm/react-i18next_vx.x.x.js +++ /dev/null @@ -1,300 +0,0 @@ -// flow-typed signature: b3faaf12198e541eb0c20555f4cb4a10 -// flow-typed version: <>/react-i18next_v^11.7.3/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'react-i18next' - * - * 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 'react-i18next' { - 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 'react-i18next/dist/amd/react-i18next' { - declare module.exports: any; -} - -declare module 'react-i18next/dist/amd/react-i18next.min' { - declare module.exports: any; -} - -declare module 'react-i18next/dist/commonjs/context' { - declare module.exports: any; -} - -declare module 'react-i18next/dist/commonjs/I18nextProvider' { - declare module.exports: any; -} - -declare module 'react-i18next/dist/commonjs' { - declare module.exports: any; -} - -declare module 'react-i18next/dist/commonjs/Trans' { - declare module.exports: any; -} - -declare module 'react-i18next/dist/commonjs/Translation' { - declare module.exports: any; -} - -declare module 'react-i18next/dist/commonjs/useSSR' { - declare module.exports: any; -} - -declare module 'react-i18next/dist/commonjs/useTranslation' { - declare module.exports: any; -} - -declare module 'react-i18next/dist/commonjs/utils' { - declare module.exports: any; -} - -declare module 'react-i18next/dist/commonjs/withSSR' { - declare module.exports: any; -} - -declare module 'react-i18next/dist/commonjs/withTranslation' { - declare module.exports: any; -} - -declare module 'react-i18next/dist/es/context' { - declare module.exports: any; -} - -declare module 'react-i18next/dist/es/I18nextProvider' { - declare module.exports: any; -} - -declare module 'react-i18next/dist/es' { - declare module.exports: any; -} - -declare module 'react-i18next/dist/es/Trans' { - declare module.exports: any; -} - -declare module 'react-i18next/dist/es/Translation' { - declare module.exports: any; -} - -declare module 'react-i18next/dist/es/useSSR' { - declare module.exports: any; -} - -declare module 'react-i18next/dist/es/useTranslation' { - declare module.exports: any; -} - -declare module 'react-i18next/dist/es/utils' { - declare module.exports: any; -} - -declare module 'react-i18next/dist/es/withSSR' { - declare module.exports: any; -} - -declare module 'react-i18next/dist/es/withTranslation' { - declare module.exports: any; -} - -declare module 'react-i18next/dist/umd/react-i18next' { - declare module.exports: any; -} - -declare module 'react-i18next/dist/umd/react-i18next.min' { - declare module.exports: any; -} - -declare module 'react-i18next/icu.macro' { - declare module.exports: any; -} - -declare module 'react-i18next/react-i18next' { - declare module.exports: any; -} - -declare module 'react-i18next/react-i18next.min' { - declare module.exports: any; -} - -declare module 'react-i18next/rollup.config' { - declare module.exports: any; -} - -declare module 'react-i18next/src/context' { - declare module.exports: any; -} - -declare module 'react-i18next/src/I18nextProvider' { - declare module.exports: any; -} - -declare module 'react-i18next/src' { - declare module.exports: any; -} - -declare module 'react-i18next/src/Trans' { - declare module.exports: any; -} - -declare module 'react-i18next/src/Translation' { - declare module.exports: any; -} - -declare module 'react-i18next/src/useSSR' { - declare module.exports: any; -} - -declare module 'react-i18next/src/useTranslation' { - declare module.exports: any; -} - -declare module 'react-i18next/src/utils' { - declare module.exports: any; -} - -declare module 'react-i18next/src/withSSR' { - declare module.exports: any; -} - -declare module 'react-i18next/src/withTranslation' { - declare module.exports: any; -} - -// Filename aliases -declare module 'react-i18next/dist/amd/react-i18next.js' { - declare module.exports: $Exports<'react-i18next/dist/amd/react-i18next'>; -} -declare module 'react-i18next/dist/amd/react-i18next.min.js' { - declare module.exports: $Exports<'react-i18next/dist/amd/react-i18next.min'>; -} -declare module 'react-i18next/dist/commonjs/context.js' { - declare module.exports: $Exports<'react-i18next/dist/commonjs/context'>; -} -declare module 'react-i18next/dist/commonjs/I18nextProvider.js' { - declare module.exports: $Exports<'react-i18next/dist/commonjs/I18nextProvider'>; -} -declare module 'react-i18next/dist/commonjs/index' { - declare module.exports: $Exports<'react-i18next/dist/commonjs'>; -} -declare module 'react-i18next/dist/commonjs/index.js' { - declare module.exports: $Exports<'react-i18next/dist/commonjs'>; -} -declare module 'react-i18next/dist/commonjs/Trans.js' { - declare module.exports: $Exports<'react-i18next/dist/commonjs/Trans'>; -} -declare module 'react-i18next/dist/commonjs/Translation.js' { - declare module.exports: $Exports<'react-i18next/dist/commonjs/Translation'>; -} -declare module 'react-i18next/dist/commonjs/useSSR.js' { - declare module.exports: $Exports<'react-i18next/dist/commonjs/useSSR'>; -} -declare module 'react-i18next/dist/commonjs/useTranslation.js' { - declare module.exports: $Exports<'react-i18next/dist/commonjs/useTranslation'>; -} -declare module 'react-i18next/dist/commonjs/utils.js' { - declare module.exports: $Exports<'react-i18next/dist/commonjs/utils'>; -} -declare module 'react-i18next/dist/commonjs/withSSR.js' { - declare module.exports: $Exports<'react-i18next/dist/commonjs/withSSR'>; -} -declare module 'react-i18next/dist/commonjs/withTranslation.js' { - declare module.exports: $Exports<'react-i18next/dist/commonjs/withTranslation'>; -} -declare module 'react-i18next/dist/es/context.js' { - declare module.exports: $Exports<'react-i18next/dist/es/context'>; -} -declare module 'react-i18next/dist/es/I18nextProvider.js' { - declare module.exports: $Exports<'react-i18next/dist/es/I18nextProvider'>; -} -declare module 'react-i18next/dist/es/index' { - declare module.exports: $Exports<'react-i18next/dist/es'>; -} -declare module 'react-i18next/dist/es/index.js' { - declare module.exports: $Exports<'react-i18next/dist/es'>; -} -declare module 'react-i18next/dist/es/Trans.js' { - declare module.exports: $Exports<'react-i18next/dist/es/Trans'>; -} -declare module 'react-i18next/dist/es/Translation.js' { - declare module.exports: $Exports<'react-i18next/dist/es/Translation'>; -} -declare module 'react-i18next/dist/es/useSSR.js' { - declare module.exports: $Exports<'react-i18next/dist/es/useSSR'>; -} -declare module 'react-i18next/dist/es/useTranslation.js' { - declare module.exports: $Exports<'react-i18next/dist/es/useTranslation'>; -} -declare module 'react-i18next/dist/es/utils.js' { - declare module.exports: $Exports<'react-i18next/dist/es/utils'>; -} -declare module 'react-i18next/dist/es/withSSR.js' { - declare module.exports: $Exports<'react-i18next/dist/es/withSSR'>; -} -declare module 'react-i18next/dist/es/withTranslation.js' { - declare module.exports: $Exports<'react-i18next/dist/es/withTranslation'>; -} -declare module 'react-i18next/dist/umd/react-i18next.js' { - declare module.exports: $Exports<'react-i18next/dist/umd/react-i18next'>; -} -declare module 'react-i18next/dist/umd/react-i18next.min.js' { - declare module.exports: $Exports<'react-i18next/dist/umd/react-i18next.min'>; -} -declare module 'react-i18next/icu.macro.js' { - declare module.exports: $Exports<'react-i18next/icu.macro'>; -} -declare module 'react-i18next/react-i18next.js' { - declare module.exports: $Exports<'react-i18next/react-i18next'>; -} -declare module 'react-i18next/react-i18next.min.js' { - declare module.exports: $Exports<'react-i18next/react-i18next.min'>; -} -declare module 'react-i18next/rollup.config.js' { - declare module.exports: $Exports<'react-i18next/rollup.config'>; -} -declare module 'react-i18next/src/context.js' { - declare module.exports: $Exports<'react-i18next/src/context'>; -} -declare module 'react-i18next/src/I18nextProvider.js' { - declare module.exports: $Exports<'react-i18next/src/I18nextProvider'>; -} -declare module 'react-i18next/src/index' { - declare module.exports: $Exports<'react-i18next/src'>; -} -declare module 'react-i18next/src/index.js' { - declare module.exports: $Exports<'react-i18next/src'>; -} -declare module 'react-i18next/src/Trans.js' { - declare module.exports: $Exports<'react-i18next/src/Trans'>; -} -declare module 'react-i18next/src/Translation.js' { - declare module.exports: $Exports<'react-i18next/src/Translation'>; -} -declare module 'react-i18next/src/useSSR.js' { - declare module.exports: $Exports<'react-i18next/src/useSSR'>; -} -declare module 'react-i18next/src/useTranslation.js' { - declare module.exports: $Exports<'react-i18next/src/useTranslation'>; -} -declare module 'react-i18next/src/utils.js' { - declare module.exports: $Exports<'react-i18next/src/utils'>; -} -declare module 'react-i18next/src/withSSR.js' { - declare module.exports: $Exports<'react-i18next/src/withSSR'>; -} -declare module 'react-i18next/src/withTranslation.js' { - declare module.exports: $Exports<'react-i18next/src/withTranslation'>; -} diff --git a/flow-typed/npm/react-redux_v7.x.x.js b/flow-typed/npm/react-redux_v7.x.x.js deleted file mode 100644 index afb2da71..00000000 --- a/flow-typed/npm/react-redux_v7.x.x.js +++ /dev/null @@ -1,300 +0,0 @@ -// flow-typed signature: 8da1e134b3de1d6f6bf9ba1cc7e2dc7e -// flow-typed version: 387a235736/react-redux_v7.x.x/flow_>=v0.104.x - -/** -The order of type arguments for connect() is as follows: - -connect(…) - -In Flow v0.89 only the first two are mandatory to specify. Other 4 can be repaced with the new awesome type placeholder: - -connect(…) - -But beware, in case of weird type errors somewhere in random places -just type everything and get to a green field and only then try to -remove the definitions you see bogus. - -Decrypting the abbreviations: - WC = Component being wrapped - S = State - D = Dispatch - OP = OwnProps - SP = StateProps - DP = DispatchProps - MP = Merge props - RSP = Returned state props - RDP = Returned dispatch props - RMP = Returned merge props - CP = Props for returned component - Com = React Component - SS = Selected state - ST = Static properties of Com - EFO = Extra factory options (used only in connectAdvanced) -*/ - -declare module "react-redux" { - // ------------------------------------------------------------ - // Typings for connect() - // ------------------------------------------------------------ - - declare export type Options = {| - pure?: boolean, - forwardRef?: boolean, - areStatesEqual?: (next: S, prev: S) => boolean, - areOwnPropsEqual?: (next: OP, prev: OP) => boolean, - areStatePropsEqual?: (next: SP, prev: SP) => boolean, - areMergedPropsEqual?: (next: MP, prev: MP) => boolean, - storeKey?: string, - |}; - - declare type MapStateToProps<-S, -OP, +SP> = - | ((state: S, ownProps: OP) => SP) - // If you want to use the factory function but get a strange error - // like "function is not an object" then just type the factory function - // like this: - // const factory: (State, OwnProps) => (State, OwnProps) => StateProps - // and provide the StateProps type to the SP type parameter. - | ((state: S, ownProps: OP) => (state: S, ownProps: OP) => SP); - - declare type Bind = ((...A) => R) => (...A) => $Call; - - declare type MapDispatchToPropsFn = - | ((dispatch: D, ownProps: OP) => DP) - // If you want to use the factory function but get a strange error - // like "function is not an object" then just type the factory function - // like this: - // const factory: (Dispatch, OwnProps) => (Dispatch, OwnProps) => DispatchProps - // and provide the DispatchProps type to the DP type parameter. - | ((dispatch: D, ownProps: OP) => (dispatch: D, ownProps: OP) => DP); - - declare class ConnectedComponent extends React$Component { - static +WrappedComponent: WC; - getWrappedInstance(): React$ElementRef; - } - // The connection of the Wrapped Component and the Connected Component - // happens here in `MP: P`. It means that type wise MP belongs to P, - // so to say MP >= P. - declare type Connector = >( - WC, - ) => Class> & WC; - - // No `mergeProps` argument - - // Got error like inexact OwnProps is incompatible with exact object type? - // Just make the OP parameter for `connect()` an exact object. - declare type MergeOP = {| ...$Exact, dispatch: D |}; - declare type MergeOPSP = {| ...$Exact, ...SP, dispatch: D |}; - declare type MergeOPDP = {| ...$Exact, ...DP |}; - declare type MergeOPSPDP = {| ...$Exact, ...SP, ...DP |}; - - declare export function connect<-P, -OP, -SP, -DP, -S, -D>( - mapStateToProps?: null | void, - mapDispatchToProps?: null | void, - mergeProps?: null | void, - options?: ?Options>, - ): Connector>; - - declare export function connect<-P, -OP, -SP, -DP, -S, -D>( - // If you get error here try adding return type to your mapStateToProps function - mapStateToProps: MapStateToProps, - mapDispatchToProps?: null | void, - mergeProps?: null | void, - options?: ?Options>, - ): Connector>; - - // In this case DP is an object of functions which has been bound to dispatch - // by the given mapDispatchToProps function. - declare export function connect<-P, -OP, -SP, -DP, S, D>( - mapStateToProps: null | void, - mapDispatchToProps: MapDispatchToPropsFn, - mergeProps?: null | void, - options?: ?Options>, - ): Connector>; - - // In this case DP is an object of action creators not yet bound to dispatch, - // this difference is not important in the vanila redux, - // but in case of usage with redux-thunk, the return type may differ. - declare export function connect<-P, -OP, -SP, -DP, S, D>( - mapStateToProps: null | void, - mapDispatchToProps: DP, - mergeProps?: null | void, - options?: ?Options>, - ): Connector>>>; - - declare export function connect<-P, -OP, -SP, -DP, S, D>( - // If you get error here try adding return type to your mapStateToProps function - mapStateToProps: MapStateToProps, - mapDispatchToProps: MapDispatchToPropsFn, - mergeProps?: null | void, - options?: ?Options, - ): Connector; - - declare export function connect<-P, -OP, -SP, -DP, S, D>( - // If you get error here try adding return type to your mapStateToProps function - mapStateToProps: MapStateToProps, - mapDispatchToProps: DP, - mergeProps?: null | void, - options?: ?Options>, - ): Connector>>>; - - // With `mergeProps` argument - - declare type MergeProps<+P, -OP, -SP, -DP> = ( - stateProps: SP, - dispatchProps: DP, - ownProps: OP, - ) => P; - - declare export function connect<-P, -OP, -SP: {||}, -DP: {||}, S, D>( - mapStateToProps: null | void, - mapDispatchToProps: null | void, - // If you get error here try adding return type to you mapStateToProps function - mergeProps: MergeProps, - options?: ?Options, - ): Connector; - - declare export function connect<-P, -OP, -SP, -DP: {||}, S, D>( - mapStateToProps: MapStateToProps, - mapDispatchToProps: null | void, - // If you get error here try adding return type to you mapStateToProps function - mergeProps: MergeProps, - options?: ?Options, - ): Connector; - - // In this case DP is an object of functions which has been bound to dispatch - // by the given mapDispatchToProps function. - declare export function connect<-P, -OP, -SP: {||}, -DP, S, D>( - mapStateToProps: null | void, - mapDispatchToProps: MapDispatchToPropsFn, - mergeProps: MergeProps, - options?: ?Options, - ): Connector; - - // In this case DP is an object of action creators not yet bound to dispatch, - // this difference is not important in the vanila redux, - // but in case of usage with redux-thunk, the return type may differ. - declare export function connect<-P, -OP, -SP: {||}, -DP, S, D>( - mapStateToProps: null | void, - mapDispatchToProps: DP, - mergeProps: MergeProps>>, - options?: ?Options, - ): Connector; - - // In this case DP is an object of functions which has been bound to dispatch - // by the given mapDispatchToProps function. - declare export function connect<-P, -OP, -SP, -DP, S, D>( - mapStateToProps: MapStateToProps, - mapDispatchToProps: MapDispatchToPropsFn, - mergeProps: MergeProps, - options?: ?Options, - ): Connector; - - // In this case DP is an object of action creators not yet bound to dispatch, - // this difference is not important in the vanila redux, - // but in case of usage with redux-thunk, the return type may differ. - declare export function connect<-P, -OP, -SP, -DP, S, D>( - mapStateToProps: MapStateToProps, - mapDispatchToProps: DP, - mergeProps: MergeProps>>, - options?: ?Options, - ): Connector; - - // ------------------------------------------------------------ - // Typings for Hooks - // ------------------------------------------------------------ - - declare export function useDispatch(): D; - - declare export function useSelector( - selector: (state: S) => SS, - equalityFn?: (a: SS, b: SS) => boolean, - ): SS; - - declare export function useStore(): Store; - - // ------------------------------------------------------------ - // Typings for Provider - // ------------------------------------------------------------ - - declare export class Provider extends React$Component<{ - store: Store, - children?: React$Node, - ... - }> {} - - declare export function createProvider( - storeKey?: string, - subKey?: string, - ): Class>; - - // ------------------------------------------------------------ - // Typings for connectAdvanced() - // ------------------------------------------------------------ - - declare type ConnectAdvancedOptions = { - getDisplayName?: (name: string) => string, - methodName?: string, - renderCountProp?: string, - shouldHandleStateChanges?: boolean, - storeKey?: string, - forwardRef?: boolean, - ... - }; - - declare type SelectorFactoryOptions = { - getDisplayName: (name: string) => string, - methodName: string, - renderCountProp: ?string, - shouldHandleStateChanges: boolean, - storeKey: string, - forwardRef: boolean, - displayName: string, - wrappedComponentName: string, - WrappedComponent: Com, - ... - }; - - declare type MapStateToPropsEx = ( - state: S, - props: SP, - ) => RSP; - - declare type SelectorFactory< - Com: React$ComponentType<*>, - Dispatch, - S: Object, - OP: Object, - EFO: Object, - CP: Object, - > = ( - dispatch: Dispatch, - factoryOptions: SelectorFactoryOptions & EFO, - ) => MapStateToPropsEx; - - declare export function connectAdvanced< - Com: React$ComponentType<*>, - D, - S: Object, - OP: Object, - CP: Object, - EFO: Object, - ST: { [_: $Keys]: any, ... }, - >( - selectorFactory: SelectorFactory, - connectAdvancedOptions: ?(ConnectAdvancedOptions & EFO), - ): (component: Com) => React$ComponentType & $Shape; - - declare export function batch(() => void): void - - declare export default { - Provider: typeof Provider, - createProvider: typeof createProvider, - connect: typeof connect, - connectAdvanced: typeof connectAdvanced, - useDispatch: typeof useDispatch, - useSelector: typeof useSelector, - useStore: typeof useStore, - batch: typeof batch, - ... - }; -} diff --git a/flow-typed/npm/react-scripts_vx.x.x.js b/flow-typed/npm/react-scripts_vx.x.x.js deleted file mode 100644 index a2b9b896..00000000 --- a/flow-typed/npm/react-scripts_vx.x.x.js +++ /dev/null @@ -1,158 +0,0 @@ -// flow-typed signature: 705f30317b570dc4dee9af66c42953d0 -// flow-typed version: <>/react-scripts_v3.4.3/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'react-scripts' - * - * 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 'react-scripts' { - 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 'react-scripts/bin/react-scripts' { - declare module.exports: any; -} - -declare module 'react-scripts/config/env' { - declare module.exports: any; -} - -declare module 'react-scripts/config/getHttpsConfig' { - declare module.exports: any; -} - -declare module 'react-scripts/config/jest/babelTransform' { - declare module.exports: any; -} - -declare module 'react-scripts/config/jest/cssTransform' { - declare module.exports: any; -} - -declare module 'react-scripts/config/jest/fileTransform' { - declare module.exports: any; -} - -declare module 'react-scripts/config/modules' { - declare module.exports: any; -} - -declare module 'react-scripts/config/paths' { - declare module.exports: any; -} - -declare module 'react-scripts/config/pnpTs' { - declare module.exports: any; -} - -declare module 'react-scripts/config/webpack.config' { - declare module.exports: any; -} - -declare module 'react-scripts/config/webpackDevServer.config' { - declare module.exports: any; -} - -declare module 'react-scripts/scripts/build' { - declare module.exports: any; -} - -declare module 'react-scripts/scripts/eject' { - declare module.exports: any; -} - -declare module 'react-scripts/scripts/init' { - declare module.exports: any; -} - -declare module 'react-scripts/scripts/start' { - declare module.exports: any; -} - -declare module 'react-scripts/scripts/test' { - declare module.exports: any; -} - -declare module 'react-scripts/scripts/utils/createJestConfig' { - declare module.exports: any; -} - -declare module 'react-scripts/scripts/utils/verifyPackageTree' { - declare module.exports: any; -} - -declare module 'react-scripts/scripts/utils/verifyTypeScriptSetup' { - declare module.exports: any; -} - -// Filename aliases -declare module 'react-scripts/bin/react-scripts.js' { - declare module.exports: $Exports<'react-scripts/bin/react-scripts'>; -} -declare module 'react-scripts/config/env.js' { - declare module.exports: $Exports<'react-scripts/config/env'>; -} -declare module 'react-scripts/config/getHttpsConfig.js' { - declare module.exports: $Exports<'react-scripts/config/getHttpsConfig'>; -} -declare module 'react-scripts/config/jest/babelTransform.js' { - declare module.exports: $Exports<'react-scripts/config/jest/babelTransform'>; -} -declare module 'react-scripts/config/jest/cssTransform.js' { - declare module.exports: $Exports<'react-scripts/config/jest/cssTransform'>; -} -declare module 'react-scripts/config/jest/fileTransform.js' { - declare module.exports: $Exports<'react-scripts/config/jest/fileTransform'>; -} -declare module 'react-scripts/config/modules.js' { - declare module.exports: $Exports<'react-scripts/config/modules'>; -} -declare module 'react-scripts/config/paths.js' { - declare module.exports: $Exports<'react-scripts/config/paths'>; -} -declare module 'react-scripts/config/pnpTs.js' { - declare module.exports: $Exports<'react-scripts/config/pnpTs'>; -} -declare module 'react-scripts/config/webpack.config.js' { - declare module.exports: $Exports<'react-scripts/config/webpack.config'>; -} -declare module 'react-scripts/config/webpackDevServer.config.js' { - declare module.exports: $Exports<'react-scripts/config/webpackDevServer.config'>; -} -declare module 'react-scripts/scripts/build.js' { - declare module.exports: $Exports<'react-scripts/scripts/build'>; -} -declare module 'react-scripts/scripts/eject.js' { - declare module.exports: $Exports<'react-scripts/scripts/eject'>; -} -declare module 'react-scripts/scripts/init.js' { - declare module.exports: $Exports<'react-scripts/scripts/init'>; -} -declare module 'react-scripts/scripts/start.js' { - declare module.exports: $Exports<'react-scripts/scripts/start'>; -} -declare module 'react-scripts/scripts/test.js' { - declare module.exports: $Exports<'react-scripts/scripts/test'>; -} -declare module 'react-scripts/scripts/utils/createJestConfig.js' { - declare module.exports: $Exports<'react-scripts/scripts/utils/createJestConfig'>; -} -declare module 'react-scripts/scripts/utils/verifyPackageTree.js' { - declare module.exports: $Exports<'react-scripts/scripts/utils/verifyPackageTree'>; -} -declare module 'react-scripts/scripts/utils/verifyTypeScriptSetup.js' { - declare module.exports: $Exports<'react-scripts/scripts/utils/verifyTypeScriptSetup'>; -} diff --git a/flow-typed/npm/react-sortable-hoc_vx.x.x.js b/flow-typed/npm/react-sortable-hoc_vx.x.x.js deleted file mode 100644 index 24c65e44..00000000 --- a/flow-typed/npm/react-sortable-hoc_vx.x.x.js +++ /dev/null @@ -1,102 +0,0 @@ -// flow-typed signature: a2e65952744485e836f06892458deb4c -// flow-typed version: <>/react-sortable-hoc_v1.11.0/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'react-sortable-hoc' - * - * 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 'react-sortable-hoc' { - 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 'react-sortable-hoc/dist/react-sortable-hoc.esm' { - declare module.exports: any; -} - -declare module 'react-sortable-hoc/dist/react-sortable-hoc' { - declare module.exports: any; -} - -declare module 'react-sortable-hoc/dist/react-sortable-hoc.umd' { - declare module.exports: any; -} - -declare module 'react-sortable-hoc/dist/react-sortable-hoc.umd.min' { - declare module.exports: any; -} - -declare module 'react-sortable-hoc/examples/basic' { - declare module.exports: any; -} - -declare module 'react-sortable-hoc/examples/collections' { - declare module.exports: any; -} - -declare module 'react-sortable-hoc/examples/drag-handle' { - declare module.exports: any; -} - -declare module 'react-sortable-hoc/examples/react-infinite' { - declare module.exports: any; -} - -declare module 'react-sortable-hoc/examples/react-virtualized-table-columns' { - declare module.exports: any; -} - -declare module 'react-sortable-hoc/examples/react-virtualized' { - declare module.exports: any; -} - -declare module 'react-sortable-hoc/rollup.config' { - declare module.exports: any; -} - -// Filename aliases -declare module 'react-sortable-hoc/dist/react-sortable-hoc.esm.js' { - declare module.exports: $Exports<'react-sortable-hoc/dist/react-sortable-hoc.esm'>; -} -declare module 'react-sortable-hoc/dist/react-sortable-hoc.js' { - declare module.exports: $Exports<'react-sortable-hoc/dist/react-sortable-hoc'>; -} -declare module 'react-sortable-hoc/dist/react-sortable-hoc.umd.js' { - declare module.exports: $Exports<'react-sortable-hoc/dist/react-sortable-hoc.umd'>; -} -declare module 'react-sortable-hoc/dist/react-sortable-hoc.umd.min.js' { - declare module.exports: $Exports<'react-sortable-hoc/dist/react-sortable-hoc.umd.min'>; -} -declare module 'react-sortable-hoc/examples/basic.js' { - declare module.exports: $Exports<'react-sortable-hoc/examples/basic'>; -} -declare module 'react-sortable-hoc/examples/collections.js' { - declare module.exports: $Exports<'react-sortable-hoc/examples/collections'>; -} -declare module 'react-sortable-hoc/examples/drag-handle.js' { - declare module.exports: $Exports<'react-sortable-hoc/examples/drag-handle'>; -} -declare module 'react-sortable-hoc/examples/react-infinite.js' { - declare module.exports: $Exports<'react-sortable-hoc/examples/react-infinite'>; -} -declare module 'react-sortable-hoc/examples/react-virtualized-table-columns.js' { - declare module.exports: $Exports<'react-sortable-hoc/examples/react-virtualized-table-columns'>; -} -declare module 'react-sortable-hoc/examples/react-virtualized.js' { - declare module.exports: $Exports<'react-sortable-hoc/examples/react-virtualized'>; -} -declare module 'react-sortable-hoc/rollup.config.js' { - declare module.exports: $Exports<'react-sortable-hoc/rollup.config'>; -} diff --git a/flow-typed/npm/react-window-infinite-loader_vx.x.x.js b/flow-typed/npm/react-window-infinite-loader_vx.x.x.js deleted file mode 100644 index 13734e0a..00000000 --- a/flow-typed/npm/react-window-infinite-loader_vx.x.x.js +++ /dev/null @@ -1,39 +0,0 @@ -// flow-typed signature: f7f9e1dc1d6715ebd64fb2fba2cce7ea -// flow-typed version: <>/react-window-infinite-loader_v1.0.5/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'react-window-infinite-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 'react-window-infinite-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 'react-window-infinite-loader/dist/index.cjs' { - declare module.exports: any; -} - -declare module 'react-window-infinite-loader/dist/index.esm' { - declare module.exports: any; -} - -// Filename aliases -declare module 'react-window-infinite-loader/dist/index.cjs.js' { - declare module.exports: $Exports<'react-window-infinite-loader/dist/index.cjs'>; -} -declare module 'react-window-infinite-loader/dist/index.esm.js' { - declare module.exports: $Exports<'react-window-infinite-loader/dist/index.esm'>; -} diff --git a/flow-typed/npm/redux-thunk_vx.x.x.js b/flow-typed/npm/redux-thunk_vx.x.x.js deleted file mode 100644 index 806cebfd..00000000 --- a/flow-typed/npm/redux-thunk_vx.x.x.js +++ /dev/null @@ -1,69 +0,0 @@ -// flow-typed signature: a6eb95d9178821a3ff15f0f0095c2474 -// flow-typed version: <>/redux-thunk_v2.3.0/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'redux-thunk' - * - * 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 'redux-thunk' { - 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 'redux-thunk/dist/redux-thunk' { - declare module.exports: any; -} - -declare module 'redux-thunk/dist/redux-thunk.min' { - declare module.exports: any; -} - -declare module 'redux-thunk/es' { - declare module.exports: any; -} - -declare module 'redux-thunk/lib' { - declare module.exports: any; -} - -declare module 'redux-thunk/src' { - declare module.exports: any; -} - -// Filename aliases -declare module 'redux-thunk/dist/redux-thunk.js' { - declare module.exports: $Exports<'redux-thunk/dist/redux-thunk'>; -} -declare module 'redux-thunk/dist/redux-thunk.min.js' { - declare module.exports: $Exports<'redux-thunk/dist/redux-thunk.min'>; -} -declare module 'redux-thunk/es/index' { - declare module.exports: $Exports<'redux-thunk/es'>; -} -declare module 'redux-thunk/es/index.js' { - declare module.exports: $Exports<'redux-thunk/es'>; -} -declare module 'redux-thunk/lib/index' { - declare module.exports: $Exports<'redux-thunk/lib'>; -} -declare module 'redux-thunk/lib/index.js' { - declare module.exports: $Exports<'redux-thunk/lib'>; -} -declare module 'redux-thunk/src/index' { - declare module.exports: $Exports<'redux-thunk/src'>; -} -declare module 'redux-thunk/src/index.js' { - declare module.exports: $Exports<'redux-thunk/src'>; -} diff --git a/flow-typed/npm/redux_v4.x.x.js b/flow-typed/npm/redux_v4.x.x.js deleted file mode 100644 index 4ba5f34b..00000000 --- a/flow-typed/npm/redux_v4.x.x.js +++ /dev/null @@ -1,99 +0,0 @@ -// flow-typed signature: f62df6dbce399d55b0f2954c5ac1bd4e -// flow-typed version: c6154227d1/redux_v4.x.x/flow_>=v0.104.x - -declare module 'redux' { - /* - - S = State - A = Action - D = Dispatch - - */ - - declare export type Action = { type: T, ... } - - declare export type DispatchAPI = (action: A) => A; - - declare export type Dispatch = DispatchAPI; - - declare export type MiddlewareAPI> = { - dispatch: D, - getState(): S, - ... - }; - - declare export type Store> = { - // rewrite MiddlewareAPI members in order to get nicer error messages (intersections produce long messages) - dispatch: D, - getState(): S, - subscribe(listener: () => void): () => void, - replaceReducer(nextReducer: Reducer): void, - ... - }; - - declare export type Reducer = (state: S | void, action: A) => S; - - declare export type CombinedReducer = ( - state: ($Shape & {...}) | void, - action: A - ) => S; - - declare export type Middleware> = ( - api: MiddlewareAPI - ) => (next: D) => D; - - declare export type StoreCreator> = { - (reducer: Reducer, enhancer?: StoreEnhancer): Store, - ( - reducer: Reducer, - preloadedState: S, - enhancer?: StoreEnhancer - ): Store, - ... - }; - - declare export type StoreEnhancer> = ( - next: StoreCreator - ) => StoreCreator; - - declare export function createStore( - reducer: Reducer, - enhancer?: StoreEnhancer - ): Store; - declare export function createStore( - reducer: Reducer, - preloadedState?: S, - enhancer?: StoreEnhancer - ): Store; - - declare export function applyMiddleware( - ...middlewares: Array> - ): StoreEnhancer; - - declare export type ActionCreator = (...args: Array) => A; - declare export type ActionCreators = { [key: K]: ActionCreator, ... }; - - declare export function bindActionCreators< - A, - C: ActionCreator, - D: DispatchAPI - >( - actionCreator: C, - dispatch: D - ): C; - declare export function bindActionCreators< - A, - K, - C: ActionCreators, - D: DispatchAPI - >( - actionCreators: C, - dispatch: D - ): C; - - declare export function combineReducers( - reducers: O - ): CombinedReducer<$ObjMap(r: Reducer) => S>, A>; - - declare export var compose: $Compose; -} diff --git a/flow-typed/npm/regedit_vx.x.x.js b/flow-typed/npm/regedit_vx.x.x.js deleted file mode 100644 index 045c0fef..00000000 --- a/flow-typed/npm/regedit_vx.x.x.js +++ /dev/null @@ -1,143 +0,0 @@ -// flow-typed signature: 84bb755448956b37613760367bb18bd6 -// flow-typed version: <>/regedit_v3.0.3/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'regedit' - * - * 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 'regedit' { - 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 'regedit/errors' { - declare module.exports: any; -} - -declare module 'regedit/lib/cscript' { - declare module.exports: any; -} - -declare module 'regedit/lib/execFile' { - declare module.exports: any; -} - -declare module 'regedit/lib/helper' { - declare module.exports: any; -} - -declare module 'regedit/test/benchmarks.test' { - declare module.exports: any; -} - -declare module 'regedit/test/cscript.test' { - declare module.exports: any; -} - -declare module 'regedit/test/execFile.test' { - declare module.exports: any; -} - -declare module 'regedit/test/issues.test' { - declare module.exports: any; -} - -declare module 'regedit/test/jsonSafe.test' { - declare module.exports: any; -} - -declare module 'regedit/test/lib/testscript' { - declare module.exports: any; -} - -declare module 'regedit/test/list.stream.test' { - declare module.exports: any; -} - -declare module 'regedit/test/regedit.test' { - declare module.exports: any; -} - -declare module 'regedit/winerrors/generatedErrorObjects' { - declare module.exports: any; -} - -declare module 'regedit/winerrors/generateErrorDeclaration' { - declare module.exports: any; -} - -declare module 'regedit/winerrors/generateErrorsJS' { - declare module.exports: any; -} - -declare module 'regedit/winerrors/parseErrors' { - declare module.exports: any; -} - -// Filename aliases -declare module 'regedit/errors.js' { - declare module.exports: $Exports<'regedit/errors'>; -} -declare module 'regedit/index' { - declare module.exports: $Exports<'regedit'>; -} -declare module 'regedit/index.js' { - declare module.exports: $Exports<'regedit'>; -} -declare module 'regedit/lib/cscript.js' { - declare module.exports: $Exports<'regedit/lib/cscript'>; -} -declare module 'regedit/lib/execFile.js' { - declare module.exports: $Exports<'regedit/lib/execFile'>; -} -declare module 'regedit/lib/helper.js' { - declare module.exports: $Exports<'regedit/lib/helper'>; -} -declare module 'regedit/test/benchmarks.test.js' { - declare module.exports: $Exports<'regedit/test/benchmarks.test'>; -} -declare module 'regedit/test/cscript.test.js' { - declare module.exports: $Exports<'regedit/test/cscript.test'>; -} -declare module 'regedit/test/execFile.test.js' { - declare module.exports: $Exports<'regedit/test/execFile.test'>; -} -declare module 'regedit/test/issues.test.js' { - declare module.exports: $Exports<'regedit/test/issues.test'>; -} -declare module 'regedit/test/jsonSafe.test.js' { - declare module.exports: $Exports<'regedit/test/jsonSafe.test'>; -} -declare module 'regedit/test/lib/testscript.js' { - declare module.exports: $Exports<'regedit/test/lib/testscript'>; -} -declare module 'regedit/test/list.stream.test.js' { - declare module.exports: $Exports<'regedit/test/list.stream.test'>; -} -declare module 'regedit/test/regedit.test.js' { - declare module.exports: $Exports<'regedit/test/regedit.test'>; -} -declare module 'regedit/winerrors/generatedErrorObjects.js' { - declare module.exports: $Exports<'regedit/winerrors/generatedErrorObjects'>; -} -declare module 'regedit/winerrors/generateErrorDeclaration.js' { - declare module.exports: $Exports<'regedit/winerrors/generateErrorDeclaration'>; -} -declare module 'regedit/winerrors/generateErrorsJS.js' { - declare module.exports: $Exports<'regedit/winerrors/generateErrorsJS'>; -} -declare module 'regedit/winerrors/parseErrors.js' { - declare module.exports: $Exports<'regedit/winerrors/parseErrors'>; -} diff --git a/flow-typed/npm/rescript-disable-eslint_vx.x.x.js b/flow-typed/npm/rescript-disable-eslint_vx.x.x.js deleted file mode 100644 index b66fe4e6..00000000 --- a/flow-typed/npm/rescript-disable-eslint_vx.x.x.js +++ /dev/null @@ -1,56 +0,0 @@ -// flow-typed signature: d4ccce3fbdfb24963b971a72b45c17b2 -// flow-typed version: <>/rescript-disable-eslint_v1.0.2/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'rescript-disable-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 'rescript-disable-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 'rescript-disable-eslint/dist/rescript-disable-eslint' { - declare module.exports: any; -} - -declare module 'rescript-disable-eslint/dist/rescript-disable-eslint.modern' { - declare module.exports: any; -} - -declare module 'rescript-disable-eslint/dist/rescript-disable-eslint.umd' { - declare module.exports: any; -} - -declare module 'rescript-disable-eslint/src' { - declare module.exports: any; -} - -// Filename aliases -declare module 'rescript-disable-eslint/dist/rescript-disable-eslint.js' { - declare module.exports: $Exports<'rescript-disable-eslint/dist/rescript-disable-eslint'>; -} -declare module 'rescript-disable-eslint/dist/rescript-disable-eslint.modern.js' { - declare module.exports: $Exports<'rescript-disable-eslint/dist/rescript-disable-eslint.modern'>; -} -declare module 'rescript-disable-eslint/dist/rescript-disable-eslint.umd.js' { - declare module.exports: $Exports<'rescript-disable-eslint/dist/rescript-disable-eslint.umd'>; -} -declare module 'rescript-disable-eslint/src/index' { - declare module.exports: $Exports<'rescript-disable-eslint/src'>; -} -declare module 'rescript-disable-eslint/src/index.js' { - declare module.exports: $Exports<'rescript-disable-eslint/src'>; -} diff --git a/flow-typed/npm/rimraf_vx.x.x.js b/flow-typed/npm/rimraf_vx.x.x.js deleted file mode 100644 index ddeb70d6..00000000 --- a/flow-typed/npm/rimraf_vx.x.x.js +++ /dev/null @@ -1,39 +0,0 @@ -// flow-typed signature: c5997a6a12afccee7949c3fdb8c97991 -// flow-typed version: <>/rimraf_v^3.0.2/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'rimraf' - * - * 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 'rimraf' { - 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 'rimraf/bin' { - declare module.exports: any; -} - -declare module 'rimraf/rimraf' { - declare module.exports: any; -} - -// Filename aliases -declare module 'rimraf/bin.js' { - declare module.exports: $Exports<'rimraf/bin'>; -} -declare module 'rimraf/rimraf.js' { - declare module.exports: $Exports<'rimraf/rimraf'>; -} diff --git a/flow-typed/npm/semver_vx.x.x.js b/flow-typed/npm/semver_vx.x.x.js deleted file mode 100644 index 7e7dea87..00000000 --- a/flow-typed/npm/semver_vx.x.x.js +++ /dev/null @@ -1,349 +0,0 @@ -// flow-typed signature: 6314a4718492dbae680267fee53f59e5 -// flow-typed version: <>/semver_v7.3.2/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'semver' - * - * 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 'semver' { - 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 'semver/bin/semver' { - declare module.exports: any; -} - -declare module 'semver/classes/comparator' { - declare module.exports: any; -} - -declare module 'semver/classes' { - declare module.exports: any; -} - -declare module 'semver/classes/range' { - declare module.exports: any; -} - -declare module 'semver/classes/semver' { - declare module.exports: any; -} - -declare module 'semver/functions/clean' { - declare module.exports: any; -} - -declare module 'semver/functions/cmp' { - declare module.exports: any; -} - -declare module 'semver/functions/coerce' { - declare module.exports: any; -} - -declare module 'semver/functions/compare-build' { - declare module.exports: any; -} - -declare module 'semver/functions/compare-loose' { - declare module.exports: any; -} - -declare module 'semver/functions/compare' { - declare module.exports: any; -} - -declare module 'semver/functions/diff' { - declare module.exports: any; -} - -declare module 'semver/functions/eq' { - declare module.exports: any; -} - -declare module 'semver/functions/gt' { - declare module.exports: any; -} - -declare module 'semver/functions/gte' { - declare module.exports: any; -} - -declare module 'semver/functions/inc' { - declare module.exports: any; -} - -declare module 'semver/functions/lt' { - declare module.exports: any; -} - -declare module 'semver/functions/lte' { - declare module.exports: any; -} - -declare module 'semver/functions/major' { - declare module.exports: any; -} - -declare module 'semver/functions/minor' { - declare module.exports: any; -} - -declare module 'semver/functions/neq' { - declare module.exports: any; -} - -declare module 'semver/functions/parse' { - declare module.exports: any; -} - -declare module 'semver/functions/patch' { - declare module.exports: any; -} - -declare module 'semver/functions/prerelease' { - declare module.exports: any; -} - -declare module 'semver/functions/rcompare' { - declare module.exports: any; -} - -declare module 'semver/functions/rsort' { - declare module.exports: any; -} - -declare module 'semver/functions/satisfies' { - declare module.exports: any; -} - -declare module 'semver/functions/sort' { - declare module.exports: any; -} - -declare module 'semver/functions/valid' { - declare module.exports: any; -} - -declare module 'semver/internal/constants' { - declare module.exports: any; -} - -declare module 'semver/internal/debug' { - declare module.exports: any; -} - -declare module 'semver/internal/identifiers' { - declare module.exports: any; -} - -declare module 'semver/internal/re' { - declare module.exports: any; -} - -declare module 'semver/preload' { - declare module.exports: any; -} - -declare module 'semver/ranges/gtr' { - declare module.exports: any; -} - -declare module 'semver/ranges/intersects' { - declare module.exports: any; -} - -declare module 'semver/ranges/ltr' { - declare module.exports: any; -} - -declare module 'semver/ranges/max-satisfying' { - declare module.exports: any; -} - -declare module 'semver/ranges/min-satisfying' { - declare module.exports: any; -} - -declare module 'semver/ranges/min-version' { - declare module.exports: any; -} - -declare module 'semver/ranges/outside' { - declare module.exports: any; -} - -declare module 'semver/ranges/simplify' { - declare module.exports: any; -} - -declare module 'semver/ranges/subset' { - declare module.exports: any; -} - -declare module 'semver/ranges/to-comparators' { - declare module.exports: any; -} - -declare module 'semver/ranges/valid' { - declare module.exports: any; -} - -// Filename aliases -declare module 'semver/bin/semver.js' { - declare module.exports: $Exports<'semver/bin/semver'>; -} -declare module 'semver/classes/comparator.js' { - declare module.exports: $Exports<'semver/classes/comparator'>; -} -declare module 'semver/classes/index' { - declare module.exports: $Exports<'semver/classes'>; -} -declare module 'semver/classes/index.js' { - declare module.exports: $Exports<'semver/classes'>; -} -declare module 'semver/classes/range.js' { - declare module.exports: $Exports<'semver/classes/range'>; -} -declare module 'semver/classes/semver.js' { - declare module.exports: $Exports<'semver/classes/semver'>; -} -declare module 'semver/functions/clean.js' { - declare module.exports: $Exports<'semver/functions/clean'>; -} -declare module 'semver/functions/cmp.js' { - declare module.exports: $Exports<'semver/functions/cmp'>; -} -declare module 'semver/functions/coerce.js' { - declare module.exports: $Exports<'semver/functions/coerce'>; -} -declare module 'semver/functions/compare-build.js' { - declare module.exports: $Exports<'semver/functions/compare-build'>; -} -declare module 'semver/functions/compare-loose.js' { - declare module.exports: $Exports<'semver/functions/compare-loose'>; -} -declare module 'semver/functions/compare.js' { - declare module.exports: $Exports<'semver/functions/compare'>; -} -declare module 'semver/functions/diff.js' { - declare module.exports: $Exports<'semver/functions/diff'>; -} -declare module 'semver/functions/eq.js' { - declare module.exports: $Exports<'semver/functions/eq'>; -} -declare module 'semver/functions/gt.js' { - declare module.exports: $Exports<'semver/functions/gt'>; -} -declare module 'semver/functions/gte.js' { - declare module.exports: $Exports<'semver/functions/gte'>; -} -declare module 'semver/functions/inc.js' { - declare module.exports: $Exports<'semver/functions/inc'>; -} -declare module 'semver/functions/lt.js' { - declare module.exports: $Exports<'semver/functions/lt'>; -} -declare module 'semver/functions/lte.js' { - declare module.exports: $Exports<'semver/functions/lte'>; -} -declare module 'semver/functions/major.js' { - declare module.exports: $Exports<'semver/functions/major'>; -} -declare module 'semver/functions/minor.js' { - declare module.exports: $Exports<'semver/functions/minor'>; -} -declare module 'semver/functions/neq.js' { - declare module.exports: $Exports<'semver/functions/neq'>; -} -declare module 'semver/functions/parse.js' { - declare module.exports: $Exports<'semver/functions/parse'>; -} -declare module 'semver/functions/patch.js' { - declare module.exports: $Exports<'semver/functions/patch'>; -} -declare module 'semver/functions/prerelease.js' { - declare module.exports: $Exports<'semver/functions/prerelease'>; -} -declare module 'semver/functions/rcompare.js' { - declare module.exports: $Exports<'semver/functions/rcompare'>; -} -declare module 'semver/functions/rsort.js' { - declare module.exports: $Exports<'semver/functions/rsort'>; -} -declare module 'semver/functions/satisfies.js' { - declare module.exports: $Exports<'semver/functions/satisfies'>; -} -declare module 'semver/functions/sort.js' { - declare module.exports: $Exports<'semver/functions/sort'>; -} -declare module 'semver/functions/valid.js' { - declare module.exports: $Exports<'semver/functions/valid'>; -} -declare module 'semver/index' { - declare module.exports: $Exports<'semver'>; -} -declare module 'semver/index.js' { - declare module.exports: $Exports<'semver'>; -} -declare module 'semver/internal/constants.js' { - declare module.exports: $Exports<'semver/internal/constants'>; -} -declare module 'semver/internal/debug.js' { - declare module.exports: $Exports<'semver/internal/debug'>; -} -declare module 'semver/internal/identifiers.js' { - declare module.exports: $Exports<'semver/internal/identifiers'>; -} -declare module 'semver/internal/re.js' { - declare module.exports: $Exports<'semver/internal/re'>; -} -declare module 'semver/preload.js' { - declare module.exports: $Exports<'semver/preload'>; -} -declare module 'semver/ranges/gtr.js' { - declare module.exports: $Exports<'semver/ranges/gtr'>; -} -declare module 'semver/ranges/intersects.js' { - declare module.exports: $Exports<'semver/ranges/intersects'>; -} -declare module 'semver/ranges/ltr.js' { - declare module.exports: $Exports<'semver/ranges/ltr'>; -} -declare module 'semver/ranges/max-satisfying.js' { - declare module.exports: $Exports<'semver/ranges/max-satisfying'>; -} -declare module 'semver/ranges/min-satisfying.js' { - declare module.exports: $Exports<'semver/ranges/min-satisfying'>; -} -declare module 'semver/ranges/min-version.js' { - declare module.exports: $Exports<'semver/ranges/min-version'>; -} -declare module 'semver/ranges/outside.js' { - declare module.exports: $Exports<'semver/ranges/outside'>; -} -declare module 'semver/ranges/simplify.js' { - declare module.exports: $Exports<'semver/ranges/simplify'>; -} -declare module 'semver/ranges/subset.js' { - declare module.exports: $Exports<'semver/ranges/subset'>; -} -declare module 'semver/ranges/to-comparators.js' { - declare module.exports: $Exports<'semver/ranges/to-comparators'>; -} -declare module 'semver/ranges/valid.js' { - declare module.exports: $Exports<'semver/ranges/valid'>; -} diff --git a/flow-typed/npm/simplebar-react_vx.x.x.js b/flow-typed/npm/simplebar-react_vx.x.x.js deleted file mode 100644 index c969e16d..00000000 --- a/flow-typed/npm/simplebar-react_vx.x.x.js +++ /dev/null @@ -1,39 +0,0 @@ -// flow-typed signature: cdf8bfaaed1dccf172a826fa271559d0 -// flow-typed version: <>/simplebar-react_v3.0.0-beta.5/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'simplebar-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 'simplebar-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 'simplebar-react/dist/simplebar-react.esm' { - declare module.exports: any; -} - -declare module 'simplebar-react/dist/simplebar-react' { - declare module.exports: any; -} - -// Filename aliases -declare module 'simplebar-react/dist/simplebar-react.esm.js' { - declare module.exports: $Exports<'simplebar-react/dist/simplebar-react.esm'>; -} -declare module 'simplebar-react/dist/simplebar-react.js' { - declare module.exports: $Exports<'simplebar-react/dist/simplebar-react'>; -} diff --git a/flow-typed/npm/simplebar_vx.x.x.js b/flow-typed/npm/simplebar_vx.x.x.js deleted file mode 100644 index 2387bc2a..00000000 --- a/flow-typed/npm/simplebar_vx.x.x.js +++ /dev/null @@ -1,63 +0,0 @@ -// flow-typed signature: a6456bf257903e4acbe8d112d666ad0d -// flow-typed version: <>/simplebar_v6.0.0-beta.4/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'simplebar' - * - * 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 'simplebar' { - 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 'simplebar/dist/simplebar.esm' { - declare module.exports: any; -} - -declare module 'simplebar/dist/simplebar' { - declare module.exports: any; -} - -declare module 'simplebar/dist/simplebar.min' { - declare module.exports: any; -} - -declare module 'simplebar/src/helpers' { - declare module.exports: any; -} - -declare module 'simplebar/src' { - declare module.exports: any; -} - -// Filename aliases -declare module 'simplebar/dist/simplebar.esm.js' { - declare module.exports: $Exports<'simplebar/dist/simplebar.esm'>; -} -declare module 'simplebar/dist/simplebar.js' { - declare module.exports: $Exports<'simplebar/dist/simplebar'>; -} -declare module 'simplebar/dist/simplebar.min.js' { - declare module.exports: $Exports<'simplebar/dist/simplebar.min'>; -} -declare module 'simplebar/src/helpers.js' { - declare module.exports: $Exports<'simplebar/src/helpers'>; -} -declare module 'simplebar/src/index' { - declare module.exports: $Exports<'simplebar/src'>; -} -declare module 'simplebar/src/index.js' { - declare module.exports: $Exports<'simplebar/src'>; -} diff --git a/flow-typed/npm/styled-components_v5.x.x.js b/flow-typed/npm/styled-components_v5.x.x.js deleted file mode 100644 index 43d4861a..00000000 --- a/flow-typed/npm/styled-components_v5.x.x.js +++ /dev/null @@ -1,530 +0,0 @@ -// flow-typed signature: 1f5de1a8acfb1cef787a7062bb304212 -// flow-typed version: 207fb32765/styled-components_v5.x.x/flow_>=v0.104.x - -// @flow - -declare module 'styled-components' { - declare class InterpolatableComponent

extends React$Component

{ - static +styledComponentId: string; - } - - declare export type Styles = { - [ruleOrSelector: string]: string | number, // | Styles, - ..., - }; - - declare export type Interpolation

= - | (( - executionContext: P - ) => ((executionContext: P) => InterpolationBase) | InterpolationBase) - | InterpolationBase; - - declare export type InterpolationBase = - | CSSRules - | KeyFrames - | string - | number - | false // falsy values are OK, true is the only one not allowed, because it renders as "true" - | null - | void - | Styles - | Class>; // eslint-disable-line flowtype/no-weak-types - - declare export type TaggedTemplateLiteral = ( - strings: string[], - ...interpolations: Interpolation[] - ) => R; - - // Should this be `mixed` perhaps? - declare export type CSSRules = Interpolation[]; // eslint-disable-line flowtype/no-weak-types - - declare export type CSSConstructor = TaggedTemplateLiteral; // eslint-disable-line flowtype/no-weak-types - declare export type KeyFramesConstructor = TaggedTemplateLiteral< - any, // eslint-disable-line flowtype/no-weak-types - KeyFrames - >; - declare export type CreateGlobalStyleConstructor = TaggedTemplateLiteral< - any, // eslint-disable-line flowtype/no-weak-types - React$ComponentType<*> - >; - - declare interface Tag { - styleTag: HTMLStyleElement | null; - getIds(): string[]; - hasNameForId(id: string, name: string): boolean; - insertMarker(id: string): T; - insertRules(id: string, cssRules: string[], name: ?string): void; - removeRules(id: string): void; - css(): string; - toHTML(additionalAttrs: ?string): string; - toElement(): React$Element<*>; - clone(): Tag; - sealed: boolean; - } - - // The `any`/weak types in here all come from `styled-components` directly, since those definitions were just copied over - declare export class StyleSheet { - static get master(): StyleSheet; - static get instance(): StyleSheet; - static reset(forceServer?: boolean): void; - - id: number; - forceServer: boolean; - target: ?HTMLElement; - tagMap: { [string]: Tag, ... }; // eslint-disable-line flowtype/no-weak-types - deferred: { [string]: string[] | void, ... }; - rehydratedNames: { [string]: boolean, ... }; - ignoreRehydratedNames: { [string]: boolean, ... }; - tags: Tag[]; // eslint-disable-line flowtype/no-weak-types - importRuleTag: Tag; // eslint-disable-line flowtype/no-weak-types - capacity: number; - clones: StyleSheet[]; - - constructor(?HTMLElement): this; - rehydrate(): this; - clone(): StyleSheet; - sealAllTags(): void; - makeTag(tag: ?Tag): Tag; // eslint-disable-line flowtype/no-weak-types - getImportRuleTag(): Tag; // eslint-disable-line flowtype/no-weak-types - getTagForId(id: string): Tag; // eslint-disable-line flowtype/no-weak-types - hasId(id: string): boolean; - hasNameForId(id: string, name: string): boolean; - deferredInject(id: string, cssRules: string[]): void; - inject(id: string, cssRules: string[], name?: string): void; - remove(id: string): void; - toHtml(): string; - toReactElements(): React$ElementType[]; - } - - declare export function isStyledComponent(target: mixed): boolean; - - declare type SCMProps = { - children?: React.Node, - sheet?: StyleSheet, - target?: HTMLElement, - ... - }; - - declare export var StyleSheetContext: React$Context; - declare export var StyleSheetConsumer: React$ComponentType<{| - children: (value: StyleSheet) => ?React$Node, - |}>; - declare var StyleSheetProvider: React$ComponentType<{| - children?: React$Node, - value: StyleSheet, - |}>; - - /** - * plugin - * - * @param {number} context - * @param {Array} selector - * @param {Array} parent - * @param {string} content - * @param {number} line - * @param {number} column - * @param {number} length - * @return {(string|void)?} - */ - - declare type StylisPluginSignature = ( - context: number, - selector: string[], - parent: string[], - content: string, - line: number, - column: number, - length: number - ) => string | void; - - declare export class StyleSheetManager extends React$Component { - getContext(sheet: ?StyleSheet, target: ?HTMLElement): StyleSheet; - render(): React$Element; - stylisPlugins?: StylisPluginSignature[]; - disableVendorPrefixes?: boolean; - disableCSSOMInjection?: boolean; - } - - declare export class ServerStyleSheet { - instance: StyleSheet; - masterSheet: StyleSheet; - sealed: boolean; - - seal(): void; - collectStyles(children: any): React$Element; // eslint-disable-line flowtype/no-weak-types - getStyleTags(): string; - toReactElements(): React$ElementType[]; - // This seems to be use a port of node streams in the Browsers. Not gonna type this for now - // eslint-disable-next-line flowtype/no-weak-types - interleaveWithNodeStream(stream: any): any; - } - - declare export class KeyFrames { - id: string; - name: string; - rules: string[]; - - constructor(name: string, rules: string[]): this; - inject(StyleSheet): void; - toString(): string; - getName(): string; - } - - // I think any is appropriate here? - // eslint-disable-next-line flowtype/no-weak-types - declare export var css: CSSConstructor; - declare export var keyframes: KeyFramesConstructor; - declare export var createGlobalStyle: CreateGlobalStyleConstructor; - declare export var ThemeConsumer: React$ComponentType<{| - children: (value: mixed) => ?React$Node, - |}>; - declare export var ThemeProvider: React$ComponentType<{| - children?: ?React$Node, - theme: mixed | (mixed => mixed), - |}>; - - /** - Any because the intended use-case is for users to do: - - import {ThemeContext} from 'styled-components'; - ... - const theme = React.useContext(ThemeContext); - - If they want DRY-er code, they could declare their own version of this via something like - - import { ThemeContext as SCThemeContext } from 'styled-components'; - export const ThemeContext: React$Context = SCThemeContext; - - and then - - import {ThemeContext} from './theme'; - */ - // eslint-disable-next-line flowtype/no-weak-types - declare export var ThemeContext: React$Context; - - declare export type ThemeProps = {| - theme: T, - |}; - - declare type CommonSCProps = {| - children?: React$Node, - className?: ?string, - style?: { [string]: string | number, ... }, - ref?: React$Ref, // eslint-disable-line flowtype/no-weak-types - |}; - - declare export type PropsWithTheme = {| - ...ThemeProps, - ...CommonSCProps, // Not sure how useful this is here, but it's technically correct to have it - ...$Exact, - |}; - - declare export function withTheme( - Component: React$AbstractComponent - ): React$AbstractComponent<$Diff>, Instance>; - - declare export function useTheme(): Theme; - - declare export type StyledComponent< - Props, - Theme, - Instance, - MergedProps = { ...$Exact, ...CommonSCProps, ... } - > = React$AbstractComponent & - Class>; - - declare export type StyledFactory = {| - [[call]]: TaggedTemplateLiteral< - PropsWithTheme, - StyledComponent - >, - +attrs: ( - (StyleProps => A) | A - ) => TaggedTemplateLiteral< - PropsWithTheme<{| ...$Exact, ...$Exact |}, Theme>, - StyledComponent< - React$Config<{| ...$Exact, ...$Exact |}, $Exact>, - Theme, - Instance - > - >, - |}; - - declare export type StyledShorthandFactory = {| - [[call]]: ( - string[], - ...Interpolation>[] - ) => StyledComponent, - [[call]]: ( - (props: PropsWithTheme) => Interpolation // eslint-disable-line flowtype/no-weak-types - ) => StyledComponent, - +attrs: ( - (StyleProps => A) | A - ) => TaggedTemplateLiteral< - PropsWithTheme<{| ...$Exact, ...$Exact |}, Theme>, - StyledComponent< - React$Config<{| ...$Exact, ...$Exact |}, $Exact>, - Theme, - V - > - >, - |}; - - declare type BuiltinElementInstances = { - a: React$ElementRef<'a'>, - abbr: React$ElementRef<'abbr'>, - address: React$ElementRef<'address'>, - area: React$ElementRef<'area'>, - article: React$ElementRef<'article'>, - aside: React$ElementRef<'aside'>, - audio: React$ElementRef<'audio'>, - b: React$ElementRef<'b'>, - base: React$ElementRef<'base'>, - bdi: React$ElementRef<'bdi'>, - bdo: React$ElementRef<'bdo'>, - big: React$ElementRef<'big'>, - blockquote: React$ElementRef<'blockquote'>, - body: React$ElementRef<'body'>, - br: React$ElementRef<'br'>, - button: React$ElementRef<'button'>, - canvas: React$ElementRef<'canvas'>, - caption: React$ElementRef<'caption'>, - cite: React$ElementRef<'cite'>, - code: React$ElementRef<'code'>, - col: React$ElementRef<'col'>, - colgroup: React$ElementRef<'colgroup'>, - data: React$ElementRef<'data'>, - datalist: React$ElementRef<'datalist'>, - dd: React$ElementRef<'dd'>, - del: React$ElementRef<'del'>, - details: React$ElementRef<'details'>, - dfn: React$ElementRef<'dfn'>, - dialog: React$ElementRef<'dialog'>, - div: React$ElementRef<'div'>, - dl: React$ElementRef<'dl'>, - dt: React$ElementRef<'dt'>, - em: React$ElementRef<'em'>, - embed: React$ElementRef<'embed'>, - fieldset: React$ElementRef<'fieldset'>, - figcaption: React$ElementRef<'figcaption'>, - figure: React$ElementRef<'figure'>, - footer: React$ElementRef<'footer'>, - form: React$ElementRef<'form'>, - h1: React$ElementRef<'h1'>, - h2: React$ElementRef<'h2'>, - h3: React$ElementRef<'h3'>, - h4: React$ElementRef<'h4'>, - h5: React$ElementRef<'h5'>, - h6: React$ElementRef<'h6'>, - head: React$ElementRef<'head'>, - header: React$ElementRef<'header'>, - hgroup: React$ElementRef<'hgroup'>, - hr: React$ElementRef<'hr'>, - html: React$ElementRef<'html'>, - i: React$ElementRef<'i'>, - iframe: React$ElementRef<'iframe'>, - img: React$ElementRef<'img'>, - input: React$ElementRef<'input'>, - ins: React$ElementRef<'ins'>, - kbd: React$ElementRef<'kbd'>, - label: React$ElementRef<'label'>, - legend: React$ElementRef<'legend'>, - li: React$ElementRef<'li'>, - link: React$ElementRef<'link'>, - main: React$ElementRef<'main'>, - map: React$ElementRef<'map'>, - mark: React$ElementRef<'mark'>, - menu: React$ElementRef<'menu'>, - meta: React$ElementRef<'meta'>, - meter: React$ElementRef<'meter'>, - nav: React$ElementRef<'nav'>, - noscript: React$ElementRef<'noscript'>, - object: React$ElementRef<'object'>, - ol: React$ElementRef<'ol'>, - optgroup: React$ElementRef<'optgroup'>, - option: React$ElementRef<'option'>, - output: React$ElementRef<'output'>, - p: React$ElementRef<'p'>, - param: React$ElementRef<'param'>, - picture: React$ElementRef<'picture'>, - pre: React$ElementRef<'pre'>, - progress: React$ElementRef<'progress'>, - q: React$ElementRef<'q'>, - rp: React$ElementRef<'rp'>, - rt: React$ElementRef<'rt'>, - ruby: React$ElementRef<'ruby'>, - s: React$ElementRef<'s'>, - samp: React$ElementRef<'samp'>, - script: React$ElementRef<'script'>, - section: React$ElementRef<'section'>, - select: React$ElementRef<'select'>, - small: React$ElementRef<'small'>, - source: React$ElementRef<'source'>, - span: React$ElementRef<'span'>, - strong: React$ElementRef<'strong'>, - style: React$ElementRef<'style'>, - sub: React$ElementRef<'sub'>, - summary: React$ElementRef<'summary'>, - sup: React$ElementRef<'sup'>, - table: React$ElementRef<'table'>, - tbody: React$ElementRef<'tbody'>, - td: React$ElementRef<'td'>, - textarea: React$ElementRef<'textarea'>, - tfoot: React$ElementRef<'tfoot'>, - th: React$ElementRef<'th'>, - thead: React$ElementRef<'thead'>, - time: React$ElementRef<'time'>, - title: React$ElementRef<'title'>, - tr: React$ElementRef<'tr'>, - track: React$ElementRef<'track'>, - u: React$ElementRef<'u'>, - ul: React$ElementRef<'ul'>, - var: React$ElementRef<'var'>, - video: React$ElementRef<'video'>, - wbr: React$ElementRef<'wbr'>, - // SVG - circle: React$ElementRef<'circle'>, - clipPath: React$ElementRef<'clipPath'>, - defs: React$ElementRef<'defs'>, - ellipse: React$ElementRef<'ellipse'>, - g: React$ElementRef<'g'>, - image: React$ElementRef<'image'>, - line: React$ElementRef<'line'>, - linearGradient: React$ElementRef<'linearGradient'>, - mask: React$ElementRef<'mask'>, - path: React$ElementRef<'path'>, - pattern: React$ElementRef<'pattern'>, - polygon: React$ElementRef<'polygon'>, - polyline: React$ElementRef<'polyline'>, - radialGradient: React$ElementRef<'radialGradient'>, - rect: React$ElementRef<'rect'>, - stop: React$ElementRef<'stop'>, - svg: React$ElementRef<'svg'>, - text: React$ElementRef<'text'>, - tspan: React$ElementRef<'tspan'>, - // Deprecated, should be HTMLUnknownElement, but Flow doesn't support it - keygen: React$ElementRef<'keygen'>, - menuitem: React$ElementRef<'menuitem'>, - ... - }; - - declare type BuiltinElementType = $ElementType< - BuiltinElementInstances, - ElementName - >; - - declare type ConvenientShorthands = $ObjMap< - BuiltinElementInstances, - (V) => StyledShorthandFactory - >; - - declare interface Styled { - , Theme, OwnProps = React$ElementConfig>( - Comp - ): StyledFactory<{| ...$Exact |}, Theme, Comp>; - >( - ElementName - ): StyledFactory>; - } - - declare export default Styled & ConvenientShorthands; -} - -declare module 'styled-components/native' { - import type { - CSSRules, - CSSConstructor, - KeyFramesConstructor, - CreateGlobalStyleConstructor, - StyledComponent, - Interpolation, - - // "private" types - TaggedTemplateLiteral, - StyledFactory, - StyledShorthandFactory, - ThemeProps, - PropsWithTheme, - } from 'styled-components'; - - declare type BuiltinElementInstances = { - ActivityIndicator: React$ComponentType<{ ... }>, - ActivityIndicatorIOS: React$ComponentType<{ ... }>, - ART: React$ComponentType<{ ... }>, - Button: React$ComponentType<{ ... }>, - DatePickerIOS: React$ComponentType<{ ... }>, - DrawerLayoutAndroid: React$ComponentType<{ ... }>, - Image: React$ComponentType<{ ... }>, - ImageBackground: React$ComponentType<{ ... }>, - ImageEditor: React$ComponentType<{ ... }>, - ImageStore: React$ComponentType<{ ... }>, - KeyboardAvoidingView: React$ComponentType<{ ... }>, - ListView: React$ComponentType<{ ... }>, - MapView: React$ComponentType<{ ... }>, - Modal: React$ComponentType<{ ... }>, - NavigatorIOS: React$ComponentType<{ ... }>, - Picker: React$ComponentType<{ ... }>, - PickerIOS: React$ComponentType<{ ... }>, - ProgressBarAndroid: React$ComponentType<{ ... }>, - ProgressViewIOS: React$ComponentType<{ ... }>, - ScrollView: React$ComponentType<{ ... }>, - SegmentedControlIOS: React$ComponentType<{ ... }>, - Slider: React$ComponentType<{ ... }>, - SliderIOS: React$ComponentType<{ ... }>, - SnapshotViewIOS: React$ComponentType<{ ... }>, - Switch: React$ComponentType<{ ... }>, - RecyclerViewBackedScrollView: React$ComponentType<{ ... }>, - RefreshControl: React$ComponentType<{ ... }>, - SafeAreaView: React$ComponentType<{ ... }>, - StatusBar: React$ComponentType<{ ... }>, - SwipeableListView: React$ComponentType<{ ... }>, - SwitchAndroid: React$ComponentType<{ ... }>, - SwitchIOS: React$ComponentType<{ ... }>, - TabBarIOS: React$ComponentType<{ ... }>, - Text: React$ComponentType<{ ... }>, - TextInput: React$ComponentType<{ ... }>, - ToastAndroid: React$ComponentType<{ ... }>, - ToolbarAndroid: React$ComponentType<{ ... }>, - Touchable: React$ComponentType<{ ... }>, - TouchableHighlight: React$ComponentType<{ ... }>, - TouchableNativeFeedback: React$ComponentType<{ ... }>, - TouchableOpacity: React$ComponentType<{ ... }>, - TouchableWithoutFeedback: React$ComponentType<{ ... }>, - View: React$ComponentType<{ ... }>, - ViewPagerAndroid: React$ComponentType<{ ... }>, - WebView: React$ComponentType<{ ... }>, - FlatList: React$ComponentType<{ ... }>, - SectionList: React$ComponentType<{ ... }>, - VirtualizedList: React$ComponentType<{ ... }>, - ... - }; - - declare type BuiltinElementType = $ElementType< - BuiltinElementInstances, - ElementName - >; - - declare type ConvenientShorthands = $ObjMap< - BuiltinElementInstances, - (V) => StyledShorthandFactory - >; - - declare interface Styled { - >( - ElementName - ): StyledFactory>; - < - Comp: React$ComponentType, - Theme, - OwnProps = React$ElementConfig - >( - Comp - ): StyledFactory<{| ...$Exact |}, Theme, Comp>; - } - - declare export default Styled & ConvenientShorthands; -} - -declare module 'styled-components/macro' { - declare export * from 'styled-components'; -} diff --git a/flow-typed/npm/styled-is_vx.x.x.js b/flow-typed/npm/styled-is_vx.x.x.js deleted file mode 100644 index 187398e0..00000000 --- a/flow-typed/npm/styled-is_vx.x.x.js +++ /dev/null @@ -1,77 +0,0 @@ -// flow-typed signature: daa9821a59924d1497d0f4074e621d0e -// flow-typed version: <>/styled-is_v1.3.0/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'styled-is' - * - * 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 'styled-is' { - 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 'styled-is/coverage/lcov-report/block-navigation' { - declare module.exports: any; -} - -declare module 'styled-is/coverage/lcov-report/prettify' { - declare module.exports: any; -} - -declare module 'styled-is/coverage/lcov-report/sorter' { - declare module.exports: any; -} - -declare module 'styled-is/dist/styled-is.es' { - declare module.exports: any; -} - -declare module 'styled-is/dist/styled-is.iife' { - declare module.exports: any; -} - -declare module 'styled-is/dist/styled-is.umd' { - declare module.exports: any; -} - -declare module 'styled-is/test' { - declare module.exports: any; -} - -// Filename aliases -declare module 'styled-is/coverage/lcov-report/block-navigation.js' { - declare module.exports: $Exports<'styled-is/coverage/lcov-report/block-navigation'>; -} -declare module 'styled-is/coverage/lcov-report/prettify.js' { - declare module.exports: $Exports<'styled-is/coverage/lcov-report/prettify'>; -} -declare module 'styled-is/coverage/lcov-report/sorter.js' { - declare module.exports: $Exports<'styled-is/coverage/lcov-report/sorter'>; -} -declare module 'styled-is/dist/styled-is.es.js' { - declare module.exports: $Exports<'styled-is/dist/styled-is.es'>; -} -declare module 'styled-is/dist/styled-is.iife.js' { - declare module.exports: $Exports<'styled-is/dist/styled-is.iife'>; -} -declare module 'styled-is/dist/styled-is.umd.js' { - declare module.exports: $Exports<'styled-is/dist/styled-is.umd'>; -} -declare module 'styled-is/test/index' { - declare module.exports: $Exports<'styled-is/test'>; -} -declare module 'styled-is/test/index.js' { - declare module.exports: $Exports<'styled-is/test'>; -} diff --git a/flow-typed/npm/tmp_vx.x.x.js b/flow-typed/npm/tmp_vx.x.x.js deleted file mode 100644 index 611ddd23..00000000 --- a/flow-typed/npm/tmp_vx.x.x.js +++ /dev/null @@ -1,32 +0,0 @@ -// flow-typed signature: ac7e4710ccdeb479fc72ebfb393d3d5f -// flow-typed version: <>/tmp_v0.2.1/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'tmp' - * - * 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 'tmp' { - 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 'tmp/lib/tmp' { - declare module.exports: any; -} - -// Filename aliases -declare module 'tmp/lib/tmp.js' { - declare module.exports: $Exports<'tmp/lib/tmp'>; -} diff --git a/flow-typed/npm/typeface-roboto_vx.x.x.js b/flow-typed/npm/typeface-roboto_vx.x.x.js deleted file mode 100644 index ec8a5d50..00000000 --- a/flow-typed/npm/typeface-roboto_vx.x.x.js +++ /dev/null @@ -1,18 +0,0 @@ -// flow-typed signature: 74baf179750bd624a6c35032c121ba93 -// flow-typed version: <>/typeface-roboto_v1.1.13/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'typeface-roboto' - * - * 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 'typeface-roboto' { - declare module.exports: any; -} diff --git a/flow-typed/npm/uuid_v8.x.x.js b/flow-typed/npm/uuid_v8.x.x.js deleted file mode 100644 index 496cf8be..00000000 --- a/flow-typed/npm/uuid_v8.x.x.js +++ /dev/null @@ -1,74 +0,0 @@ -// flow-typed signature: 1b555a8f791762f2a4ee29e1335a175a -// flow-typed version: a40f6e5201/uuid_v8.x.x/flow_>=v0.104.x - -declare module 'uuid' { - // v1 (Timestamp) - declare type V1Options = {| - node?: $ReadOnlyArray, - clockseq?: number, - msecs?: number, - nsecs?: number, - random?: $ReadOnlyArray, - rng?: () => $ReadOnlyArray, - |}; - - declare export function v1(options?: V1Options): string; - - declare export function v1( - options: V1Options | null, - buffer: Array, - offset?: number - ): Array; - - // v3 (Namespace) - declare function v3Impl( - name: string | $ReadOnlyArray, - namespace: string | $ReadOnlyArray - ): string; - - declare function v3Impl( - name: string | $ReadOnlyArray, - namespace: string | $ReadOnlyArray, - buffer: Array, - offset?: number - ): Array; - - declare export var v3: {| - [[call]]: typeof v3Impl, - DNS: string, - URL: string, - |}; - - // v4 (Random) - declare type V4Options = {| - random?: $ReadOnlyArray, - rng?: () => $ReadOnlyArray, - |}; - - declare export function v4(options?: V4Options): string; - - declare export function v4( - options: V4Options | null, - buffer: Array, - offset?: number - ): Array; - - // v5 (Namespace) - declare function v5Impl( - name: string | $ReadOnlyArray, - namespace: string | $ReadOnlyArray - ): string; - - declare function v5Impl( - name: string | $ReadOnlyArray, - namespace: string | $ReadOnlyArray, - buffer: Array, - offset?: number - ): Array; - - declare export var v5: {| - [[call]]: typeof v5Impl, - DNS: string, - URL: string, - |}; -} diff --git a/flow-typed/npm/wait-on_vx.x.x.js b/flow-typed/npm/wait-on_vx.x.x.js deleted file mode 100644 index f7d06ab4..00000000 --- a/flow-typed/npm/wait-on_vx.x.x.js +++ /dev/null @@ -1,39 +0,0 @@ -// flow-typed signature: 3084840fb208c67f09d6f21fc243175f -// flow-typed version: <>/wait-on_v5.2.0/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'wait-on' - * - * 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 'wait-on' { - 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 'wait-on/exampleConfig' { - declare module.exports: any; -} - -declare module 'wait-on/lib/wait-on' { - declare module.exports: any; -} - -// Filename aliases -declare module 'wait-on/exampleConfig.js' { - declare module.exports: $Exports<'wait-on/exampleConfig'>; -} -declare module 'wait-on/lib/wait-on.js' { - declare module.exports: $Exports<'wait-on/lib/wait-on'>; -} diff --git a/flow-typed/npm/winston-daily-rotate-file_vx.x.x.js b/flow-typed/npm/winston-daily-rotate-file_vx.x.x.js deleted file mode 100644 index c031f279..00000000 --- a/flow-typed/npm/winston-daily-rotate-file_vx.x.x.js +++ /dev/null @@ -1,59 +0,0 @@ -// flow-typed signature: db405f09df4f21674b07d5e61405988d -// flow-typed version: <>/winston-daily-rotate-file_v^4.5.0/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'winston-daily-rotate-file' - * - * 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 'winston-daily-rotate-file' { - 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 'winston-daily-rotate-file/daily-rotate-file' { - declare module.exports: any; -} - -declare module 'winston-daily-rotate-file/test/memory-stream' { - declare module.exports: any; -} - -declare module 'winston-daily-rotate-file/test/random-string' { - declare module.exports: any; -} - -declare module 'winston-daily-rotate-file/test/transport-tests' { - declare module.exports: any; -} - -// Filename aliases -declare module 'winston-daily-rotate-file/daily-rotate-file.js' { - declare module.exports: $Exports<'winston-daily-rotate-file/daily-rotate-file'>; -} -declare module 'winston-daily-rotate-file/index' { - declare module.exports: $Exports<'winston-daily-rotate-file'>; -} -declare module 'winston-daily-rotate-file/index.js' { - declare module.exports: $Exports<'winston-daily-rotate-file'>; -} -declare module 'winston-daily-rotate-file/test/memory-stream.js' { - declare module.exports: $Exports<'winston-daily-rotate-file/test/memory-stream'>; -} -declare module 'winston-daily-rotate-file/test/random-string.js' { - declare module.exports: $Exports<'winston-daily-rotate-file/test/random-string'>; -} -declare module 'winston-daily-rotate-file/test/transport-tests.js' { - declare module.exports: $Exports<'winston-daily-rotate-file/test/transport-tests'>; -} diff --git a/flow-typed/npm/winston-transport_vx.x.x.js b/flow-typed/npm/winston-transport_vx.x.x.js deleted file mode 100644 index 4d821ca0..00000000 --- a/flow-typed/npm/winston-transport_vx.x.x.js +++ /dev/null @@ -1,55 +0,0 @@ -// flow-typed signature: 6b166a707aad1c79de9f94bbbafc01aa -// flow-typed version: <>/winston-transport_v^4.4.0/flow_v0.135.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'winston-transport' - * - * 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 'winston-transport' { - 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 'winston-transport/dist' { - declare module.exports: any; -} - -declare module 'winston-transport/dist/legacy' { - declare module.exports: any; -} - -declare module 'winston-transport/legacy' { - declare module.exports: any; -} - -// Filename aliases -declare module 'winston-transport/dist/index' { - declare module.exports: $Exports<'winston-transport/dist'>; -} -declare module 'winston-transport/dist/index.js' { - declare module.exports: $Exports<'winston-transport/dist'>; -} -declare module 'winston-transport/dist/legacy.js' { - declare module.exports: $Exports<'winston-transport/dist/legacy'>; -} -declare module 'winston-transport/index' { - declare module.exports: $Exports<'winston-transport'>; -} -declare module 'winston-transport/index.js' { - declare module.exports: $Exports<'winston-transport'>; -} -declare module 'winston-transport/legacy.js' { - declare module.exports: $Exports<'winston-transport/legacy'>; -} diff --git a/flow-typed/npm/winston_v3.x.x.js b/flow-typed/npm/winston_v3.x.x.js deleted file mode 100644 index a92d2cb0..00000000 --- a/flow-typed/npm/winston_v3.x.x.js +++ /dev/null @@ -1,156 +0,0 @@ -// flow-typed signature: 71d87edbd93b4e1027b7e590a8e97a21 -// flow-typed version: 097f6f2b81/winston_v3.x.x/flow_>=v0.104.x - -declare type $winstonLevels = { [string]: number, ... }; - -declare type $winstonNpmLogLevels = { - error: number, - warn: number, - info: number, - verbose: number, - debug: number, - silly: number, - ... -}; - -declare type $winstonInfo = { - [optionName: string]: mixed, - level: $Keys, - message: string, - ... -}; - -declare type $winstonFormat = Object; - -declare type $winstonFileTransportConfig = { - filename: string, - level?: $Keys, - ... -}; - -declare class $winstonTransport { - level?: string; - silent?: boolean; -} - -declare class $winstonFileTransport extends $winstonTransport { - constructor($winstonFileTransportConfig): $winstonFileTransport; -} - -declare type $winstonConsoleTransportConfig = { level?: $Keys, ... }; - -declare class $winstonConsoleTransport extends $winstonTransport { - constructor( - config?: $winstonConsoleTransportConfig - ): $winstonConsoleTransport; -} - -declare type $winstonLoggerConfig = { - exitOnError?: boolean, - format?: $winstonFormat, - level?: $Keys, - levels?: T, - transports?: Array<$winstonTransport>, - ... -}; - -declare type $winstonLogger = { - [$Keys]: (message: string, meta?: Object) => $winstonLogger, - add: $winstonTransport => $winstonLogger, - remove: $winstonTransport => $winstonLogger, - clear: () => $winstonLogger, - close: () => $winstonLogger, - configure: ($winstonLoggerConfig) => void, - log: (message: $winstonInfo) => $winstonLogger, - startTimer: () => $winstonProfiler, - profile: (name: string, info?: $Shape<$winstonInfo>) => void, - ... -}; - -declare type $winstonConfigSubModule = { npm: () => $winstonNpmLogLevels, ... }; - -declare type $winstonFormatJsonOptions = { - replacer?: (key: string, value: mixed) => mixed, - space?: number, - stable?: boolean, - ... -}; - -declare type $winstonFormatPrettyPrintOptions = {| - depth?: number, - colorize?: boolean, -|}; - -declare type $winstonFormatErrorsOptions = {| - stack?: boolean, -|}; - -declare type $winstonFormatSubModule = { - ((info: $winstonInfo) => $winstonInfo): () => $winstonFormat, - combine: (...args: Array<$winstonFormat>) => $winstonFormat, - json: (options?: $winstonFormatJsonOptions) => $winstonFormat, - label: (config?: Object) => $winstonFormat, - metadata: () => $winstonFormat, - prettyPrint: (options?: $winstonFormatPrettyPrintOptions) => $winstonFormat, - simple: () => $winstonFormat, - splat: () => $winstonFormat, - timestamp: (?{ - alias?: string, - format?: string | () => string, - ... - }) => $winstonFormat, - colorize: () => $winstonFormat, - logstash: () => $winstonFormat, - printf: ((args: $winstonInfo) => string) => $winstonFormat, - errors: (options?: $winstonFormatErrorsOptions) => $winstonFormat, - ... -}; - -declare type $winstonDefaultLogger = $winstonLogger<$winstonNpmLogLevels>; - -declare class $winstonContainer { - constructor(config?: $winstonLoggerConfig): $winstonContainer; - add(loggerId: string, config?: $winstonLoggerConfig): $winstonLogger; - get(loggerId: string): $winstonLogger; - has(loggerId: string): boolean; - close(loggerId?: string): void; -} - -declare interface $winstonProfiler { - logger: $winstonLogger; - start: Date; - done(info?: $Shape<$winstonInfo>): void; -}; - -declare module "winston" { - declare export type Levels = $winstonLevels; - declare export type NpmLogLevels = $winstonNpmLogLevels; - declare export type Info = $winstonInfo; - declare export type Format = $winstonFormat; - declare export type FileTransportConfig = $winstonFileTransportConfig; - declare export type Transport = $winstonTransport; - declare export type FileTransport = $winstonFileTransport; - declare export type ConsoleTransportConfig = $winstonConsoleTransportConfig; - declare export type ConsoleTransport = $winstonConsoleTransport; - declare export type LoggerConfig = $winstonLoggerConfig; - declare export type Logger = $winstonLogger; - declare export type ConfigSubModule = $winstonConfigSubModule; - declare export type FormatSubModule = $winstonFormatSubModule; - declare export type DefaultLogger = $winstonDefaultLogger; - declare export type Container = $winstonContainer; - declare export type Profiler = $winstonProfiler; - - declare module.exports: { - ...$Exact<$winstonDefaultLogger>, - format: $winstonFormatSubModule, - transports: { - Console: typeof $winstonConsoleTransport, - File: typeof $winstonFileTransport, - ... - }, - createLogger: ($winstonLoggerConfig) => $winstonLogger, - Container: typeof $winstonContainer, - loggers: $winstonContainer<*>, - ... - }; -} diff --git a/package-lock.json b/package-lock.json index 726e0e66..0d672342 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { - "name": "TiddlyGit", - "version": "0.3.5", + "name": "tiddly-git", + "version": "0.3.6", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -22,62 +22,19 @@ } }, "@babel/code-frame": { - "version": "7.10.1", - "resolved": "https://registry.npm.taobao.org/@babel/code-frame/download/@babel/code-frame-7.10.1.tgz?cache=0&sync_timestamp=1590617374675&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.10.1.tgz", - "integrity": "sha1-1UgcUJXaocV+FuVMb5GYRDr7Sf8=", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.0.0.tgz", + "integrity": "sha512-OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA==", "dev": true, "requires": { - "@babel/highlight": "^7.10.1" + "@babel/highlight": "^7.0.0" } }, "@babel/compat-data": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.11.0.tgz", - "integrity": "sha512-TPSvJfv73ng0pfnEOh17bYMPQbI95+nGWc71Ss4vZdRBHTDqmM9Z8ZV4rYz8Ks7sfzc95n30k6ODIq5UGnXcYQ==", - "dev": true, - "requires": { - "browserslist": "^4.12.0", - "invariant": "^2.2.4", - "semver": "^5.5.0" - }, - "dependencies": { - "browserslist": { - "version": "4.14.0", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.14.0.tgz", - "integrity": "sha512-pUsXKAF2lVwhmtpeA3LJrZ76jXuusrNyhduuQs7CDFf9foT4Y38aQOserd2lMe5DSSrjf3fx34oHwryuvxAUgQ==", - "dev": true, - "requires": { - "caniuse-lite": "^1.0.30001111", - "electron-to-chromium": "^1.3.523", - "escalade": "^3.0.2", - "node-releases": "^1.1.60" - } - }, - "caniuse-lite": { - "version": "1.0.30001114", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001114.tgz", - "integrity": "sha512-ml/zTsfNBM+T1+mjglWRPgVsu2L76GAaADKX5f4t0pbhttEp0WMawJsHDYlFkVZkoA+89uvBRrVrEE4oqenzXQ==", - "dev": true - }, - "electron-to-chromium": { - "version": "1.3.533", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.533.tgz", - "integrity": "sha512-YqAL+NXOzjBnpY+dcOKDlZybJDCOzgsq4koW3fvyty/ldTmsb4QazZpOWmVvZ2m0t5jbBf7L0lIGU3BUipwG+A==", - "dev": true - }, - "node-releases": { - "version": "1.1.60", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.60.tgz", - "integrity": "sha512-gsO4vjEdQaTusZAEebUWp2a5d7dF5DYoIpDG7WySnk7BuZDW+GPpHXoXXuYawRBr/9t5q54tirPz79kFIWg4dA==", - "dev": true - }, - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true - } - } + "version": "7.12.7", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.12.7.tgz", + "integrity": "sha512-YaxPMGs/XIWtYqrdEOZOCPsVWfEoriXopnsz3/i7apYPXQ3698UFhS6dVT1KN5qOsWmVgw/FOrmQgpRaZayGsw==", + "dev": true }, "@babel/core": { "version": "7.9.0", @@ -103,6 +60,24 @@ "source-map": "^0.5.0" }, "dependencies": { + "@babel/code-frame": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", + "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", + "dev": true, + "requires": { + "@babel/highlight": "^7.10.4" + } + }, + "json5": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz", + "integrity": "sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + }, "semver": { "version": "5.7.1", "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", @@ -111,58 +86,38 @@ }, "source-map": { "version": "0.5.7", - "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.5.7.tgz", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", "dev": true } } }, "@babel/generator": { - "version": "7.10.2", - "resolved": "https://registry.npm.taobao.org/@babel/generator/download/@babel/generator-7.10.2.tgz?cache=0&sync_timestamp=1590868600063&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fgenerator%2Fdownload%2F%40babel%2Fgenerator-7.10.2.tgz", - "integrity": "sha1-D6W1sjiduL/fzDSStVHuIPXdaak=", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.11.tgz", + "integrity": "sha512-Ggg6WPOJtSi8yYQvLVjG8F/TlpWDlKx0OpS4Kt+xMQPs5OaGYWy+v1A+1TvxI6sAMGZpKWWoAQ1DaeQbImlItA==", "dev": true, "requires": { - "@babel/types": "^7.10.2", + "@babel/types": "^7.12.11", "jsesc": "^2.5.1", - "lodash": "^4.17.13", "source-map": "^0.5.0" }, "dependencies": { "source-map": { "version": "0.5.7", - "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.5.7.tgz", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", "dev": true } } }, "@babel/helper-annotate-as-pure": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.4.tgz", - "integrity": "sha512-XQlqKQP4vXFB7BN8fEEerrmYvHp3fK/rBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z/OnId1jpJdNAZ3BFQjWG68rcA==", + "version": "7.12.10", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.12.10.tgz", + "integrity": "sha512-XplmVbC1n+KY6jL8/fgLVXXUauDIB+lD5+GsQEh6F6GBF1dq1qy4DP4yXWzDKcoqXB3X58t61e85Fitoww4JVQ==", "dev": true, "requires": { - "@babel/types": "^7.10.4" - }, - "dependencies": { - "@babel/helper-validator-identifier": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", - "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", - "dev": true - }, - "@babel/types": { - "version": "7.11.5", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.11.5.tgz", - "integrity": "sha512-bvM7Qz6eKnJVFIn+1LPtjlBFPVN5jNDc1XmN15vWe7Q3DPBufWWsLiIvUu7xW87uTG6QoggpIDnUgLQvPheU+Q==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.10.4", - "lodash": "^4.17.19", - "to-fast-properties": "^2.0.0" - } - } + "@babel/types": "^7.12.10" } }, "@babel/helper-builder-binary-assignment-operator-visitor": { @@ -173,25 +128,6 @@ "requires": { "@babel/helper-explode-assignable-expression": "^7.10.4", "@babel/types": "^7.10.4" - }, - "dependencies": { - "@babel/helper-validator-identifier": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", - "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", - "dev": true - }, - "@babel/types": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.11.0.tgz", - "integrity": "sha512-O53yME4ZZI0jO1EVGtF1ePGl0LHirG4P1ibcD80XyzZcKhcMFeCXmh4Xb1ifGBIV233Qg12x4rBfQgA+tmOukA==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.10.4", - "lodash": "^4.17.19", - "to-fast-properties": "^2.0.0" - } - } } }, "@babel/helper-builder-react-jsx": { @@ -202,127 +138,44 @@ "requires": { "@babel/helper-annotate-as-pure": "^7.10.4", "@babel/types": "^7.10.4" - }, - "dependencies": { - "@babel/helper-annotate-as-pure": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.4.tgz", - "integrity": "sha512-XQlqKQP4vXFB7BN8fEEerrmYvHp3fK/rBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z/OnId1jpJdNAZ3BFQjWG68rcA==", - "dev": true, - "requires": { - "@babel/types": "^7.10.4" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", - "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", - "dev": true - }, - "@babel/types": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.11.0.tgz", - "integrity": "sha512-O53yME4ZZI0jO1EVGtF1ePGl0LHirG4P1ibcD80XyzZcKhcMFeCXmh4Xb1ifGBIV233Qg12x4rBfQgA+tmOukA==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.10.4", - "lodash": "^4.17.19", - "to-fast-properties": "^2.0.0" - } - } } }, "@babel/helper-builder-react-jsx-experimental": { - "version": "7.10.5", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-react-jsx-experimental/-/helper-builder-react-jsx-experimental-7.10.5.tgz", - "integrity": "sha512-Buewnx6M4ttG+NLkKyt7baQn7ScC/Td+e99G914fRU8fGIUivDDgVIQeDHFa5e4CRSJQt58WpNHhsAZgtzVhsg==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-react-jsx-experimental/-/helper-builder-react-jsx-experimental-7.12.11.tgz", + "integrity": "sha512-4oGVOekPI8dh9JphkPXC68iIuP6qp/RPbaPmorRmEFbRAHZjSqxPjqHudn18GVDPgCuFM/KdFXc63C17Ygfa9w==", "dev": true, "requires": { - "@babel/helper-annotate-as-pure": "^7.10.4", - "@babel/helper-module-imports": "^7.10.4", - "@babel/types": "^7.10.5" - }, - "dependencies": { - "@babel/helper-annotate-as-pure": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.4.tgz", - "integrity": "sha512-XQlqKQP4vXFB7BN8fEEerrmYvHp3fK/rBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z/OnId1jpJdNAZ3BFQjWG68rcA==", - "dev": true, - "requires": { - "@babel/types": "^7.10.4" - } - }, - "@babel/helper-module-imports": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.10.4.tgz", - "integrity": "sha512-nEQJHqYavI217oD9+s5MUBzk6x1IlvoS9WTPfgG43CbMEeStE0v+r+TucWdx8KFGowPGvyOkDT9+7DHedIDnVw==", - "dev": true, - "requires": { - "@babel/types": "^7.10.4" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", - "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", - "dev": true - }, - "@babel/types": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.11.0.tgz", - "integrity": "sha512-O53yME4ZZI0jO1EVGtF1ePGl0LHirG4P1ibcD80XyzZcKhcMFeCXmh4Xb1ifGBIV233Qg12x4rBfQgA+tmOukA==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.10.4", - "lodash": "^4.17.19", - "to-fast-properties": "^2.0.0" - } - } + "@babel/helper-annotate-as-pure": "^7.12.10", + "@babel/helper-module-imports": "^7.12.5", + "@babel/types": "^7.12.11" } }, "@babel/helper-compilation-targets": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.10.4.tgz", - "integrity": "sha512-a3rYhlsGV0UHNDvrtOXBg8/OpfV0OKTkxKPzIplS1zpx7CygDcWWxckxZeDd3gzPzC4kUT0A4nVFDK0wGMh4MQ==", + "version": "7.12.5", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.5.tgz", + "integrity": "sha512-+qH6NrscMolUlzOYngSBMIOQpKUGPPsc61Bu5W10mg84LxZ7cmvnBHzARKbDoFxVvqqAbj6Tg6N7bSrWSPXMyw==", "dev": true, "requires": { - "@babel/compat-data": "^7.10.4", - "browserslist": "^4.12.0", - "invariant": "^2.2.4", - "levenary": "^1.1.1", + "@babel/compat-data": "^7.12.5", + "@babel/helper-validator-option": "^7.12.1", + "browserslist": "^4.14.5", "semver": "^5.5.0" }, "dependencies": { "browserslist": { - "version": "4.14.0", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.14.0.tgz", - "integrity": "sha512-pUsXKAF2lVwhmtpeA3LJrZ76jXuusrNyhduuQs7CDFf9foT4Y38aQOserd2lMe5DSSrjf3fx34oHwryuvxAUgQ==", + "version": "4.16.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.16.0.tgz", + "integrity": "sha512-/j6k8R0p3nxOC6kx5JGAxsnhc9ixaWJfYc+TNTzxg6+ARaESAvQGV7h0uNOB4t+pLQJZWzcrMxXOxjgsCj3dqQ==", "dev": true, "requires": { - "caniuse-lite": "^1.0.30001111", - "electron-to-chromium": "^1.3.523", - "escalade": "^3.0.2", - "node-releases": "^1.1.60" + "caniuse-lite": "^1.0.30001165", + "colorette": "^1.2.1", + "electron-to-chromium": "^1.3.621", + "escalade": "^3.1.1", + "node-releases": "^1.1.67" } }, - "caniuse-lite": { - "version": "1.0.30001114", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001114.tgz", - "integrity": "sha512-ml/zTsfNBM+T1+mjglWRPgVsu2L76GAaADKX5f4t0pbhttEp0WMawJsHDYlFkVZkoA+89uvBRrVrEE4oqenzXQ==", - "dev": true - }, - "electron-to-chromium": { - "version": "1.3.533", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.533.tgz", - "integrity": "sha512-YqAL+NXOzjBnpY+dcOKDlZybJDCOzgsq4koW3fvyty/ldTmsb4QazZpOWmVvZ2m0t5jbBf7L0lIGU3BUipwG+A==", - "dev": true - }, - "node-releases": { - "version": "1.1.60", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.60.tgz", - "integrity": "sha512-gsO4vjEdQaTusZAEebUWp2a5d7dF5DYoIpDG7WySnk7BuZDW+GPpHXoXXuYawRBr/9t5q54tirPz79kFIWg4dA==", - "dev": true - }, "semver": { "version": "5.7.1", "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", @@ -332,176 +185,26 @@ } }, "@babel/helper-create-class-features-plugin": { - "version": "7.10.5", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.10.5.tgz", - "integrity": "sha512-0nkdeijB7VlZoLT3r/mY3bUkw3T8WG/hNw+FATs/6+pG2039IJWjTYL0VTISqsNHMUTEnwbVnc89WIJX9Qed0A==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.12.1.tgz", + "integrity": "sha512-hkL++rWeta/OVOBTRJc9a5Azh5mt5WgZUGAKMD8JM141YsE08K//bp1unBBieO6rUKkIPyUE0USQ30jAy3Sk1w==", "dev": true, "requires": { "@babel/helper-function-name": "^7.10.4", - "@babel/helper-member-expression-to-functions": "^7.10.5", + "@babel/helper-member-expression-to-functions": "^7.12.1", "@babel/helper-optimise-call-expression": "^7.10.4", - "@babel/helper-plugin-utils": "^7.10.4", - "@babel/helper-replace-supers": "^7.10.4", + "@babel/helper-replace-supers": "^7.12.1", "@babel/helper-split-export-declaration": "^7.10.4" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", - "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", - "dev": true, - "requires": { - "@babel/highlight": "^7.10.4" - } - }, - "@babel/helper-function-name": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz", - "integrity": "sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==", - "dev": true, - "requires": { - "@babel/helper-get-function-arity": "^7.10.4", - "@babel/template": "^7.10.4", - "@babel/types": "^7.10.4" - } - }, - "@babel/helper-get-function-arity": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz", - "integrity": "sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==", - "dev": true, - "requires": { - "@babel/types": "^7.10.4" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz", - "integrity": "sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg==", - "dev": true, - "requires": { - "@babel/types": "^7.11.0" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", - "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", - "dev": true - }, - "@babel/highlight": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz", - "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.10.4", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/parser": { - "version": "7.11.3", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.11.3.tgz", - "integrity": "sha512-REo8xv7+sDxkKvoxEywIdsNFiZLybwdI7hcT5uEPyQrSMB4YQ973BfC9OOrD/81MaIjh6UxdulIQXkjmiH3PcA==", - "dev": true - }, - "@babel/template": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.10.4.tgz", - "integrity": "sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.10.4", - "@babel/parser": "^7.10.4", - "@babel/types": "^7.10.4" - } - }, - "@babel/types": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.11.0.tgz", - "integrity": "sha512-O53yME4ZZI0jO1EVGtF1ePGl0LHirG4P1ibcD80XyzZcKhcMFeCXmh4Xb1ifGBIV233Qg12x4rBfQgA+tmOukA==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.10.4", - "lodash": "^4.17.19", - "to-fast-properties": "^2.0.0" - } - } } }, "@babel/helper-create-regexp-features-plugin": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.10.4.tgz", - "integrity": "sha512-2/hu58IEPKeoLF45DBwx3XFqsbCXmkdAay4spVr2x0jYgRxrSNp+ePwvSsy9g6YSaNDcKIQVPXk1Ov8S2edk2g==", + "version": "7.12.7", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.7.tgz", + "integrity": "sha512-idnutvQPdpbduutvi3JVfEgcVIHooQnhvhx0Nk9isOINOIGYkZea1Pk2JlJRiUnMefrlvr0vkByATBY/mB4vjQ==", "dev": true, "requires": { "@babel/helper-annotate-as-pure": "^7.10.4", - "@babel/helper-regex": "^7.10.4", - "regexpu-core": "^4.7.0" - }, - "dependencies": { - "@babel/helper-annotate-as-pure": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.4.tgz", - "integrity": "sha512-XQlqKQP4vXFB7BN8fEEerrmYvHp3fK/rBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z/OnId1jpJdNAZ3BFQjWG68rcA==", - "dev": true, - "requires": { - "@babel/types": "^7.10.4" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", - "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", - "dev": true - }, - "@babel/types": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.11.0.tgz", - "integrity": "sha512-O53yME4ZZI0jO1EVGtF1ePGl0LHirG4P1ibcD80XyzZcKhcMFeCXmh4Xb1ifGBIV233Qg12x4rBfQgA+tmOukA==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.10.4", - "lodash": "^4.17.19", - "to-fast-properties": "^2.0.0" - } - }, - "jsesc": { - "version": "0.5.0", - "resolved": "https://registry.npm.taobao.org/jsesc/download/jsesc-0.5.0.tgz", - "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=", - "dev": true - }, - "regexpu-core": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.0.tgz", - "integrity": "sha512-TQ4KXRnIn6tz6tjnrXEkD/sshygKH/j5KzK86X8MkeHyZ8qst/LZ89j3X4/8HEIfHANTFIP/AbXakeRhWIl5YQ==", - "dev": true, - "requires": { - "regenerate": "^1.4.0", - "regenerate-unicode-properties": "^8.2.0", - "regjsgen": "^0.5.1", - "regjsparser": "^0.6.4", - "unicode-match-property-ecmascript": "^1.0.4", - "unicode-match-property-value-ecmascript": "^1.2.0" - } - }, - "regjsgen": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.2.tgz", - "integrity": "sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==", - "dev": true - }, - "regjsparser": { - "version": "0.6.4", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.4.tgz", - "integrity": "sha512-64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw==", - "dev": true, - "requires": { - "jsesc": "~0.5.0" - } - } + "regexpu-core": "^4.7.1" } }, "@babel/helper-define-map": { @@ -513,231 +216,35 @@ "@babel/helper-function-name": "^7.10.4", "@babel/types": "^7.10.5", "lodash": "^4.17.19" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", - "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", - "dev": true, - "requires": { - "@babel/highlight": "^7.10.4" - } - }, - "@babel/helper-function-name": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz", - "integrity": "sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==", - "dev": true, - "requires": { - "@babel/helper-get-function-arity": "^7.10.4", - "@babel/template": "^7.10.4", - "@babel/types": "^7.10.4" - } - }, - "@babel/helper-get-function-arity": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz", - "integrity": "sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==", - "dev": true, - "requires": { - "@babel/types": "^7.10.4" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", - "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", - "dev": true - }, - "@babel/highlight": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz", - "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.10.4", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/parser": { - "version": "7.11.3", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.11.3.tgz", - "integrity": "sha512-REo8xv7+sDxkKvoxEywIdsNFiZLybwdI7hcT5uEPyQrSMB4YQ973BfC9OOrD/81MaIjh6UxdulIQXkjmiH3PcA==", - "dev": true - }, - "@babel/template": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.10.4.tgz", - "integrity": "sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.10.4", - "@babel/parser": "^7.10.4", - "@babel/types": "^7.10.4" - } - }, - "@babel/types": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.11.0.tgz", - "integrity": "sha512-O53yME4ZZI0jO1EVGtF1ePGl0LHirG4P1ibcD80XyzZcKhcMFeCXmh4Xb1ifGBIV233Qg12x4rBfQgA+tmOukA==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.10.4", - "lodash": "^4.17.19", - "to-fast-properties": "^2.0.0" - } - } } }, "@babel/helper-explode-assignable-expression": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.10.4.tgz", - "integrity": "sha512-4K71RyRQNPRrR85sr5QY4X3VwG4wtVoXZB9+L3r1Gp38DhELyHCtovqydRi7c1Ovb17eRGiQ/FD5s8JdU0Uy5A==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.12.1.tgz", + "integrity": "sha512-dmUwH8XmlrUpVqgtZ737tK88v07l840z9j3OEhCLwKTkjlvKpfqXVIZ0wpK3aeOxspwGrf/5AP5qLx4rO3w5rA==", "dev": true, "requires": { - "@babel/traverse": "^7.10.4", - "@babel/types": "^7.10.4" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", - "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", - "dev": true, - "requires": { - "@babel/highlight": "^7.10.4" - } - }, - "@babel/generator": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.11.0.tgz", - "integrity": "sha512-fEm3Uzw7Mc9Xi//qU20cBKatTfs2aOtKqmvy/Vm7RkJEGFQ4xc9myCfbXxqK//ZS8MR/ciOHw6meGASJuKmDfQ==", - "dev": true, - "requires": { - "@babel/types": "^7.11.0", - "jsesc": "^2.5.1", - "source-map": "^0.5.0" - } - }, - "@babel/helper-function-name": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz", - "integrity": "sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==", - "dev": true, - "requires": { - "@babel/helper-get-function-arity": "^7.10.4", - "@babel/template": "^7.10.4", - "@babel/types": "^7.10.4" - } - }, - "@babel/helper-get-function-arity": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz", - "integrity": "sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==", - "dev": true, - "requires": { - "@babel/types": "^7.10.4" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz", - "integrity": "sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg==", - "dev": true, - "requires": { - "@babel/types": "^7.11.0" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", - "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", - "dev": true - }, - "@babel/highlight": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz", - "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.10.4", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/parser": { - "version": "7.11.3", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.11.3.tgz", - "integrity": "sha512-REo8xv7+sDxkKvoxEywIdsNFiZLybwdI7hcT5uEPyQrSMB4YQ973BfC9OOrD/81MaIjh6UxdulIQXkjmiH3PcA==", - "dev": true - }, - "@babel/template": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.10.4.tgz", - "integrity": "sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.10.4", - "@babel/parser": "^7.10.4", - "@babel/types": "^7.10.4" - } - }, - "@babel/traverse": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.11.0.tgz", - "integrity": "sha512-ZB2V+LskoWKNpMq6E5UUCrjtDUh5IOTAyIl0dTjIEoXum/iKWkoIEKIRDnUucO6f+2FzNkE0oD4RLKoPIufDtg==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.10.4", - "@babel/generator": "^7.11.0", - "@babel/helper-function-name": "^7.10.4", - "@babel/helper-split-export-declaration": "^7.11.0", - "@babel/parser": "^7.11.0", - "@babel/types": "^7.11.0", - "debug": "^4.1.0", - "globals": "^11.1.0", - "lodash": "^4.17.19" - } - }, - "@babel/types": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.11.0.tgz", - "integrity": "sha512-O53yME4ZZI0jO1EVGtF1ePGl0LHirG4P1ibcD80XyzZcKhcMFeCXmh4Xb1ifGBIV233Qg12x4rBfQgA+tmOukA==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.10.4", - "lodash": "^4.17.19", - "to-fast-properties": "^2.0.0" - } - }, - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", - "dev": true - } + "@babel/types": "^7.12.1" } }, "@babel/helper-function-name": { - "version": "7.10.1", - "resolved": "https://registry.npm.taobao.org/@babel/helper-function-name/download/@babel/helper-function-name-7.10.1.tgz?cache=0&sync_timestamp=1590617382224&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-function-name%2Fdownload%2F%40babel%2Fhelper-function-name-7.10.1.tgz", - "integrity": "sha1-kr1jgpv8khWsqdne+oX1a1OUVPQ=", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.11.tgz", + "integrity": "sha512-AtQKjtYNolKNi6nNNVLQ27CP6D9oFR6bq/HPYSizlzbp7uC1M59XJe8L+0uXjbIaZaUJF99ruHqVGiKXU/7ybA==", "dev": true, "requires": { - "@babel/helper-get-function-arity": "^7.10.1", - "@babel/template": "^7.10.1", - "@babel/types": "^7.10.1" + "@babel/helper-get-function-arity": "^7.12.10", + "@babel/template": "^7.12.7", + "@babel/types": "^7.12.11" } }, "@babel/helper-get-function-arity": { - "version": "7.10.1", - "resolved": "https://registry.npm.taobao.org/@babel/helper-get-function-arity/download/@babel/helper-get-function-arity-7.10.1.tgz?cache=0&sync_timestamp=1590617376870&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-get-function-arity%2Fdownload%2F%40babel%2Fhelper-get-function-arity-7.10.1.tgz", - "integrity": "sha1-cwM5CoG6fLWWE4laGSuThQ43P30=", + "version": "7.12.10", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.10.tgz", + "integrity": "sha512-mm0n5BPjR06wh9mPQaDdXWDoll/j5UpCAPl1x8fS71GHm7HA6Ua2V4ylG1Ju8lvcTOietbPNNPaSilKj+pj+Ag==", "dev": true, "requires": { - "@babel/types": "^7.10.1" + "@babel/types": "^7.12.10" } }, "@babel/helper-hoist-variables": { @@ -747,179 +254,50 @@ "dev": true, "requires": { "@babel/types": "^7.10.4" - }, - "dependencies": { - "@babel/helper-validator-identifier": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", - "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", - "dev": true - }, - "@babel/types": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.11.0.tgz", - "integrity": "sha512-O53yME4ZZI0jO1EVGtF1ePGl0LHirG4P1ibcD80XyzZcKhcMFeCXmh4Xb1ifGBIV233Qg12x4rBfQgA+tmOukA==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.10.4", - "lodash": "^4.17.19", - "to-fast-properties": "^2.0.0" - } - } } }, "@babel/helper-member-expression-to-functions": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.11.0.tgz", - "integrity": "sha512-JbFlKHFntRV5qKw3YC0CvQnDZ4XMwgzzBbld7Ly4Mj4cbFy3KywcR8NtNctRToMWJOVvLINJv525Gd6wwVEx/Q==", + "version": "7.12.7", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.7.tgz", + "integrity": "sha512-DCsuPyeWxeHgh1Dus7APn7iza42i/qXqiFPWyBDdOFtvS581JQePsc1F/nD+fHrcswhLlRc2UpYS1NwERxZhHw==", "dev": true, "requires": { - "@babel/types": "^7.11.0" - }, - "dependencies": { - "@babel/helper-validator-identifier": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", - "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", - "dev": true - }, - "@babel/types": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.11.0.tgz", - "integrity": "sha512-O53yME4ZZI0jO1EVGtF1ePGl0LHirG4P1ibcD80XyzZcKhcMFeCXmh4Xb1ifGBIV233Qg12x4rBfQgA+tmOukA==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.10.4", - "lodash": "^4.17.19", - "to-fast-properties": "^2.0.0" - } - } + "@babel/types": "^7.12.7" } }, "@babel/helper-module-imports": { - "version": "7.10.1", - "resolved": "https://registry.npm.taobao.org/@babel/helper-module-imports/download/@babel/helper-module-imports-7.10.1.tgz?cache=0&sync_timestamp=1590617391715&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-module-imports%2Fdownload%2F%40babel%2Fhelper-module-imports-7.10.1.tgz", - "integrity": "sha1-3TMb1FvMxWbOdwBOnQX+F63ROHY=", + "version": "7.12.5", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz", + "integrity": "sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==", "dev": true, "requires": { - "@babel/types": "^7.10.1" + "@babel/types": "^7.12.5" } }, "@babel/helper-module-transforms": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.11.0.tgz", - "integrity": "sha512-02EVu8COMuTRO1TAzdMtpBPbe6aQ1w/8fePD2YgQmxZU4gpNWaL9gK3Jp7dxlkUlUCJOTaSeA+Hrm1BRQwqIhg==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.12.1.tgz", + "integrity": "sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w==", "dev": true, "requires": { - "@babel/helper-module-imports": "^7.10.4", - "@babel/helper-replace-supers": "^7.10.4", - "@babel/helper-simple-access": "^7.10.4", + "@babel/helper-module-imports": "^7.12.1", + "@babel/helper-replace-supers": "^7.12.1", + "@babel/helper-simple-access": "^7.12.1", "@babel/helper-split-export-declaration": "^7.11.0", + "@babel/helper-validator-identifier": "^7.10.4", "@babel/template": "^7.10.4", - "@babel/types": "^7.11.0", + "@babel/traverse": "^7.12.1", + "@babel/types": "^7.12.1", "lodash": "^4.17.19" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", - "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", - "dev": true, - "requires": { - "@babel/highlight": "^7.10.4" - } - }, - "@babel/helper-module-imports": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.10.4.tgz", - "integrity": "sha512-nEQJHqYavI217oD9+s5MUBzk6x1IlvoS9WTPfgG43CbMEeStE0v+r+TucWdx8KFGowPGvyOkDT9+7DHedIDnVw==", - "dev": true, - "requires": { - "@babel/types": "^7.10.4" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz", - "integrity": "sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg==", - "dev": true, - "requires": { - "@babel/types": "^7.11.0" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", - "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", - "dev": true - }, - "@babel/highlight": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz", - "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.10.4", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/parser": { - "version": "7.11.3", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.11.3.tgz", - "integrity": "sha512-REo8xv7+sDxkKvoxEywIdsNFiZLybwdI7hcT5uEPyQrSMB4YQ973BfC9OOrD/81MaIjh6UxdulIQXkjmiH3PcA==", - "dev": true - }, - "@babel/template": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.10.4.tgz", - "integrity": "sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.10.4", - "@babel/parser": "^7.10.4", - "@babel/types": "^7.10.4" - } - }, - "@babel/types": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.11.0.tgz", - "integrity": "sha512-O53yME4ZZI0jO1EVGtF1ePGl0LHirG4P1ibcD80XyzZcKhcMFeCXmh4Xb1ifGBIV233Qg12x4rBfQgA+tmOukA==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.10.4", - "lodash": "^4.17.19", - "to-fast-properties": "^2.0.0" - } - } } }, "@babel/helper-optimise-call-expression": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.4.tgz", - "integrity": "sha512-n3UGKY4VXwXThEiKrgRAoVPBMqeoPgHVqiHZOanAJCG9nQUL2pLRQirUzl0ioKclHGpGqRgIOkgcIJaIWLpygg==", + "version": "7.12.10", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.10.tgz", + "integrity": "sha512-4tpbU0SrSTjjt65UMWSrUOPZTsgvPgGG4S8QSTNHacKzpS51IVWGDj0yCwyeZND/i+LSN2g/O63jEXEWm49sYQ==", "dev": true, "requires": { - "@babel/types": "^7.10.4" - }, - "dependencies": { - "@babel/helper-validator-identifier": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", - "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", - "dev": true - }, - "@babel/types": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.11.0.tgz", - "integrity": "sha512-O53yME4ZZI0jO1EVGtF1ePGl0LHirG4P1ibcD80XyzZcKhcMFeCXmh4Xb1ifGBIV233Qg12x4rBfQgA+tmOukA==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.10.4", - "lodash": "^4.17.19", - "to-fast-properties": "^2.0.0" - } - } + "@babel/types": "^7.12.10" } }, "@babel/helper-plugin-utils": { @@ -928,692 +306,178 @@ "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==", "dev": true }, - "@babel/helper-regex": { - "version": "7.10.5", - "resolved": "https://registry.npmjs.org/@babel/helper-regex/-/helper-regex-7.10.5.tgz", - "integrity": "sha512-68kdUAzDrljqBrio7DYAEgCoJHxppJOERHOgOrDN7WjOzP0ZQ1LsSDRXcemzVZaLvjaJsJEESb6qt+znNuENDg==", - "dev": true, - "requires": { - "lodash": "^4.17.19" - } - }, "@babel/helper-remap-async-to-generator": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.10.4.tgz", - "integrity": "sha512-86Lsr6NNw3qTNl+TBcF1oRZMaVzJtbWTyTko+CQL/tvNvcGYEFKbLXDPxtW0HKk3McNOk4KzY55itGWCAGK5tg==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.12.1.tgz", + "integrity": "sha512-9d0KQCRM8clMPcDwo8SevNs+/9a8yWVVmaE80FGJcEP8N1qToREmWEGnBn8BUlJhYRFz6fqxeRL1sl5Ogsed7A==", "dev": true, "requires": { "@babel/helper-annotate-as-pure": "^7.10.4", "@babel/helper-wrap-function": "^7.10.4", - "@babel/template": "^7.10.4", - "@babel/traverse": "^7.10.4", - "@babel/types": "^7.10.4" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", - "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", - "dev": true, - "requires": { - "@babel/highlight": "^7.10.4" - } - }, - "@babel/generator": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.11.0.tgz", - "integrity": "sha512-fEm3Uzw7Mc9Xi//qU20cBKatTfs2aOtKqmvy/Vm7RkJEGFQ4xc9myCfbXxqK//ZS8MR/ciOHw6meGASJuKmDfQ==", - "dev": true, - "requires": { - "@babel/types": "^7.11.0", - "jsesc": "^2.5.1", - "source-map": "^0.5.0" - } - }, - "@babel/helper-annotate-as-pure": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.4.tgz", - "integrity": "sha512-XQlqKQP4vXFB7BN8fEEerrmYvHp3fK/rBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z/OnId1jpJdNAZ3BFQjWG68rcA==", - "dev": true, - "requires": { - "@babel/types": "^7.10.4" - } - }, - "@babel/helper-function-name": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz", - "integrity": "sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==", - "dev": true, - "requires": { - "@babel/helper-get-function-arity": "^7.10.4", - "@babel/template": "^7.10.4", - "@babel/types": "^7.10.4" - } - }, - "@babel/helper-get-function-arity": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz", - "integrity": "sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==", - "dev": true, - "requires": { - "@babel/types": "^7.10.4" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz", - "integrity": "sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg==", - "dev": true, - "requires": { - "@babel/types": "^7.11.0" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", - "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", - "dev": true - }, - "@babel/highlight": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz", - "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.10.4", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/parser": { - "version": "7.11.3", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.11.3.tgz", - "integrity": "sha512-REo8xv7+sDxkKvoxEywIdsNFiZLybwdI7hcT5uEPyQrSMB4YQ973BfC9OOrD/81MaIjh6UxdulIQXkjmiH3PcA==", - "dev": true - }, - "@babel/template": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.10.4.tgz", - "integrity": "sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.10.4", - "@babel/parser": "^7.10.4", - "@babel/types": "^7.10.4" - } - }, - "@babel/traverse": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.11.0.tgz", - "integrity": "sha512-ZB2V+LskoWKNpMq6E5UUCrjtDUh5IOTAyIl0dTjIEoXum/iKWkoIEKIRDnUucO6f+2FzNkE0oD4RLKoPIufDtg==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.10.4", - "@babel/generator": "^7.11.0", - "@babel/helper-function-name": "^7.10.4", - "@babel/helper-split-export-declaration": "^7.11.0", - "@babel/parser": "^7.11.0", - "@babel/types": "^7.11.0", - "debug": "^4.1.0", - "globals": "^11.1.0", - "lodash": "^4.17.19" - } - }, - "@babel/types": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.11.0.tgz", - "integrity": "sha512-O53yME4ZZI0jO1EVGtF1ePGl0LHirG4P1ibcD80XyzZcKhcMFeCXmh4Xb1ifGBIV233Qg12x4rBfQgA+tmOukA==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.10.4", - "lodash": "^4.17.19", - "to-fast-properties": "^2.0.0" - } - }, - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", - "dev": true - } + "@babel/types": "^7.12.1" } }, "@babel/helper-replace-supers": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.10.4.tgz", - "integrity": "sha512-sPxZfFXocEymYTdVK1UNmFPBN+Hv5mJkLPsYWwGBxZAxaWfFu+xqp7b6qWD0yjNuNL2VKc6L5M18tOXUP7NU0A==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.11.tgz", + "integrity": "sha512-q+w1cqmhL7R0FNzth/PLLp2N+scXEK/L2AHbXUyydxp828F4FEa5WcVoqui9vFRiHDQErj9Zof8azP32uGVTRA==", "dev": true, "requires": { - "@babel/helper-member-expression-to-functions": "^7.10.4", - "@babel/helper-optimise-call-expression": "^7.10.4", - "@babel/traverse": "^7.10.4", - "@babel/types": "^7.10.4" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", - "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", - "dev": true, - "requires": { - "@babel/highlight": "^7.10.4" - } - }, - "@babel/generator": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.11.0.tgz", - "integrity": "sha512-fEm3Uzw7Mc9Xi//qU20cBKatTfs2aOtKqmvy/Vm7RkJEGFQ4xc9myCfbXxqK//ZS8MR/ciOHw6meGASJuKmDfQ==", - "dev": true, - "requires": { - "@babel/types": "^7.11.0", - "jsesc": "^2.5.1", - "source-map": "^0.5.0" - } - }, - "@babel/helper-function-name": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz", - "integrity": "sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==", - "dev": true, - "requires": { - "@babel/helper-get-function-arity": "^7.10.4", - "@babel/template": "^7.10.4", - "@babel/types": "^7.10.4" - } - }, - "@babel/helper-get-function-arity": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz", - "integrity": "sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==", - "dev": true, - "requires": { - "@babel/types": "^7.10.4" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz", - "integrity": "sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg==", - "dev": true, - "requires": { - "@babel/types": "^7.11.0" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", - "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", - "dev": true - }, - "@babel/highlight": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz", - "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.10.4", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/parser": { - "version": "7.11.3", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.11.3.tgz", - "integrity": "sha512-REo8xv7+sDxkKvoxEywIdsNFiZLybwdI7hcT5uEPyQrSMB4YQ973BfC9OOrD/81MaIjh6UxdulIQXkjmiH3PcA==", - "dev": true - }, - "@babel/template": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.10.4.tgz", - "integrity": "sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.10.4", - "@babel/parser": "^7.10.4", - "@babel/types": "^7.10.4" - } - }, - "@babel/traverse": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.11.0.tgz", - "integrity": "sha512-ZB2V+LskoWKNpMq6E5UUCrjtDUh5IOTAyIl0dTjIEoXum/iKWkoIEKIRDnUucO6f+2FzNkE0oD4RLKoPIufDtg==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.10.4", - "@babel/generator": "^7.11.0", - "@babel/helper-function-name": "^7.10.4", - "@babel/helper-split-export-declaration": "^7.11.0", - "@babel/parser": "^7.11.0", - "@babel/types": "^7.11.0", - "debug": "^4.1.0", - "globals": "^11.1.0", - "lodash": "^4.17.19" - } - }, - "@babel/types": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.11.0.tgz", - "integrity": "sha512-O53yME4ZZI0jO1EVGtF1ePGl0LHirG4P1ibcD80XyzZcKhcMFeCXmh4Xb1ifGBIV233Qg12x4rBfQgA+tmOukA==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.10.4", - "lodash": "^4.17.19", - "to-fast-properties": "^2.0.0" - } - }, - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", - "dev": true - } + "@babel/helper-member-expression-to-functions": "^7.12.7", + "@babel/helper-optimise-call-expression": "^7.12.10", + "@babel/traverse": "^7.12.10", + "@babel/types": "^7.12.11" } }, "@babel/helper-simple-access": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.10.4.tgz", - "integrity": "sha512-0fMy72ej/VEvF8ULmX6yb5MtHG4uH4Dbd6I/aHDb/JVg0bbivwt9Wg+h3uMvX+QSFtwr5MeItvazbrc4jtRAXw==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.12.1.tgz", + "integrity": "sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA==", "dev": true, "requires": { - "@babel/template": "^7.10.4", - "@babel/types": "^7.10.4" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", - "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", - "dev": true, - "requires": { - "@babel/highlight": "^7.10.4" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", - "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", - "dev": true - }, - "@babel/highlight": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz", - "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.10.4", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/parser": { - "version": "7.11.3", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.11.3.tgz", - "integrity": "sha512-REo8xv7+sDxkKvoxEywIdsNFiZLybwdI7hcT5uEPyQrSMB4YQ973BfC9OOrD/81MaIjh6UxdulIQXkjmiH3PcA==", - "dev": true - }, - "@babel/template": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.10.4.tgz", - "integrity": "sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.10.4", - "@babel/parser": "^7.10.4", - "@babel/types": "^7.10.4" - } - }, - "@babel/types": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.11.0.tgz", - "integrity": "sha512-O53yME4ZZI0jO1EVGtF1ePGl0LHirG4P1ibcD80XyzZcKhcMFeCXmh4Xb1ifGBIV233Qg12x4rBfQgA+tmOukA==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.10.4", - "lodash": "^4.17.19", - "to-fast-properties": "^2.0.0" - } - } + "@babel/types": "^7.12.1" } }, "@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.11.0.tgz", - "integrity": "sha512-0XIdiQln4Elglgjbwo9wuJpL/K7AGCY26kmEt0+pRP0TAj4jjyNq1MjoRvikrTVqKcx4Gysxt4cXvVFXP/JO2Q==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.12.1.tgz", + "integrity": "sha512-Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA==", "dev": true, "requires": { - "@babel/types": "^7.11.0" - }, - "dependencies": { - "@babel/helper-validator-identifier": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", - "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", - "dev": true - }, - "@babel/types": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.11.0.tgz", - "integrity": "sha512-O53yME4ZZI0jO1EVGtF1ePGl0LHirG4P1ibcD80XyzZcKhcMFeCXmh4Xb1ifGBIV233Qg12x4rBfQgA+tmOukA==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.10.4", - "lodash": "^4.17.19", - "to-fast-properties": "^2.0.0" - } - } + "@babel/types": "^7.12.1" } }, "@babel/helper-split-export-declaration": { - "version": "7.10.1", - "resolved": "https://registry.npm.taobao.org/@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.10.1.tgz?cache=0&sync_timestamp=1590617376454&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-split-export-declaration%2Fdownload%2F%40babel%2Fhelper-split-export-declaration-7.10.1.tgz", - "integrity": "sha1-xvS+HLwV46ho5MZKF9XTHXVNo18=", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.11.tgz", + "integrity": "sha512-LsIVN8j48gHgwzfocYUSkO/hjYAOJqlpJEc7tGXcIm4cubjVUf8LGW6eWRyxEu7gA25q02p0rQUWoCI33HNS5g==", "dev": true, "requires": { - "@babel/types": "^7.10.1" + "@babel/types": "^7.12.11" } }, "@babel/helper-validator-identifier": { - "version": "7.10.1", - "resolved": "https://registry.npm.taobao.org/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.10.1.tgz?cache=0&sync_timestamp=1590617380856&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-validator-identifier%2Fdownload%2F%40babel%2Fhelper-validator-identifier-7.10.1.tgz", - "integrity": "sha1-V3CwwagmxPU/Xt5eFTFj4DGOlLU=", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz", + "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==", + "dev": true + }, + "@babel/helper-validator-option": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.12.11.tgz", + "integrity": "sha512-TBFCyj939mFSdeX7U7DDj32WtzYY7fDcalgq8v3fBZMNOJQNn7nOYzMaUCiPxPYfCup69mtIpqlKgMZLvQ8Xhw==", "dev": true }, "@babel/helper-wrap-function": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.10.4.tgz", - "integrity": "sha512-6py45WvEF0MhiLrdxtRjKjufwLL1/ob2qDJgg5JgNdojBAZSAKnAjkyOCNug6n+OBl4VW76XjvgSFTdaMcW0Ug==", + "version": "7.12.3", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.12.3.tgz", + "integrity": "sha512-Cvb8IuJDln3rs6tzjW3Y8UeelAOdnpB8xtQ4sme2MSZ9wOxrbThporC0y/EtE16VAtoyEfLM404Xr1e0OOp+ow==", "dev": true, "requires": { "@babel/helper-function-name": "^7.10.4", "@babel/template": "^7.10.4", "@babel/traverse": "^7.10.4", "@babel/types": "^7.10.4" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", - "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", - "dev": true, - "requires": { - "@babel/highlight": "^7.10.4" - } - }, - "@babel/generator": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.11.0.tgz", - "integrity": "sha512-fEm3Uzw7Mc9Xi//qU20cBKatTfs2aOtKqmvy/Vm7RkJEGFQ4xc9myCfbXxqK//ZS8MR/ciOHw6meGASJuKmDfQ==", - "dev": true, - "requires": { - "@babel/types": "^7.11.0", - "jsesc": "^2.5.1", - "source-map": "^0.5.0" - } - }, - "@babel/helper-function-name": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz", - "integrity": "sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==", - "dev": true, - "requires": { - "@babel/helper-get-function-arity": "^7.10.4", - "@babel/template": "^7.10.4", - "@babel/types": "^7.10.4" - } - }, - "@babel/helper-get-function-arity": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz", - "integrity": "sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==", - "dev": true, - "requires": { - "@babel/types": "^7.10.4" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz", - "integrity": "sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg==", - "dev": true, - "requires": { - "@babel/types": "^7.11.0" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", - "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", - "dev": true - }, - "@babel/highlight": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz", - "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.10.4", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/parser": { - "version": "7.11.3", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.11.3.tgz", - "integrity": "sha512-REo8xv7+sDxkKvoxEywIdsNFiZLybwdI7hcT5uEPyQrSMB4YQ973BfC9OOrD/81MaIjh6UxdulIQXkjmiH3PcA==", - "dev": true - }, - "@babel/template": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.10.4.tgz", - "integrity": "sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.10.4", - "@babel/parser": "^7.10.4", - "@babel/types": "^7.10.4" - } - }, - "@babel/traverse": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.11.0.tgz", - "integrity": "sha512-ZB2V+LskoWKNpMq6E5UUCrjtDUh5IOTAyIl0dTjIEoXum/iKWkoIEKIRDnUucO6f+2FzNkE0oD4RLKoPIufDtg==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.10.4", - "@babel/generator": "^7.11.0", - "@babel/helper-function-name": "^7.10.4", - "@babel/helper-split-export-declaration": "^7.11.0", - "@babel/parser": "^7.11.0", - "@babel/types": "^7.11.0", - "debug": "^4.1.0", - "globals": "^11.1.0", - "lodash": "^4.17.19" - } - }, - "@babel/types": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.11.0.tgz", - "integrity": "sha512-O53yME4ZZI0jO1EVGtF1ePGl0LHirG4P1ibcD80XyzZcKhcMFeCXmh4Xb1ifGBIV233Qg12x4rBfQgA+tmOukA==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.10.4", - "lodash": "^4.17.19", - "to-fast-properties": "^2.0.0" - } - }, - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", - "dev": true - } } }, "@babel/helpers": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.10.4.tgz", - "integrity": "sha512-L2gX/XeUONeEbI78dXSrJzGdz4GQ+ZTA/aazfUsFaWjSe95kiCuOZ5HsXvkiw3iwF+mFHSRUfJU8t6YavocdXA==", + "version": "7.12.5", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.12.5.tgz", + "integrity": "sha512-lgKGMQlKqA8meJqKsW6rUnc4MdUk35Ln0ATDqdM1a/UpARODdI4j5Y5lVfUScnSNkJcdCRAaWkspykNoFg9sJA==", "dev": true, "requires": { "@babel/template": "^7.10.4", - "@babel/traverse": "^7.10.4", - "@babel/types": "^7.10.4" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", - "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", - "dev": true, - "requires": { - "@babel/highlight": "^7.10.4" - } - }, - "@babel/generator": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.11.0.tgz", - "integrity": "sha512-fEm3Uzw7Mc9Xi//qU20cBKatTfs2aOtKqmvy/Vm7RkJEGFQ4xc9myCfbXxqK//ZS8MR/ciOHw6meGASJuKmDfQ==", - "dev": true, - "requires": { - "@babel/types": "^7.11.0", - "jsesc": "^2.5.1", - "source-map": "^0.5.0" - } - }, - "@babel/helper-function-name": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz", - "integrity": "sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==", - "dev": true, - "requires": { - "@babel/helper-get-function-arity": "^7.10.4", - "@babel/template": "^7.10.4", - "@babel/types": "^7.10.4" - } - }, - "@babel/helper-get-function-arity": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz", - "integrity": "sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==", - "dev": true, - "requires": { - "@babel/types": "^7.10.4" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz", - "integrity": "sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg==", - "dev": true, - "requires": { - "@babel/types": "^7.11.0" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", - "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", - "dev": true - }, - "@babel/highlight": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz", - "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.10.4", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/parser": { - "version": "7.11.3", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.11.3.tgz", - "integrity": "sha512-REo8xv7+sDxkKvoxEywIdsNFiZLybwdI7hcT5uEPyQrSMB4YQ973BfC9OOrD/81MaIjh6UxdulIQXkjmiH3PcA==", - "dev": true - }, - "@babel/template": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.10.4.tgz", - "integrity": "sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.10.4", - "@babel/parser": "^7.10.4", - "@babel/types": "^7.10.4" - } - }, - "@babel/traverse": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.11.0.tgz", - "integrity": "sha512-ZB2V+LskoWKNpMq6E5UUCrjtDUh5IOTAyIl0dTjIEoXum/iKWkoIEKIRDnUucO6f+2FzNkE0oD4RLKoPIufDtg==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.10.4", - "@babel/generator": "^7.11.0", - "@babel/helper-function-name": "^7.10.4", - "@babel/helper-split-export-declaration": "^7.11.0", - "@babel/parser": "^7.11.0", - "@babel/types": "^7.11.0", - "debug": "^4.1.0", - "globals": "^11.1.0", - "lodash": "^4.17.19" - } - }, - "@babel/types": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.11.0.tgz", - "integrity": "sha512-O53yME4ZZI0jO1EVGtF1ePGl0LHirG4P1ibcD80XyzZcKhcMFeCXmh4Xb1ifGBIV233Qg12x4rBfQgA+tmOukA==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.10.4", - "lodash": "^4.17.19", - "to-fast-properties": "^2.0.0" - } - }, - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", - "dev": true - } + "@babel/traverse": "^7.12.5", + "@babel/types": "^7.12.5" } }, "@babel/highlight": { - "version": "7.10.1", - "resolved": "https://registry.npm.taobao.org/@babel/highlight/download/@babel/highlight-7.10.1.tgz?cache=0&sync_timestamp=1590617386087&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhighlight%2Fdownload%2F%40babel%2Fhighlight-7.10.1.tgz", - "integrity": "sha1-hB0Ji6YTuhpCeis4PXnjVVLDiuA=", + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz", + "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==", "dev": true, "requires": { - "@babel/helper-validator-identifier": "^7.10.1", + "@babel/helper-validator-identifier": "^7.10.4", "chalk": "^2.0.0", "js-tokens": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } } }, "@babel/parser": { - "version": "7.10.2", - "resolved": "https://registry.npm.taobao.org/@babel/parser/download/@babel/parser-7.10.2.tgz?cache=0&sync_timestamp=1590868598847&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.10.2.tgz", - "integrity": "sha1-hxgH8QRCuS/5fkeDubVPagyoEtA=", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.11.tgz", + "integrity": "sha512-N3UxG+uuF4CMYoNj8AhnbAcJF0PiuJ9KHuy1lQmkYsxTer/MAH9UBNHsBoAX/4s6NvlDD047No8mYVGGzLL4hg==", "dev": true }, "@babel/plugin-proposal-async-generator-functions": { - "version": "7.10.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.10.5.tgz", - "integrity": "sha512-cNMCVezQbrRGvXJwm9fu/1sJj9bHdGAgKodZdLqOQIpfoH3raqmRPBM17+lh7CzhiKRRBrGtZL9WcjxSoGYUSg==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.12.1.tgz", + "integrity": "sha512-d+/o30tJxFxrA1lhzJqiUcEJdI6jKlNregCv5bASeGf2Q4MXmnwH7viDo7nhx1/ohf09oaH8j1GVYG/e3Yqk6A==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4", - "@babel/helper-remap-async-to-generator": "^7.10.4", + "@babel/helper-remap-async-to-generator": "^7.12.1", "@babel/plugin-syntax-async-generators": "^7.8.0" } }, "@babel/plugin-proposal-class-properties": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.10.4.tgz", - "integrity": "sha512-vhwkEROxzcHGNu2mzUC0OFFNXdZ4M23ib8aRRcJSsW8BZK9pQMD7QB7csl97NBbgGZO7ZyHUyKDnxzOaP4IrCg==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.1.tgz", + "integrity": "sha512-cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w==", "dev": true, "requires": { - "@babel/helper-create-class-features-plugin": "^7.10.4", + "@babel/helper-create-class-features-plugin": "^7.12.1", "@babel/helper-plugin-utils": "^7.10.4" } }, @@ -1629,9 +493,9 @@ } }, "@babel/plugin-proposal-dynamic-import": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.10.4.tgz", - "integrity": "sha512-up6oID1LeidOOASNXgv/CFbgBqTuKJ0cJjz6An5tWD+NVBNlp3VNSBxv2ZdU7SYl3NxJC7agAQDApZusV6uFwQ==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.12.1.tgz", + "integrity": "sha512-a4rhUSZFuq5W8/OO8H7BL5zspjnc1FLd9hlOxIK/f7qG4a0qsqk8uvF/ywgBA8/OmjsapjpvaEOYItfGG1qIvQ==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4", @@ -1639,9 +503,9 @@ } }, "@babel/plugin-proposal-export-namespace-from": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.10.4.tgz", - "integrity": "sha512-aNdf0LY6/3WXkhh0Fdb6Zk9j1NMD8ovj3F6r0+3j837Pn1S1PdNtcwJ5EG9WkVPNHPxyJDaxMaAOVq4eki0qbg==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.1.tgz", + "integrity": "sha512-6CThGf0irEkzujYS5LQcjBx8j/4aQGiVv7J9+2f7pGfxqyKh3WnmVJYW3hdrQjyksErMGBPQrCnHfOtna+WLbw==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4", @@ -1649,9 +513,9 @@ } }, "@babel/plugin-proposal-json-strings": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.10.4.tgz", - "integrity": "sha512-fCL7QF0Jo83uy1K0P2YXrfX11tj3lkpN7l4dMv9Y9VkowkhkQDwFHFd8IiwyK5MZjE8UpbgokkgtcReH88Abaw==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.12.1.tgz", + "integrity": "sha512-GoLDUi6U9ZLzlSda2Df++VSqDJg3CG+dR0+iWsv6XRw1rEq+zwt4DirM9yrxW6XWaTpmai1cWJLMfM8qQJf+yw==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4", @@ -1659,9 +523,9 @@ } }, "@babel/plugin-proposal-logical-assignment-operators": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.11.0.tgz", - "integrity": "sha512-/f8p4z+Auz0Uaf+i8Ekf1iM7wUNLcViFUGiPxKeXvxTSl63B875YPiVdUDdem7hREcI0E0kSpEhS8tF5RphK7Q==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.12.1.tgz", + "integrity": "sha512-k8ZmVv0JU+4gcUGeCDZOGd0lCIamU/sMtIiX3UWnUc5yzgq6YUGyEolNYD+MLYKfSzgECPcqetVcJP9Afe/aCA==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4", @@ -1669,9 +533,9 @@ } }, "@babel/plugin-proposal-nullish-coalescing-operator": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.10.4.tgz", - "integrity": "sha512-wq5n1M3ZUlHl9sqT2ok1T2/MTt6AXE0e1Lz4WzWBr95LsAZ5qDXe4KnFuauYyEyLiohvXFMdbsOTMyLZs91Zlw==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.12.1.tgz", + "integrity": "sha512-nZY0ESiaQDI1y96+jk6VxMOaL4LPo/QDHBqL+SF3/vl6dHkTwHlOI8L4ZwuRBHgakRBw5zsVylel7QPbbGuYgg==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4", @@ -1679,9 +543,9 @@ } }, "@babel/plugin-proposal-numeric-separator": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.10.4.tgz", - "integrity": "sha512-73/G7QoRoeNkLZFxsoCCvlg4ezE4eM+57PnOqgaPOozd5myfj7p0muD1mRVJvbUWbOzD+q3No2bWbaKy+DJ8DA==", + "version": "7.12.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.7.tgz", + "integrity": "sha512-8c+uy0qmnRTeukiGsjLGy6uVs/TFjJchGXUeBqlG4VWYOdJWkhhVPdQ3uHwbmalfJwv2JsV0qffXP4asRfL2SQ==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4", @@ -1689,20 +553,20 @@ } }, "@babel/plugin-proposal-object-rest-spread": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.11.0.tgz", - "integrity": "sha512-wzch41N4yztwoRw0ak+37wxwJM2oiIiy6huGCoqkvSTA9acYWcPfn9Y4aJqmFFJ70KTJUu29f3DQ43uJ9HXzEA==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.1.tgz", + "integrity": "sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4", "@babel/plugin-syntax-object-rest-spread": "^7.8.0", - "@babel/plugin-transform-parameters": "^7.10.4" + "@babel/plugin-transform-parameters": "^7.12.1" } }, "@babel/plugin-proposal-optional-catch-binding": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.10.4.tgz", - "integrity": "sha512-LflT6nPh+GK2MnFiKDyLiqSqVHkQnVf7hdoAvyTnnKj9xB3docGRsdPuxp6qqqW19ifK3xgc9U5/FwrSaCNX5g==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.12.1.tgz", + "integrity": "sha512-hFvIjgprh9mMw5v42sJWLI1lzU5L2sznP805zeT6rySVRA0Y18StRhDqhSxlap0oVgItRsB6WSROp4YnJTJz0g==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4", @@ -1710,33 +574,33 @@ } }, "@babel/plugin-proposal-optional-chaining": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.11.0.tgz", - "integrity": "sha512-v9fZIu3Y8562RRwhm1BbMRxtqZNFmFA2EG+pT2diuU8PT3H6T/KXoZ54KgYisfOFZHV6PfvAiBIZ9Rcz+/JCxA==", + "version": "7.12.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.7.tgz", + "integrity": "sha512-4ovylXZ0PWmwoOvhU2vhnzVNnm88/Sm9nx7V8BPgMvAzn5zDou3/Awy0EjglyubVHasJj+XCEkr/r1X3P5elCA==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4", - "@babel/helper-skip-transparent-expression-wrappers": "^7.11.0", + "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1", "@babel/plugin-syntax-optional-chaining": "^7.8.0" } }, "@babel/plugin-proposal-private-methods": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.10.4.tgz", - "integrity": "sha512-wh5GJleuI8k3emgTg5KkJK6kHNsGEr0uBTDBuQUBJwckk9xs1ez79ioheEVVxMLyPscB0LfkbVHslQqIzWV6Bw==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.12.1.tgz", + "integrity": "sha512-mwZ1phvH7/NHK6Kf8LP7MYDogGV+DKB1mryFOEwx5EBNQrosvIczzZFTUmWaeujd5xT6G1ELYWUz3CutMhjE1w==", "dev": true, "requires": { - "@babel/helper-create-class-features-plugin": "^7.10.4", + "@babel/helper-create-class-features-plugin": "^7.12.1", "@babel/helper-plugin-utils": "^7.10.4" } }, "@babel/plugin-proposal-unicode-property-regex": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.10.4.tgz", - "integrity": "sha512-H+3fOgPnEXFL9zGYtKQe4IDOPKYlZdF1kqFDQRRb8PK4B8af1vAGK04tF5iQAAsui+mHNBQSAtd2/ndEDe9wuA==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.1.tgz", + "integrity": "sha512-MYq+l+PvHuw/rKUz1at/vb6nCnQ2gmJBNaM62z0OgH7B2W1D9pvkpYtlti9bGtizNIU1K3zm4bZF9F91efVY0w==", "dev": true, "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.10.4", + "@babel/helper-create-regexp-features-plugin": "^7.12.1", "@babel/helper-plugin-utils": "^7.10.4" } }, @@ -1750,18 +614,18 @@ } }, "@babel/plugin-syntax-class-properties": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.10.4.tgz", - "integrity": "sha512-GCSBF7iUle6rNugfURwNmCGG3Z/2+opxAMLs1nND4bhEG5PuxTIggDBoeYYSujAlLtsupzOHYJQgPS3pivwXIA==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.1.tgz", + "integrity": "sha512-U40A76x5gTwmESz+qiqssqmeEsKvcSyvtgktrm0uzcARAmM9I1jR221f6Oq+GmHrcD+LvZDag1UTOTe2fL3TeA==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4" } }, "@babel/plugin-syntax-decorators": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.10.4.tgz", - "integrity": "sha512-2NaoC6fAk2VMdhY1eerkfHV+lVYC1u8b+jmRJISqANCJlTxYy19HGdIkkQtix2UtkcPuPu+IlDgrVseZnU03bw==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.12.1.tgz", + "integrity": "sha512-ir9YW5daRrTYiy9UJ2TzdNIJEZu8KclVzDcfSt4iEmOtwQ4llPtWInNKJyKnVXp1vE4bbVd5S31M/im3mYMO1w==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4" @@ -1786,9 +650,9 @@ } }, "@babel/plugin-syntax-flow": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.10.4.tgz", - "integrity": "sha512-yxQsX1dJixF4qEEdzVbst3SZQ58Nrooz8NV9Z9GL4byTE25BvJgl5lf0RECUf0fh28rZBb/RYTWn/eeKwCMrZQ==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.12.1.tgz", + "integrity": "sha512-1lBLLmtxrwpm4VKmtVFselI/P3pX+G63fAtUUt6b2Nzgao77KNDwyuRt90Mj2/9pKobtt68FdvjfqohZjg/FCA==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4" @@ -1804,9 +668,9 @@ } }, "@babel/plugin-syntax-jsx": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.10.4.tgz", - "integrity": "sha512-KCg9mio9jwiARCB7WAcQ7Y1q+qicILjoK8LP/VkPkEKaf5dkaZZK1EcTe91a3JJlZ3qy6L5s9X52boEYi8DM9g==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.1.tgz", + "integrity": "sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4" @@ -1867,93 +731,65 @@ } }, "@babel/plugin-syntax-top-level-await": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.10.4.tgz", - "integrity": "sha512-ni1brg4lXEmWyafKr0ccFWkJG0CeMt4WV1oyeBW6EFObF4oOHclbkj5cARxAPQyAQ2UTuplJyK4nfkXIMMFvsQ==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.1.tgz", + "integrity": "sha512-i7ooMZFS+a/Om0crxZodrTzNEPJHZrlMVGMTEpFAj6rYY/bKCddB0Dk/YxfPuYXOopuhKk/e1jV6h+WUU9XN3A==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4" } }, "@babel/plugin-syntax-typescript": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.10.4.tgz", - "integrity": "sha512-oSAEz1YkBCAKr5Yiq8/BNtvSAPwkp/IyUnwZogd8p+F0RuYQQrLeRUzIQhueQTTBy/F+a40uS7OFKxnkRvmvFQ==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.12.1.tgz", + "integrity": "sha512-UZNEcCY+4Dp9yYRCAHrHDU+9ZXLYaY9MgBXSRLkB9WjYFRR6quJBumfVrEkUxrePPBwFcpWfNKXqVRQQtm7mMA==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4" } }, "@babel/plugin-transform-arrow-functions": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.10.4.tgz", - "integrity": "sha512-9J/oD1jV0ZCBcgnoFWFq1vJd4msoKb/TCpGNFyyLt0zABdcvgK3aYikZ8HjzB14c26bc7E3Q1yugpwGy2aTPNA==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.12.1.tgz", + "integrity": "sha512-5QB50qyN44fzzz4/qxDPQMBCTHgxg3n0xRBLJUmBlLoU/sFvxVWGZF/ZUfMVDQuJUKXaBhbupxIzIfZ6Fwk/0A==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4" } }, "@babel/plugin-transform-async-to-generator": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.10.4.tgz", - "integrity": "sha512-F6nREOan7J5UXTLsDsZG3DXmZSVofr2tGNwfdrVwkDWHfQckbQXnXSPfD7iO+c/2HGqycwyLST3DnZ16n+cBJQ==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.12.1.tgz", + "integrity": "sha512-SDtqoEcarK1DFlRJ1hHRY5HvJUj5kX4qmtpMAm2QnhOlyuMC4TMdCRgW6WXpv93rZeYNeLP22y8Aq2dbcDRM1A==", "dev": true, "requires": { - "@babel/helper-module-imports": "^7.10.4", + "@babel/helper-module-imports": "^7.12.1", "@babel/helper-plugin-utils": "^7.10.4", - "@babel/helper-remap-async-to-generator": "^7.10.4" - }, - "dependencies": { - "@babel/helper-module-imports": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.10.4.tgz", - "integrity": "sha512-nEQJHqYavI217oD9+s5MUBzk6x1IlvoS9WTPfgG43CbMEeStE0v+r+TucWdx8KFGowPGvyOkDT9+7DHedIDnVw==", - "dev": true, - "requires": { - "@babel/types": "^7.10.4" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", - "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", - "dev": true - }, - "@babel/types": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.11.0.tgz", - "integrity": "sha512-O53yME4ZZI0jO1EVGtF1ePGl0LHirG4P1ibcD80XyzZcKhcMFeCXmh4Xb1ifGBIV233Qg12x4rBfQgA+tmOukA==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.10.4", - "lodash": "^4.17.19", - "to-fast-properties": "^2.0.0" - } - } + "@babel/helper-remap-async-to-generator": "^7.12.1" } }, "@babel/plugin-transform-block-scoped-functions": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.10.4.tgz", - "integrity": "sha512-WzXDarQXYYfjaV1szJvN3AD7rZgZzC1JtjJZ8dMHUyiK8mxPRahynp14zzNjU3VkPqPsO38CzxiWO1c9ARZ8JA==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.1.tgz", + "integrity": "sha512-5OpxfuYnSgPalRpo8EWGPzIYf0lHBWORCkj5M0oLBwHdlux9Ri36QqGW3/LR13RSVOAoUUMzoPI/jpE4ABcHoA==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4" } }, "@babel/plugin-transform-block-scoping": { - "version": "7.11.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.11.1.tgz", - "integrity": "sha512-00dYeDE0EVEHuuM+26+0w/SCL0BH2Qy7LwHuI4Hi4MH5gkC8/AqMN5uWFJIsoXZrAphiMm1iXzBw6L2T+eA0ew==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.11.tgz", + "integrity": "sha512-atR1Rxc3hM+VPg/NvNvfYw0npQEAcHuJ+MGZnFn6h3bo+1U3BWXMdFMlvVRApBTWKQMX7SOwRJZA5FBF/JQbvA==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4" } }, "@babel/plugin-transform-classes": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.10.4.tgz", - "integrity": "sha512-2oZ9qLjt161dn1ZE0Ms66xBncQH4In8Sqw1YWgBUZuGVJJS5c0OFZXL6dP2MRHrkU/eKhWg8CzFJhRQl50rQxA==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.12.1.tgz", + "integrity": "sha512-/74xkA7bVdzQTBeSUhLLJgYIcxw/dpEpCdRDiHgPJ3Mv6uC11UhjpOhl72CgqbBCmt1qtssCyB2xnJm1+PFjog==", "dev": true, "requires": { "@babel/helper-annotate-as-pure": "^7.10.4", @@ -1961,146 +797,60 @@ "@babel/helper-function-name": "^7.10.4", "@babel/helper-optimise-call-expression": "^7.10.4", "@babel/helper-plugin-utils": "^7.10.4", - "@babel/helper-replace-supers": "^7.10.4", + "@babel/helper-replace-supers": "^7.12.1", "@babel/helper-split-export-declaration": "^7.10.4", "globals": "^11.1.0" }, "dependencies": { - "@babel/code-frame": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", - "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", - "dev": true, - "requires": { - "@babel/highlight": "^7.10.4" - } - }, - "@babel/helper-annotate-as-pure": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.4.tgz", - "integrity": "sha512-XQlqKQP4vXFB7BN8fEEerrmYvHp3fK/rBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z/OnId1jpJdNAZ3BFQjWG68rcA==", - "dev": true, - "requires": { - "@babel/types": "^7.10.4" - } - }, - "@babel/helper-function-name": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz", - "integrity": "sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==", - "dev": true, - "requires": { - "@babel/helper-get-function-arity": "^7.10.4", - "@babel/template": "^7.10.4", - "@babel/types": "^7.10.4" - } - }, - "@babel/helper-get-function-arity": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz", - "integrity": "sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==", - "dev": true, - "requires": { - "@babel/types": "^7.10.4" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz", - "integrity": "sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg==", - "dev": true, - "requires": { - "@babel/types": "^7.11.0" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", - "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", + "globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", "dev": true - }, - "@babel/highlight": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz", - "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.10.4", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/parser": { - "version": "7.11.3", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.11.3.tgz", - "integrity": "sha512-REo8xv7+sDxkKvoxEywIdsNFiZLybwdI7hcT5uEPyQrSMB4YQ973BfC9OOrD/81MaIjh6UxdulIQXkjmiH3PcA==", - "dev": true - }, - "@babel/template": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.10.4.tgz", - "integrity": "sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.10.4", - "@babel/parser": "^7.10.4", - "@babel/types": "^7.10.4" - } - }, - "@babel/types": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.11.0.tgz", - "integrity": "sha512-O53yME4ZZI0jO1EVGtF1ePGl0LHirG4P1ibcD80XyzZcKhcMFeCXmh4Xb1ifGBIV233Qg12x4rBfQgA+tmOukA==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.10.4", - "lodash": "^4.17.19", - "to-fast-properties": "^2.0.0" - } } } }, "@babel/plugin-transform-computed-properties": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.10.4.tgz", - "integrity": "sha512-JFwVDXcP/hM/TbyzGq3l/XWGut7p46Z3QvqFMXTfk6/09m7xZHJUN9xHfsv7vqqD4YnfI5ueYdSJtXqqBLyjBw==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.12.1.tgz", + "integrity": "sha512-vVUOYpPWB7BkgUWPo4C44mUQHpTZXakEqFjbv8rQMg7TC6S6ZhGZ3otQcRH6u7+adSlE5i0sp63eMC/XGffrzg==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4" } }, "@babel/plugin-transform-destructuring": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.10.4.tgz", - "integrity": "sha512-+WmfvyfsyF603iPa6825mq6Qrb7uLjTOsa3XOFzlYcYDHSS4QmpOWOL0NNBY5qMbvrcf3tq0Cw+v4lxswOBpgA==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.12.1.tgz", + "integrity": "sha512-fRMYFKuzi/rSiYb2uRLiUENJOKq4Gnl+6qOv5f8z0TZXg3llUwUhsNNwrwaT/6dUhJTzNpBr+CUvEWBtfNY1cw==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4" } }, "@babel/plugin-transform-dotall-regex": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.10.4.tgz", - "integrity": "sha512-ZEAVvUTCMlMFAbASYSVQoxIbHm2OkG2MseW6bV2JjIygOjdVv8tuxrCTzj1+Rynh7ODb8GivUy7dzEXzEhuPaA==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.1.tgz", + "integrity": "sha512-B2pXeRKoLszfEW7J4Hg9LoFaWEbr/kzo3teWHmtFCszjRNa/b40f9mfeqZsIDLLt/FjwQ6pz/Gdlwy85xNckBA==", "dev": true, "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.10.4", + "@babel/helper-create-regexp-features-plugin": "^7.12.1", "@babel/helper-plugin-utils": "^7.10.4" } }, "@babel/plugin-transform-duplicate-keys": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.10.4.tgz", - "integrity": "sha512-GL0/fJnmgMclHiBTTWXNlYjYsA7rDrtsazHG6mglaGSTh0KsrW04qml+Bbz9FL0LcJIRwBWL5ZqlNHKTkU3xAA==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.1.tgz", + "integrity": "sha512-iRght0T0HztAb/CazveUpUQrZY+aGKKaWXMJ4uf9YJtqxSUe09j3wteztCUDRHs+SRAL7yMuFqUsLoAKKzgXjw==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4" } }, "@babel/plugin-transform-exponentiation-operator": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.10.4.tgz", - "integrity": "sha512-S5HgLVgkBcRdyQAHbKj+7KyuWx8C6t5oETmUuwz1pt3WTWJhsUV0WIIXuVvfXMxl/QQyHKlSCNNtaIamG8fysw==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.1.tgz", + "integrity": "sha512-7tqwy2bv48q+c1EHbXK0Zx3KXd2RVQp6OC7PbwFNt/dPTAV3Lu5sWtWuAj8owr5wqtWnqHfl2/mJlUmqkChKug==", "dev": true, "requires": { "@babel/helper-builder-binary-assignment-operator-visitor": "^7.10.4", @@ -2118,361 +868,216 @@ } }, "@babel/plugin-transform-for-of": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.10.4.tgz", - "integrity": "sha512-ItdQfAzu9AlEqmusA/65TqJ79eRcgGmpPPFvBnGILXZH975G0LNjP1yjHvGgfuCxqrPPueXOPe+FsvxmxKiHHQ==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.12.1.tgz", + "integrity": "sha512-Zaeq10naAsuHo7heQvyV0ptj4dlZJwZgNAtBYBnu5nNKJoW62m0zKcIEyVECrUKErkUkg6ajMy4ZfnVZciSBhg==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4" } }, "@babel/plugin-transform-function-name": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.10.4.tgz", - "integrity": "sha512-OcDCq2y5+E0dVD5MagT5X+yTRbcvFjDI2ZVAottGH6tzqjx/LKpgkUepu3hp/u4tZBzxxpNGwLsAvGBvQ2mJzg==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.1.tgz", + "integrity": "sha512-JF3UgJUILoFrFMEnOJLJkRHSk6LUSXLmEFsA23aR2O5CSLUxbeUX1IZ1YQ7Sn0aXb601Ncwjx73a+FVqgcljVw==", "dev": true, "requires": { "@babel/helper-function-name": "^7.10.4", "@babel/helper-plugin-utils": "^7.10.4" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", - "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", - "dev": true, - "requires": { - "@babel/highlight": "^7.10.4" - } - }, - "@babel/helper-function-name": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz", - "integrity": "sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==", - "dev": true, - "requires": { - "@babel/helper-get-function-arity": "^7.10.4", - "@babel/template": "^7.10.4", - "@babel/types": "^7.10.4" - } - }, - "@babel/helper-get-function-arity": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz", - "integrity": "sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==", - "dev": true, - "requires": { - "@babel/types": "^7.10.4" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", - "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", - "dev": true - }, - "@babel/highlight": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz", - "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.10.4", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/parser": { - "version": "7.11.3", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.11.3.tgz", - "integrity": "sha512-REo8xv7+sDxkKvoxEywIdsNFiZLybwdI7hcT5uEPyQrSMB4YQ973BfC9OOrD/81MaIjh6UxdulIQXkjmiH3PcA==", - "dev": true - }, - "@babel/template": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.10.4.tgz", - "integrity": "sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.10.4", - "@babel/parser": "^7.10.4", - "@babel/types": "^7.10.4" - } - }, - "@babel/types": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.11.0.tgz", - "integrity": "sha512-O53yME4ZZI0jO1EVGtF1ePGl0LHirG4P1ibcD80XyzZcKhcMFeCXmh4Xb1ifGBIV233Qg12x4rBfQgA+tmOukA==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.10.4", - "lodash": "^4.17.19", - "to-fast-properties": "^2.0.0" - } - } } }, "@babel/plugin-transform-literals": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.10.4.tgz", - "integrity": "sha512-Xd/dFSTEVuUWnyZiMu76/InZxLTYilOSr1UlHV+p115Z/Le2Fi1KXkJUYz0b42DfndostYlPub3m8ZTQlMaiqQ==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.1.tgz", + "integrity": "sha512-+PxVGA+2Ag6uGgL0A5f+9rklOnnMccwEBzwYFL3EUaKuiyVnUipyXncFcfjSkbimLrODoqki1U9XxZzTvfN7IQ==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4" } }, "@babel/plugin-transform-member-expression-literals": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.10.4.tgz", - "integrity": "sha512-0bFOvPyAoTBhtcJLr9VcwZqKmSjFml1iVxvPL0ReomGU53CX53HsM4h2SzckNdkQcHox1bpAqzxBI1Y09LlBSw==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.1.tgz", + "integrity": "sha512-1sxePl6z9ad0gFMB9KqmYofk34flq62aqMt9NqliS/7hPEpURUCMbyHXrMPlo282iY7nAvUB1aQd5mg79UD9Jg==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4" } }, "@babel/plugin-transform-modules-amd": { - "version": "7.10.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.10.5.tgz", - "integrity": "sha512-elm5uruNio7CTLFItVC/rIzKLfQ17+fX7EVz5W0TMgIHFo1zY0Ozzx+lgwhL4plzl8OzVn6Qasx5DeEFyoNiRw==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.12.1.tgz", + "integrity": "sha512-tDW8hMkzad5oDtzsB70HIQQRBiTKrhfgwC/KkJeGsaNFTdWhKNt/BiE8c5yj19XiGyrxpbkOfH87qkNg1YGlOQ==", "dev": true, "requires": { - "@babel/helper-module-transforms": "^7.10.5", + "@babel/helper-module-transforms": "^7.12.1", "@babel/helper-plugin-utils": "^7.10.4", "babel-plugin-dynamic-import-node": "^2.3.3" } }, "@babel/plugin-transform-modules-commonjs": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.10.4.tgz", - "integrity": "sha512-Xj7Uq5o80HDLlW64rVfDBhao6OX89HKUmb+9vWYaLXBZOma4gA6tw4Ni1O5qVDoZWUV0fxMYA0aYzOawz0l+1w==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.12.1.tgz", + "integrity": "sha512-dY789wq6l0uLY8py9c1B48V8mVL5gZh/+PQ5ZPrylPYsnAvnEMjqsUXkuoDVPeVK+0VyGar+D08107LzDQ6pag==", "dev": true, "requires": { - "@babel/helper-module-transforms": "^7.10.4", + "@babel/helper-module-transforms": "^7.12.1", "@babel/helper-plugin-utils": "^7.10.4", - "@babel/helper-simple-access": "^7.10.4", + "@babel/helper-simple-access": "^7.12.1", "babel-plugin-dynamic-import-node": "^2.3.3" } }, "@babel/plugin-transform-modules-systemjs": { - "version": "7.10.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.10.5.tgz", - "integrity": "sha512-f4RLO/OL14/FP1AEbcsWMzpbUz6tssRaeQg11RH1BP/XnPpRoVwgeYViMFacnkaw4k4wjRSjn3ip1Uw9TaXuMw==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.12.1.tgz", + "integrity": "sha512-Hn7cVvOavVh8yvW6fLwveFqSnd7rbQN3zJvoPNyNaQSvgfKmDBO9U1YL9+PCXGRlZD9tNdWTy5ACKqMuzyn32Q==", "dev": true, "requires": { "@babel/helper-hoist-variables": "^7.10.4", - "@babel/helper-module-transforms": "^7.10.5", + "@babel/helper-module-transforms": "^7.12.1", "@babel/helper-plugin-utils": "^7.10.4", + "@babel/helper-validator-identifier": "^7.10.4", "babel-plugin-dynamic-import-node": "^2.3.3" } }, "@babel/plugin-transform-modules-umd": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.10.4.tgz", - "integrity": "sha512-mohW5q3uAEt8T45YT7Qc5ws6mWgJAaL/8BfWD9Dodo1A3RKWli8wTS+WiQ/knF+tXlPirW/1/MqzzGfCExKECA==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.12.1.tgz", + "integrity": "sha512-aEIubCS0KHKM0zUos5fIoQm+AZUMt1ZvMpqz0/H5qAQ7vWylr9+PLYurT+Ic7ID/bKLd4q8hDovaG3Zch2uz5Q==", "dev": true, "requires": { - "@babel/helper-module-transforms": "^7.10.4", + "@babel/helper-module-transforms": "^7.12.1", "@babel/helper-plugin-utils": "^7.10.4" } }, "@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.10.4.tgz", - "integrity": "sha512-V6LuOnD31kTkxQPhKiVYzYC/Jgdq53irJC/xBSmqcNcqFGV+PER4l6rU5SH2Vl7bH9mLDHcc0+l9HUOe4RNGKA==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.1.tgz", + "integrity": "sha512-tB43uQ62RHcoDp9v2Nsf+dSM8sbNodbEicbQNA53zHz8pWUhsgHSJCGpt7daXxRydjb0KnfmB+ChXOv3oADp1Q==", "dev": true, "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.10.4" + "@babel/helper-create-regexp-features-plugin": "^7.12.1" } }, "@babel/plugin-transform-new-target": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.10.4.tgz", - "integrity": "sha512-YXwWUDAH/J6dlfwqlWsztI2Puz1NtUAubXhOPLQ5gjR/qmQ5U96DY4FQO8At33JN4XPBhrjB8I4eMmLROjjLjw==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.1.tgz", + "integrity": "sha512-+eW/VLcUL5L9IvJH7rT1sT0CzkdUTvPrXC2PXTn/7z7tXLBuKvezYbGdxD5WMRoyvyaujOq2fWoKl869heKjhw==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4" } }, "@babel/plugin-transform-object-super": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.10.4.tgz", - "integrity": "sha512-5iTw0JkdRdJvr7sY0vHqTpnruUpTea32JHmq/atIWqsnNussbRzjEDyWep8UNztt1B5IusBYg8Irb0bLbiEBCQ==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.1.tgz", + "integrity": "sha512-AvypiGJH9hsquNUn+RXVcBdeE3KHPZexWRdimhuV59cSoOt5kFBmqlByorAeUlGG2CJWd0U+4ZtNKga/TB0cAw==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4", - "@babel/helper-replace-supers": "^7.10.4" + "@babel/helper-replace-supers": "^7.12.1" } }, "@babel/plugin-transform-parameters": { - "version": "7.10.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.10.5.tgz", - "integrity": "sha512-xPHwUj5RdFV8l1wuYiu5S9fqWGM2DrYc24TMvUiRrPVm+SM3XeqU9BcokQX/kEUe+p2RBwy+yoiR1w/Blq6ubw==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.12.1.tgz", + "integrity": "sha512-xq9C5EQhdPK23ZeCdMxl8bbRnAgHFrw5EOC3KJUsSylZqdkCaFEXxGSBuTSObOpiiHHNyb82es8M1QYgfQGfNg==", "dev": true, "requires": { - "@babel/helper-get-function-arity": "^7.10.4", "@babel/helper-plugin-utils": "^7.10.4" - }, - "dependencies": { - "@babel/helper-get-function-arity": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz", - "integrity": "sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==", - "dev": true, - "requires": { - "@babel/types": "^7.10.4" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", - "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", - "dev": true - }, - "@babel/types": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.11.0.tgz", - "integrity": "sha512-O53yME4ZZI0jO1EVGtF1ePGl0LHirG4P1ibcD80XyzZcKhcMFeCXmh4Xb1ifGBIV233Qg12x4rBfQgA+tmOukA==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.10.4", - "lodash": "^4.17.19", - "to-fast-properties": "^2.0.0" - } - } } }, "@babel/plugin-transform-property-literals": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.10.4.tgz", - "integrity": "sha512-ofsAcKiUxQ8TY4sScgsGeR2vJIsfrzqvFb9GvJ5UdXDzl+MyYCaBj/FGzXuv7qE0aJcjWMILny1epqelnFlz8g==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.1.tgz", + "integrity": "sha512-6MTCR/mZ1MQS+AwZLplX4cEySjCpnIF26ToWo942nqn8hXSm7McaHQNeGx/pt7suI1TWOWMfa/NgBhiqSnX0cQ==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4" } }, "@babel/plugin-transform-react-constant-elements": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.10.4.tgz", - "integrity": "sha512-cYmQBW1pXrqBte1raMkAulXmi7rjg3VI6ZLg9QIic8Hq7BtYXaWuZSxsr2siOMI6SWwpxjWfnwhTUrd7JlAV7g==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.12.1.tgz", + "integrity": "sha512-KOHd0tIRLoER+J+8f9DblZDa1fLGPwaaN1DI1TVHuQFOpjHV22C3CUB3obeC4fexHY9nx+fH0hQNvLFFfA1mxA==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4" } }, "@babel/plugin-transform-react-display-name": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.10.4.tgz", - "integrity": "sha512-Zd4X54Mu9SBfPGnEcaGcOrVAYOtjT2on8QZkLKEq1S/tHexG39d9XXGZv19VfRrDjPJzFmPfTAqOQS1pfFOujw==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.12.1.tgz", + "integrity": "sha512-cAzB+UzBIrekfYxyLlFqf/OagTvHLcVBb5vpouzkYkBclRPraiygVnafvAoipErZLI8ANv8Ecn6E/m5qPXD26w==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4" } }, "@babel/plugin-transform-react-jsx": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.10.4.tgz", - "integrity": "sha512-L+MfRhWjX0eI7Js093MM6MacKU4M6dnCRa/QPDwYMxjljzSCzzlzKzj9Pk4P3OtrPcxr2N3znR419nr3Xw+65A==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.12.11.tgz", + "integrity": "sha512-5nWOw6mTylaFU72BdZfa0dP1HsGdY3IMExpxn8LBE8dNmkQjB+W+sR+JwIdtbzkPvVuFviT3zyNbSUkuVTVxbw==", "dev": true, "requires": { "@babel/helper-builder-react-jsx": "^7.10.4", - "@babel/helper-builder-react-jsx-experimental": "^7.10.4", + "@babel/helper-builder-react-jsx-experimental": "^7.12.11", "@babel/helper-plugin-utils": "^7.10.4", - "@babel/plugin-syntax-jsx": "^7.10.4" + "@babel/plugin-syntax-jsx": "^7.12.1" } }, "@babel/plugin-transform-react-jsx-development": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.10.4.tgz", - "integrity": "sha512-RM3ZAd1sU1iQ7rI2dhrZRZGv0aqzNQMbkIUCS1txYpi9wHQ2ZHNjo5TwX+UD6pvFW4AbWqLVYvKy5qJSAyRGjQ==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.12.11.tgz", + "integrity": "sha512-5MvsGschXeXJsbzQGR/BH89ATMzCsM7rx95n+R7/852cGoK2JgMbacDw/A9Pmrfex4tArdMab0L5SBV4SB/Nxg==", "dev": true, "requires": { - "@babel/helper-builder-react-jsx-experimental": "^7.10.4", + "@babel/helper-builder-react-jsx-experimental": "^7.12.11", "@babel/helper-plugin-utils": "^7.10.4", - "@babel/plugin-syntax-jsx": "^7.10.4" + "@babel/plugin-syntax-jsx": "^7.12.1" } }, "@babel/plugin-transform-react-jsx-self": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.10.4.tgz", - "integrity": "sha512-yOvxY2pDiVJi0axdTWHSMi5T0DILN+H+SaeJeACHKjQLezEzhLx9nEF9xgpBLPtkZsks9cnb5P9iBEi21En3gg==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.12.1.tgz", + "integrity": "sha512-FbpL0ieNWiiBB5tCldX17EtXgmzeEZjFrix72rQYeq9X6nUK38HCaxexzVQrZWXanxKJPKVVIU37gFjEQYkPkA==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.10.4", - "@babel/plugin-syntax-jsx": "^7.10.4" + "@babel/helper-plugin-utils": "^7.10.4" } }, "@babel/plugin-transform-react-jsx-source": { - "version": "7.10.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.10.5.tgz", - "integrity": "sha512-wTeqHVkN1lfPLubRiZH3o73f4rfon42HpgxUSs86Nc+8QIcm/B9s8NNVXu/gwGcOyd7yDib9ikxoDLxJP0UiDA==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.12.1.tgz", + "integrity": "sha512-keQ5kBfjJNRc6zZN1/nVHCd6LLIHq4aUKcVnvE/2l+ZZROSbqoiGFRtT5t3Is89XJxBQaP7NLZX2jgGHdZvvFQ==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.10.4", - "@babel/plugin-syntax-jsx": "^7.10.4" + "@babel/helper-plugin-utils": "^7.10.4" } }, "@babel/plugin-transform-react-pure-annotations": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.10.4.tgz", - "integrity": "sha512-+njZkqcOuS8RaPakrnR9KvxjoG1ASJWpoIv/doyWngId88JoFlPlISenGXjrVacZUIALGUr6eodRs1vmPnF23A==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.12.1.tgz", + "integrity": "sha512-RqeaHiwZtphSIUZ5I85PEH19LOSzxfuEazoY7/pWASCAIBuATQzpSVD+eT6MebeeZT2F4eSL0u4vw6n4Nm0Mjg==", "dev": true, "requires": { "@babel/helper-annotate-as-pure": "^7.10.4", "@babel/helper-plugin-utils": "^7.10.4" - }, - "dependencies": { - "@babel/helper-annotate-as-pure": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.4.tgz", - "integrity": "sha512-XQlqKQP4vXFB7BN8fEEerrmYvHp3fK/rBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z/OnId1jpJdNAZ3BFQjWG68rcA==", - "dev": true, - "requires": { - "@babel/types": "^7.10.4" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", - "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", - "dev": true - }, - "@babel/types": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.11.0.tgz", - "integrity": "sha512-O53yME4ZZI0jO1EVGtF1ePGl0LHirG4P1ibcD80XyzZcKhcMFeCXmh4Xb1ifGBIV233Qg12x4rBfQgA+tmOukA==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.10.4", - "lodash": "^4.17.19", - "to-fast-properties": "^2.0.0" - } - } } }, "@babel/plugin-transform-regenerator": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.10.4.tgz", - "integrity": "sha512-3thAHwtor39A7C04XucbMg17RcZ3Qppfxr22wYzZNcVIkPHfpM9J0SO8zuCV6SZa265kxBJSrfKTvDCYqBFXGw==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.12.1.tgz", + "integrity": "sha512-gYrHqs5itw6i4PflFX3OdBPMQdPbF4bj2REIUxlMRUFk0/ZOAIpDFuViuxPjUL7YC8UPnf+XG7/utJvqXdPKng==", "dev": true, "requires": { "regenerator-transform": "^0.14.2" - }, - "dependencies": { - "regenerator-transform": { - "version": "0.14.5", - "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.5.tgz", - "integrity": "sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==", - "dev": true, - "requires": { - "@babel/runtime": "^7.8.4" - } - } } }, "@babel/plugin-transform-reserved-words": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.10.4.tgz", - "integrity": "sha512-hGsw1O6Rew1fkFbDImZIEqA8GoidwTAilwCyWqLBM9f+e/u/sQMQu7uX6dyokfOayRuuVfKOW4O7HvaBWM+JlQ==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.1.tgz", + "integrity": "sha512-pOnUfhyPKvZpVyBHhSBoX8vfA09b7r00Pmm1sH+29ae2hMTKVmSp4Ztsr8KBKjLjx17H0eJqaRC3bR2iThM54A==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4" @@ -2499,136 +1104,107 @@ } }, "@babel/plugin-transform-shorthand-properties": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.10.4.tgz", - "integrity": "sha512-AC2K/t7o07KeTIxMoHneyX90v3zkm5cjHJEokrPEAGEy3UCp8sLKfnfOIGdZ194fyN4wfX/zZUWT9trJZ0qc+Q==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.1.tgz", + "integrity": "sha512-GFZS3c/MhX1OusqB1MZ1ct2xRzX5ppQh2JU1h2Pnfk88HtFTM+TWQqJNfwkmxtPQtb/s1tk87oENfXJlx7rSDw==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4" } }, "@babel/plugin-transform-spread": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.11.0.tgz", - "integrity": "sha512-UwQYGOqIdQJe4aWNyS7noqAnN2VbaczPLiEtln+zPowRNlD+79w3oi2TWfYe0eZgd+gjZCbsydN7lzWysDt+gw==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.12.1.tgz", + "integrity": "sha512-vuLp8CP0BE18zVYjsEBZ5xoCecMK6LBMMxYzJnh01rxQRvhNhH1csMMmBfNo5tGpGO+NhdSNW2mzIvBu3K1fng==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4", - "@babel/helper-skip-transparent-expression-wrappers": "^7.11.0" + "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1" } }, "@babel/plugin-transform-sticky-regex": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.10.4.tgz", - "integrity": "sha512-Ddy3QZfIbEV0VYcVtFDCjeE4xwVTJWTmUtorAJkn6u/92Z/nWJNV+mILyqHKrUxXYKA2EoCilgoPePymKL4DvQ==", + "version": "7.12.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.7.tgz", + "integrity": "sha512-VEiqZL5N/QvDbdjfYQBhruN0HYjSPjC4XkeqW4ny/jNtH9gcbgaqBIXYEZCNnESMAGs0/K/R7oFGMhOyu/eIxg==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.10.4", - "@babel/helper-regex": "^7.10.4" + "@babel/helper-plugin-utils": "^7.10.4" } }, "@babel/plugin-transform-template-literals": { - "version": "7.10.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.10.5.tgz", - "integrity": "sha512-V/lnPGIb+KT12OQikDvgSuesRX14ck5FfJXt6+tXhdkJ+Vsd0lDCVtF6jcB4rNClYFzaB2jusZ+lNISDk2mMMw==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.12.1.tgz", + "integrity": "sha512-b4Zx3KHi+taXB1dVRBhVJtEPi9h1THCeKmae2qP0YdUHIFhVjtpqqNfxeVAa1xeHVhAy4SbHxEwx5cltAu5apw==", "dev": true, "requires": { - "@babel/helper-annotate-as-pure": "^7.10.4", "@babel/helper-plugin-utils": "^7.10.4" - }, - "dependencies": { - "@babel/helper-annotate-as-pure": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.4.tgz", - "integrity": "sha512-XQlqKQP4vXFB7BN8fEEerrmYvHp3fK/rBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z/OnId1jpJdNAZ3BFQjWG68rcA==", - "dev": true, - "requires": { - "@babel/types": "^7.10.4" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", - "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", - "dev": true - }, - "@babel/types": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.11.0.tgz", - "integrity": "sha512-O53yME4ZZI0jO1EVGtF1ePGl0LHirG4P1ibcD80XyzZcKhcMFeCXmh4Xb1ifGBIV233Qg12x4rBfQgA+tmOukA==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.10.4", - "lodash": "^4.17.19", - "to-fast-properties": "^2.0.0" - } - } } }, "@babel/plugin-transform-typeof-symbol": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.10.4.tgz", - "integrity": "sha512-QqNgYwuuW0y0H+kUE/GWSR45t/ccRhe14Fs/4ZRouNNQsyd4o3PG4OtHiIrepbM2WKUBDAXKCAK/Lk4VhzTaGA==", + "version": "7.12.10", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.10.tgz", + "integrity": "sha512-JQ6H8Rnsogh//ijxspCjc21YPd3VLVoYtAwv3zQmqAt8YGYUtdo5usNhdl4b9/Vir2kPFZl6n1h0PfUz4hJhaA==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4" } }, "@babel/plugin-transform-typescript": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.11.0.tgz", - "integrity": "sha512-edJsNzTtvb3MaXQwj8403B7mZoGu9ElDJQZOKjGUnvilquxBA3IQoEIOvkX/1O8xfAsnHS/oQhe2w/IXrr+w0w==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.12.1.tgz", + "integrity": "sha512-VrsBByqAIntM+EYMqSm59SiMEf7qkmI9dqMt6RbD/wlwueWmYcI0FFK5Fj47pP6DRZm+3teXjosKlwcZJ5lIMw==", "dev": true, "requires": { - "@babel/helper-create-class-features-plugin": "^7.10.5", + "@babel/helper-create-class-features-plugin": "^7.12.1", "@babel/helper-plugin-utils": "^7.10.4", - "@babel/plugin-syntax-typescript": "^7.10.4" + "@babel/plugin-syntax-typescript": "^7.12.1" } }, "@babel/plugin-transform-unicode-escapes": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.10.4.tgz", - "integrity": "sha512-y5XJ9waMti2J+e7ij20e+aH+fho7Wb7W8rNuu72aKRwCHFqQdhkdU2lo3uZ9tQuboEJcUFayXdARhcxLQ3+6Fg==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.1.tgz", + "integrity": "sha512-I8gNHJLIc7GdApm7wkVnStWssPNbSRMPtgHdmH3sRM1zopz09UWPS4x5V4n1yz/MIWTVnJ9sp6IkuXdWM4w+2Q==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4" } }, "@babel/plugin-transform-unicode-regex": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.10.4.tgz", - "integrity": "sha512-wNfsc4s8N2qnIwpO/WP2ZiSyjfpTamT2C9V9FDH/Ljub9zw6P3SjkXcFmc0RQUt96k2fmIvtla2MMjgTwIAC+A==", + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.1.tgz", + "integrity": "sha512-SqH4ClNngh/zGwHZOOQMTD+e8FGWexILV+ePMyiDJttAWRh5dhDL8rcl5lSgU3Huiq6Zn6pWTMvdPAb21Dwdyg==", "dev": true, "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.10.4", + "@babel/helper-create-regexp-features-plugin": "^7.12.1", "@babel/helper-plugin-utils": "^7.10.4" } }, "@babel/preset-env": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.11.0.tgz", - "integrity": "sha512-2u1/k7rG/gTh02dylX2kL3S0IJNF+J6bfDSp4DI2Ma8QN6Y9x9pmAax59fsCk6QUQG0yqH47yJWA+u1I1LccAg==", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.12.11.tgz", + "integrity": "sha512-j8Tb+KKIXKYlDBQyIOy4BLxzv1NUOwlHfZ74rvW+Z0Gp4/cI2IMDPBWAgWceGcE7aep9oL/0K9mlzlMGxA8yNw==", "dev": true, "requires": { - "@babel/compat-data": "^7.11.0", - "@babel/helper-compilation-targets": "^7.10.4", - "@babel/helper-module-imports": "^7.10.4", + "@babel/compat-data": "^7.12.7", + "@babel/helper-compilation-targets": "^7.12.5", + "@babel/helper-module-imports": "^7.12.5", "@babel/helper-plugin-utils": "^7.10.4", - "@babel/plugin-proposal-async-generator-functions": "^7.10.4", - "@babel/plugin-proposal-class-properties": "^7.10.4", - "@babel/plugin-proposal-dynamic-import": "^7.10.4", - "@babel/plugin-proposal-export-namespace-from": "^7.10.4", - "@babel/plugin-proposal-json-strings": "^7.10.4", - "@babel/plugin-proposal-logical-assignment-operators": "^7.11.0", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4", - "@babel/plugin-proposal-numeric-separator": "^7.10.4", - "@babel/plugin-proposal-object-rest-spread": "^7.11.0", - "@babel/plugin-proposal-optional-catch-binding": "^7.10.4", - "@babel/plugin-proposal-optional-chaining": "^7.11.0", - "@babel/plugin-proposal-private-methods": "^7.10.4", - "@babel/plugin-proposal-unicode-property-regex": "^7.10.4", + "@babel/helper-validator-option": "^7.12.11", + "@babel/plugin-proposal-async-generator-functions": "^7.12.1", + "@babel/plugin-proposal-class-properties": "^7.12.1", + "@babel/plugin-proposal-dynamic-import": "^7.12.1", + "@babel/plugin-proposal-export-namespace-from": "^7.12.1", + "@babel/plugin-proposal-json-strings": "^7.12.1", + "@babel/plugin-proposal-logical-assignment-operators": "^7.12.1", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1", + "@babel/plugin-proposal-numeric-separator": "^7.12.7", + "@babel/plugin-proposal-object-rest-spread": "^7.12.1", + "@babel/plugin-proposal-optional-catch-binding": "^7.12.1", + "@babel/plugin-proposal-optional-chaining": "^7.12.7", + "@babel/plugin-proposal-private-methods": "^7.12.1", + "@babel/plugin-proposal-unicode-property-regex": "^7.12.1", "@babel/plugin-syntax-async-generators": "^7.8.0", - "@babel/plugin-syntax-class-properties": "^7.10.4", + "@babel/plugin-syntax-class-properties": "^7.12.1", "@babel/plugin-syntax-dynamic-import": "^7.8.0", "@babel/plugin-syntax-export-namespace-from": "^7.8.3", "@babel/plugin-syntax-json-strings": "^7.8.0", @@ -2638,104 +1214,45 @@ "@babel/plugin-syntax-object-rest-spread": "^7.8.0", "@babel/plugin-syntax-optional-catch-binding": "^7.8.0", "@babel/plugin-syntax-optional-chaining": "^7.8.0", - "@babel/plugin-syntax-top-level-await": "^7.10.4", - "@babel/plugin-transform-arrow-functions": "^7.10.4", - "@babel/plugin-transform-async-to-generator": "^7.10.4", - "@babel/plugin-transform-block-scoped-functions": "^7.10.4", - "@babel/plugin-transform-block-scoping": "^7.10.4", - "@babel/plugin-transform-classes": "^7.10.4", - "@babel/plugin-transform-computed-properties": "^7.10.4", - "@babel/plugin-transform-destructuring": "^7.10.4", - "@babel/plugin-transform-dotall-regex": "^7.10.4", - "@babel/plugin-transform-duplicate-keys": "^7.10.4", - "@babel/plugin-transform-exponentiation-operator": "^7.10.4", - "@babel/plugin-transform-for-of": "^7.10.4", - "@babel/plugin-transform-function-name": "^7.10.4", - "@babel/plugin-transform-literals": "^7.10.4", - "@babel/plugin-transform-member-expression-literals": "^7.10.4", - "@babel/plugin-transform-modules-amd": "^7.10.4", - "@babel/plugin-transform-modules-commonjs": "^7.10.4", - "@babel/plugin-transform-modules-systemjs": "^7.10.4", - "@babel/plugin-transform-modules-umd": "^7.10.4", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.10.4", - "@babel/plugin-transform-new-target": "^7.10.4", - "@babel/plugin-transform-object-super": "^7.10.4", - "@babel/plugin-transform-parameters": "^7.10.4", - "@babel/plugin-transform-property-literals": "^7.10.4", - "@babel/plugin-transform-regenerator": "^7.10.4", - "@babel/plugin-transform-reserved-words": "^7.10.4", - "@babel/plugin-transform-shorthand-properties": "^7.10.4", - "@babel/plugin-transform-spread": "^7.11.0", - "@babel/plugin-transform-sticky-regex": "^7.10.4", - "@babel/plugin-transform-template-literals": "^7.10.4", - "@babel/plugin-transform-typeof-symbol": "^7.10.4", - "@babel/plugin-transform-unicode-escapes": "^7.10.4", - "@babel/plugin-transform-unicode-regex": "^7.10.4", + "@babel/plugin-syntax-top-level-await": "^7.12.1", + "@babel/plugin-transform-arrow-functions": "^7.12.1", + "@babel/plugin-transform-async-to-generator": "^7.12.1", + "@babel/plugin-transform-block-scoped-functions": "^7.12.1", + "@babel/plugin-transform-block-scoping": "^7.12.11", + "@babel/plugin-transform-classes": "^7.12.1", + "@babel/plugin-transform-computed-properties": "^7.12.1", + "@babel/plugin-transform-destructuring": "^7.12.1", + "@babel/plugin-transform-dotall-regex": "^7.12.1", + "@babel/plugin-transform-duplicate-keys": "^7.12.1", + "@babel/plugin-transform-exponentiation-operator": "^7.12.1", + "@babel/plugin-transform-for-of": "^7.12.1", + "@babel/plugin-transform-function-name": "^7.12.1", + "@babel/plugin-transform-literals": "^7.12.1", + "@babel/plugin-transform-member-expression-literals": "^7.12.1", + "@babel/plugin-transform-modules-amd": "^7.12.1", + "@babel/plugin-transform-modules-commonjs": "^7.12.1", + "@babel/plugin-transform-modules-systemjs": "^7.12.1", + "@babel/plugin-transform-modules-umd": "^7.12.1", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.12.1", + "@babel/plugin-transform-new-target": "^7.12.1", + "@babel/plugin-transform-object-super": "^7.12.1", + "@babel/plugin-transform-parameters": "^7.12.1", + "@babel/plugin-transform-property-literals": "^7.12.1", + "@babel/plugin-transform-regenerator": "^7.12.1", + "@babel/plugin-transform-reserved-words": "^7.12.1", + "@babel/plugin-transform-shorthand-properties": "^7.12.1", + "@babel/plugin-transform-spread": "^7.12.1", + "@babel/plugin-transform-sticky-regex": "^7.12.7", + "@babel/plugin-transform-template-literals": "^7.12.1", + "@babel/plugin-transform-typeof-symbol": "^7.12.10", + "@babel/plugin-transform-unicode-escapes": "^7.12.1", + "@babel/plugin-transform-unicode-regex": "^7.12.1", "@babel/preset-modules": "^0.1.3", - "@babel/types": "^7.11.0", - "browserslist": "^4.12.0", - "core-js-compat": "^3.6.2", - "invariant": "^2.2.2", - "levenary": "^1.1.1", + "@babel/types": "^7.12.11", + "core-js-compat": "^3.8.0", "semver": "^5.5.0" }, "dependencies": { - "@babel/helper-module-imports": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.10.4.tgz", - "integrity": "sha512-nEQJHqYavI217oD9+s5MUBzk6x1IlvoS9WTPfgG43CbMEeStE0v+r+TucWdx8KFGowPGvyOkDT9+7DHedIDnVw==", - "dev": true, - "requires": { - "@babel/types": "^7.10.4" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", - "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", - "dev": true - }, - "@babel/types": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.11.0.tgz", - "integrity": "sha512-O53yME4ZZI0jO1EVGtF1ePGl0LHirG4P1ibcD80XyzZcKhcMFeCXmh4Xb1ifGBIV233Qg12x4rBfQgA+tmOukA==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.10.4", - "lodash": "^4.17.19", - "to-fast-properties": "^2.0.0" - } - }, - "browserslist": { - "version": "4.14.0", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.14.0.tgz", - "integrity": "sha512-pUsXKAF2lVwhmtpeA3LJrZ76jXuusrNyhduuQs7CDFf9foT4Y38aQOserd2lMe5DSSrjf3fx34oHwryuvxAUgQ==", - "dev": true, - "requires": { - "caniuse-lite": "^1.0.30001111", - "electron-to-chromium": "^1.3.523", - "escalade": "^3.0.2", - "node-releases": "^1.1.60" - } - }, - "caniuse-lite": { - "version": "1.0.30001114", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001114.tgz", - "integrity": "sha512-ml/zTsfNBM+T1+mjglWRPgVsu2L76GAaADKX5f4t0pbhttEp0WMawJsHDYlFkVZkoA+89uvBRrVrEE4oqenzXQ==", - "dev": true - }, - "electron-to-chromium": { - "version": "1.3.533", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.533.tgz", - "integrity": "sha512-YqAL+NXOzjBnpY+dcOKDlZybJDCOzgsq4koW3fvyty/ldTmsb4QazZpOWmVvZ2m0t5jbBf7L0lIGU3BUipwG+A==", - "dev": true - }, - "node-releases": { - "version": "1.1.60", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.60.tgz", - "integrity": "sha512-gsO4vjEdQaTusZAEebUWp2a5d7dF5DYoIpDG7WySnk7BuZDW+GPpHXoXXuYawRBr/9t5q54tirPz79kFIWg4dA==", - "dev": true - }, "semver": { "version": "5.7.1", "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", @@ -2745,9 +1262,9 @@ } }, "@babel/preset-modules": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.3.tgz", - "integrity": "sha512-Ra3JXOHBq2xd56xSF7lMKXdjBn3T772Y1Wet3yWnkDly9zHvJki029tAFzvAAK5cf4YV3yoxuP61crYRol6SVg==", + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.4.tgz", + "integrity": "sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0", @@ -2758,18 +1275,16 @@ } }, "@babel/preset-react": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.10.4.tgz", - "integrity": "sha512-BrHp4TgOIy4M19JAfO1LhycVXOPWdDbTRep7eVyatf174Hff+6Uk53sDyajqZPu8W1qXRBiYOfIamek6jA7YVw==", + "version": "7.12.10", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.12.10.tgz", + "integrity": "sha512-vtQNjaHRl4DUpp+t+g4wvTHsLQuye+n0H/wsXIZRn69oz/fvNC7gQ4IK73zGJBaxvHoxElDvnYCthMcT7uzFoQ==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.10.4", - "@babel/plugin-transform-react-display-name": "^7.10.4", - "@babel/plugin-transform-react-jsx": "^7.10.4", - "@babel/plugin-transform-react-jsx-development": "^7.10.4", - "@babel/plugin-transform-react-jsx-self": "^7.10.4", - "@babel/plugin-transform-react-jsx-source": "^7.10.4", - "@babel/plugin-transform-react-pure-annotations": "^7.10.4" + "@babel/plugin-transform-react-display-name": "^7.12.1", + "@babel/plugin-transform-react-jsx": "^7.12.10", + "@babel/plugin-transform-react-jsx-development": "^7.12.7", + "@babel/plugin-transform-react-pure-annotations": "^7.12.1" } }, "@babel/preset-typescript": { @@ -2783,17 +1298,17 @@ } }, "@babel/runtime": { - "version": "7.10.2", - "resolved": "https://registry.npm.taobao.org/@babel/runtime/download/@babel/runtime-7.10.2.tgz?cache=0&sync_timestamp=1590868599772&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fruntime%2Fdownload%2F%40babel%2Fruntime-7.10.2.tgz", - "integrity": "sha1-0QPyHyYCSX04NIoy4AhjfVBtuDk=", + "version": "7.12.5", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz", + "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==", "requires": { "regenerator-runtime": "^0.13.4" } }, "@babel/runtime-corejs3": { - "version": "7.10.2", - "resolved": "https://registry.npm.taobao.org/@babel/runtime-corejs3/download/@babel/runtime-corejs3-7.10.2.tgz", - "integrity": "sha1-NRF5fd+aPW885GuZzINRhIF+qk4=", + "version": "7.12.5", + "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.12.5.tgz", + "integrity": "sha512-roGr54CsTmNPPzZoCP1AmDXuBoNao7tnSA83TXTwt+UK5QVyh1DIJnrgYRPWKCF2flqZQXwa7Yr8v7VmLzF0YQ==", "dev": true, "requires": { "core-js-pure": "^3.0.0", @@ -2801,61 +1316,89 @@ } }, "@babel/template": { - "version": "7.10.1", - "resolved": "https://registry.npm.taobao.org/@babel/template/download/@babel/template-7.10.1.tgz?cache=0&sync_timestamp=1590617618259&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Ftemplate%2Fdownload%2F%40babel%2Ftemplate-7.10.1.tgz", - "integrity": "sha1-4WcVSpTLXxSyjcWPU1bSFi9TmBE=", + "version": "7.12.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.12.7.tgz", + "integrity": "sha512-GkDzmHS6GV7ZeXfJZ0tLRBhZcMcY0/Lnb+eEbXDBfCAcZCjrZKe6p3J4we/D24O9Y8enxWAg1cWwof59yLh2ow==", "dev": true, "requires": { - "@babel/code-frame": "^7.10.1", - "@babel/parser": "^7.10.1", - "@babel/types": "^7.10.1" + "@babel/code-frame": "^7.10.4", + "@babel/parser": "^7.12.7", + "@babel/types": "^7.12.7" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", + "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", + "dev": true, + "requires": { + "@babel/highlight": "^7.10.4" + } + } } }, "@babel/traverse": { - "version": "7.10.1", - "resolved": "https://registry.npm.taobao.org/@babel/traverse/download/@babel/traverse-7.10.1.tgz?cache=0&sync_timestamp=1590617384819&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Ftraverse%2Fdownload%2F%40babel%2Ftraverse-7.10.1.tgz", - "integrity": "sha1-u87zAx5BUqbAtQFH9JWN9Uyg3Sc=", + "version": "7.12.10", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.10.tgz", + "integrity": "sha512-6aEtf0IeRgbYWzta29lePeYSk+YAFIC3kyqESeft8o5CkFlYIMX+EQDDWEiAQ9LHOA3d0oHdgrSsID/CKqXJlg==", "dev": true, "requires": { - "@babel/code-frame": "^7.10.1", - "@babel/generator": "^7.10.1", - "@babel/helper-function-name": "^7.10.1", - "@babel/helper-split-export-declaration": "^7.10.1", - "@babel/parser": "^7.10.1", - "@babel/types": "^7.10.1", + "@babel/code-frame": "^7.10.4", + "@babel/generator": "^7.12.10", + "@babel/helper-function-name": "^7.10.4", + "@babel/helper-split-export-declaration": "^7.11.0", + "@babel/parser": "^7.12.10", + "@babel/types": "^7.12.10", "debug": "^4.1.0", "globals": "^11.1.0", - "lodash": "^4.17.13" + "lodash": "^4.17.19" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", + "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", + "dev": true, + "requires": { + "@babel/highlight": "^7.10.4" + } + }, + "globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true + } } }, "@babel/types": { - "version": "7.10.2", - "resolved": "https://registry.npm.taobao.org/@babel/types/download/@babel/types-7.10.2.tgz?cache=0&sync_timestamp=1590868599196&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.10.2.tgz", - "integrity": "sha1-MCg74xytDb9vsAvUBkHKDqZ1Fy0=", + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.11.tgz", + "integrity": "sha512-ukA9SQtKThINm++CX1CwmliMrE54J6nIYB5XTwL5f/CLFW9owfls+YSU8tVW15RQ2w+a3fSbPjC6HdQNtWZkiA==", "dev": true, "requires": { - "@babel/helper-validator-identifier": "^7.10.1", - "lodash": "^4.17.13", + "@babel/helper-validator-identifier": "^7.12.11", + "lodash": "^4.17.19", "to-fast-properties": "^2.0.0" } }, "@cliqz/adblocker": { - "version": "1.18.3", - "resolved": "https://registry.npmjs.org/@cliqz/adblocker/-/adblocker-1.18.3.tgz", - "integrity": "sha512-fkGky+ffAsXw9WIS+cV9zm8EMzdjRKU/uO196yCFHYICByZyREBie3lMNNKQ6RVSUeEVFOx1JlEKkY9Bze/9xQ==", + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@cliqz/adblocker/-/adblocker-1.19.0.tgz", + "integrity": "sha512-sy/aBjPoQsqLI5XYHAaZfgi+7HpddJmoHn/UMyX0dx0/jnnaM2/Z2LGylOsGwjW97GsNvvqSwXgxsEH2R0K9SQ==", "requires": { "@remusao/guess-url-type": "^1.1.2", "@remusao/small": "^1.1.2", "@remusao/smaz": "^1.7.1", - "@types/chrome": "^0.0.123", - "@types/firefox-webext-browser": "^78.0.0", + "@types/chrome": "^0.0.127", + "@types/firefox-webext-browser": "^82.0.0", "tldts-experimental": "^5.6.21" } }, "@cliqz/adblocker-content": { - "version": "1.18.3", - "resolved": "https://registry.npmjs.org/@cliqz/adblocker-content/-/adblocker-content-1.18.3.tgz", - "integrity": "sha512-mCLlGg4B8P2VWtJpSAJStR9HeRNt5Jo4D0MIOdXIkdSFjCWcXUSwqlUtu5GBvA8iFp9cGgHC/EYeyUW1SbuvYg==" + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@cliqz/adblocker-content/-/adblocker-content-1.19.0.tgz", + "integrity": "sha512-sciMicb+zmN5+iKCiDnWPegepgI32XzX4Snf1VxR+HAFwYGJmfk25vpL6ONd6hOlpmumxHkE/y5l7suH0ziP5g==" }, "@cliqz/adblocker-electron": { "version": "1.18.3", @@ -2868,11 +1411,11 @@ } }, "@cliqz/adblocker-electron-preload": { - "version": "1.18.3", - "resolved": "https://registry.npmjs.org/@cliqz/adblocker-electron-preload/-/adblocker-electron-preload-1.18.3.tgz", - "integrity": "sha512-MBfcFXpkZ08sTU1gQIVETmfpKODkc3ymg3cOpgf8RaeP0gX0RVW/trAA5LJINuOYUWXc2diNOn/GJ0W1oUjXbw==", + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/@cliqz/adblocker-electron-preload/-/adblocker-electron-preload-1.19.0.tgz", + "integrity": "sha512-ns+VCyb+H8U5rKC4lfvAbb1KxZiIKFs3F8HvivRkGBFqjEzaCUC4s/kf6P+tWCLC69lVgrZUDIzFHkKmGG9LPA==", "requires": { - "@cliqz/adblocker-content": "^1.18.3" + "@cliqz/adblocker-content": "^1.19.0" } }, "@cnakazawa/watch": { @@ -2908,9 +1451,9 @@ } }, "@date-io/core": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/@date-io/core/-/core-2.8.0.tgz", - "integrity": "sha512-MIL74B3O08gjjm5fcDSWME5MfdsvyQBX58zlWHIzM+m2h3+M5rP6P+T3qym3FWnpc8EKK5E8kF97nLqNiOwgkQ==", + "version": "2.10.6", + "resolved": "https://registry.npmjs.org/@date-io/core/-/core-2.10.6.tgz", + "integrity": "sha512-MGYt4GEB/4ZMdSbj6FS7/gPBvuhHUwnn5O6t8PlkSqGF1310qxypVyK4CZg5RQgev25L3R5eLVdNTyYrJOL8Rw==", "dev": true }, "@date-io/date-fns": { @@ -2920,41 +1463,33 @@ "dev": true, "requires": { "@date-io/core": "^2.10.6" - }, - "dependencies": { - "@date-io/core": { - "version": "2.10.6", - "resolved": "https://registry.npmjs.org/@date-io/core/-/core-2.10.6.tgz", - "integrity": "sha512-MGYt4GEB/4ZMdSbj6FS7/gPBvuhHUwnn5O6t8PlkSqGF1310qxypVyK4CZg5RQgev25L3R5eLVdNTyYrJOL8Rw==", - "dev": true - } } }, "@date-io/dayjs": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/@date-io/dayjs/-/dayjs-2.8.0.tgz", - "integrity": "sha512-DdtpYhZZwGRjjzTeEPLMvb0OhIOTPc3hNsw99PM+pRSk/4k1Z1xhMLDlm+fcOb2y03P1pY/f0CrRTGMb7l0KIQ==", + "version": "2.10.6", + "resolved": "https://registry.npmjs.org/@date-io/dayjs/-/dayjs-2.10.6.tgz", + "integrity": "sha512-hAJXEt+cLUYn+5l84Mo0P2BXtyQcQSSKrzGUYFAuQL9zYS2BlXH3s/fXOygv+saxaMR0wCVtVAT9h7yC1Usnew==", "dev": true, "requires": { - "@date-io/core": "^2.8.0" + "@date-io/core": "^2.10.6" } }, "@date-io/luxon": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/@date-io/luxon/-/luxon-2.8.0.tgz", - "integrity": "sha512-BLEkzERW/pVjz1jHfTmRk8NUeU7Ic4mJXD5/MJabdAqzm9Ne5tnEdGZf4GGozfadGxmMt3FOu2E2le+K+DD7ZA==", + "version": "2.10.6", + "resolved": "https://registry.npmjs.org/@date-io/luxon/-/luxon-2.10.6.tgz", + "integrity": "sha512-tSi8k0WoVzYGmQB5bvQ8G4MUS9xomvCh72XiQOm0gjII9Wm0PIclzI4sLlyhwmqTUYnuyaRdQAMK1UaY3iBBUA==", "dev": true, "requires": { - "@date-io/core": "^2.8.0" + "@date-io/core": "^2.10.6" } }, "@date-io/moment": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/@date-io/moment/-/moment-2.8.0.tgz", - "integrity": "sha512-dJasasxlQJA63BjjBDZ9D+6rTctRKaHCFbNkMpPA2O6wWLga4oQQAwCr+UwacZ7eyWZTc+oQzvWIRkvnssA3Kg==", + "version": "2.10.6", + "resolved": "https://registry.npmjs.org/@date-io/moment/-/moment-2.10.6.tgz", + "integrity": "sha512-oIo24tW/l5kFxYV2B3Hc0joYKh59p7X7S36u0/inmf+Rk0Z8B4nU9jxuAgx5gbkFY2NVLwo1kr4l0CO2POtkYA==", "dev": true, "requires": { - "@date-io/core": "^2.8.0" + "@date-io/core": "^2.10.6" } }, "@develar/schema-utils": { @@ -2967,6 +1502,349 @@ "ajv-keywords": "^3.4.1" } }, + "@electron-forge/async-ora": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/async-ora/-/async-ora-6.0.0-beta.54.tgz", + "integrity": "sha512-OCoHds0BIXaB54HgKw6pjlHC1cnaTcfJfVVkPSJl1GLC3VShZ5bETJfsitwbiP2kbfKLUQFayW27sqbwnwQR2w==", + "dev": true, + "requires": { + "colors": "^1.4.0", + "debug": "^4.1.0", + "log-symbols": "^4.0.0", + "ora": "^5.0.0", + "pretty-ms": "^7.0.0" + } + }, + "@electron-forge/cli": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/cli/-/cli-6.0.0-beta.54.tgz", + "integrity": "sha512-+Ui1BI8c5CnBawH2OEySa5QR8DzrFd/I9FHlClvrTsIDfsBAeMSv9NTbSNcmo9Af5kI+aNsLQa8tp1vD8DNrng==", + "dev": true, + "requires": { + "@electron-forge/async-ora": "6.0.0-beta.54", + "@electron-forge/core": "6.0.0-beta.54", + "@electron-forge/shared-types": "6.0.0-beta.54", + "@electron/get": "^1.9.0", + "colors": "^1.4.0", + "commander": "^4.1.1", + "debug": "^4.1.0", + "fs-extra": "^9.0.1", + "inquirer": "^7.3.3", + "semver": "^7.2.1" + }, + "dependencies": { + "commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "dev": true + } + } + }, + "@electron-forge/core": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/core/-/core-6.0.0-beta.54.tgz", + "integrity": "sha512-yggZeiwRLnIsQYCT5jKhx2L7I02CwUCjnIzA+CqUZXD0AU1c2o0BA/26dNOGvY/+pr5yWjOXcrGy1hvj3dnLmQ==", + "dev": true, + "requires": { + "@electron-forge/async-ora": "6.0.0-beta.54", + "@electron-forge/installer-base": "6.0.0-beta.54", + "@electron-forge/installer-deb": "6.0.0-beta.54", + "@electron-forge/installer-dmg": "6.0.0-beta.54", + "@electron-forge/installer-exe": "6.0.0-beta.54", + "@electron-forge/installer-rpm": "6.0.0-beta.54", + "@electron-forge/installer-zip": "6.0.0-beta.54", + "@electron-forge/maker-base": "6.0.0-beta.54", + "@electron-forge/plugin-base": "6.0.0-beta.54", + "@electron-forge/publisher-base": "6.0.0-beta.54", + "@electron-forge/shared-types": "6.0.0-beta.54", + "@electron-forge/template-base": "6.0.0-beta.54", + "@electron-forge/template-typescript": "6.0.0-beta.54", + "@electron-forge/template-typescript-webpack": "6.0.0-beta.54", + "@electron-forge/template-webpack": "6.0.0-beta.54", + "@electron/get": "^1.9.0", + "@malept/cross-spawn-promise": "^1.1.0", + "colors": "^1.4.0", + "debug": "^4.1.0", + "electron-packager": "^15.0.0", + "electron-rebuild": "^2.0.3", + "find-up": "^5.0.0", + "fs-extra": "^9.0.1", + "glob": "^7.1.5", + "lodash": "^4.17.20", + "log-symbols": "^4.0.0", + "node-fetch": "^2.6.0", + "nugget": "^2.0.1", + "resolve-package": "^1.0.1", + "semver": "^7.2.1", + "source-map-support": "^0.5.13", + "sudo-prompt": "^9.1.1", + "username": "^5.1.0", + "yarn-or-npm": "^3.0.1" + } + }, + "@electron-forge/installer-base": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/installer-base/-/installer-base-6.0.0-beta.54.tgz", + "integrity": "sha512-q6Z5kBAE6StKqn+3Z5tXVHu7WGCb9OMeIomw9H9Q41UUIehF7V0J3tCWTkJdhZ8D6/tkXcis3GKptaj0wfMpyg==", + "dev": true, + "requires": { + "@electron-forge/async-ora": "6.0.0-beta.54" + } + }, + "@electron-forge/installer-darwin": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/installer-darwin/-/installer-darwin-6.0.0-beta.54.tgz", + "integrity": "sha512-kRbH24+QBhbcIugnIvevnf43JGzLFLoyFsoY3YeyZeeDL3vfyg0vtSyUx0hfq1GpHG+zObDf3o18c3WbxdXlXA==", + "dev": true, + "requires": { + "@electron-forge/async-ora": "6.0.0-beta.54", + "@electron-forge/installer-base": "6.0.0-beta.54", + "fs-extra": "^9.0.1", + "sudo-prompt": "^9.1.1" + } + }, + "@electron-forge/installer-deb": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/installer-deb/-/installer-deb-6.0.0-beta.54.tgz", + "integrity": "sha512-UbJR2Md0SBqex5AIv9YZ56hY2Iz5gZ6f1iAx0q4PlYpCY19W9nRXdudLNhx1w5go26DsT53+h6EzX2NGpBLq3Q==", + "dev": true, + "requires": { + "@electron-forge/installer-linux": "6.0.0-beta.54" + } + }, + "@electron-forge/installer-dmg": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/installer-dmg/-/installer-dmg-6.0.0-beta.54.tgz", + "integrity": "sha512-F9jwhUTzdFNlbLus7RQ8paoGPryr79JFYDLi42f0dyuFwlOjwlrA1wN5xWqrvcMeqFlc3DfjjeRWZ+10RQyorA==", + "dev": true, + "requires": { + "@electron-forge/installer-darwin": "6.0.0-beta.54", + "@malept/cross-spawn-promise": "^1.1.0", + "debug": "^4.1.0", + "fs-extra": "^9.0.1" + } + }, + "@electron-forge/installer-exe": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/installer-exe/-/installer-exe-6.0.0-beta.54.tgz", + "integrity": "sha512-PE7RBPerSenNcSkKXJWpervKNl7AVT+JeMzx61OHUQSw3h63NHRvXWh31llxk32mmJcaKRgGle2GsWob87Lv/w==", + "dev": true, + "requires": { + "@electron-forge/installer-base": "6.0.0-beta.54", + "open": "^7.2.1" + } + }, + "@electron-forge/installer-linux": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/installer-linux/-/installer-linux-6.0.0-beta.54.tgz", + "integrity": "sha512-WQVV5fitsfTyktjb18m9Bx+Dho6rCFvVILqFNZAu1RfXIsjLl/h0WdkozdGDccfeDMqlRYmaNs3e5THn5swnAg==", + "dev": true, + "requires": { + "@electron-forge/installer-base": "6.0.0-beta.54", + "sudo-prompt": "^9.1.1" + } + }, + "@electron-forge/installer-rpm": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/installer-rpm/-/installer-rpm-6.0.0-beta.54.tgz", + "integrity": "sha512-8gaJA2m8+Y/ZhV4xEeijXz8UksrliMEzyUAdwM5ZdAsmfmGlnhchGr0L6rI23D66dQP9DeyvUIuUwXrsTlj1nQ==", + "dev": true, + "requires": { + "@electron-forge/installer-linux": "6.0.0-beta.54" + } + }, + "@electron-forge/installer-zip": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/installer-zip/-/installer-zip-6.0.0-beta.54.tgz", + "integrity": "sha512-KCY5zreA79wjZODhLmtrbFweTWdlh9JgmW9WruIrmHm3sK19rRhCdaZ+Dg5ZWUhMx2A79d5a2C7r78lWGcHl7A==", + "dev": true, + "requires": { + "@electron-forge/installer-darwin": "6.0.0-beta.54", + "@malept/cross-spawn-promise": "^1.1.0", + "fs-extra": "^9.0.1" + } + }, + "@electron-forge/maker-base": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/maker-base/-/maker-base-6.0.0-beta.54.tgz", + "integrity": "sha512-4y0y15ieb1EOR5mibtFM9tZzaShbAO0RZu6ARLCpD5BgKuJBzXRPfWvEmY6WeDNzoWTJ+mQdYikLAeOL2E9mew==", + "dev": true, + "requires": { + "@electron-forge/shared-types": "6.0.0-beta.54", + "fs-extra": "^9.0.1", + "which": "^2.0.2" + } + }, + "@electron-forge/maker-deb": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/maker-deb/-/maker-deb-6.0.0-beta.54.tgz", + "integrity": "sha512-PEAYULi7n/JkwvaEQnM554ewmLYkxGtHvuh6vUf5wsh48Xw3jcEVHejsc4FDjx5I6cKAByb9nscTtZpKt3ngXw==", + "dev": true, + "requires": { + "@electron-forge/maker-base": "6.0.0-beta.54", + "@electron-forge/shared-types": "6.0.0-beta.54", + "electron-installer-debian": "^3.0.0" + } + }, + "@electron-forge/maker-rpm": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/maker-rpm/-/maker-rpm-6.0.0-beta.54.tgz", + "integrity": "sha512-6nqBOUnojRE8+KdvE8zVXN2/H/V/QuWJQ4cwCLahJQxG1kG5RXOh6VbsM1mEFxjJwOhVnK+wkNCODf1qi56JZw==", + "dev": true, + "requires": { + "@electron-forge/maker-base": "6.0.0-beta.54", + "@electron-forge/shared-types": "6.0.0-beta.54", + "electron-installer-redhat": "^3.2.0" + } + }, + "@electron-forge/maker-squirrel": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/maker-squirrel/-/maker-squirrel-6.0.0-beta.54.tgz", + "integrity": "sha512-JJ+HmUe94zZ6mZnyv3IvNLQ5nwoj4dcQ4gzwps4P3fCEpuABMr74KOlza7fMXrrs8cwOrGfMFwsk80GTcLdWkg==", + "dev": true, + "requires": { + "@electron-forge/maker-base": "6.0.0-beta.54", + "@electron-forge/shared-types": "6.0.0-beta.54", + "electron-winstaller": "^4.0.1", + "fs-extra": "^9.0.1" + } + }, + "@electron-forge/maker-zip": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/maker-zip/-/maker-zip-6.0.0-beta.54.tgz", + "integrity": "sha512-wbJhK1rDOCZMTtKrjvavT8R+Yi+v/6axsnTXvzbkzzMQ0xADKNslTwzO6mmbBJea4oIbYmQ44DRAjI21TNyQ/A==", + "dev": true, + "requires": { + "@electron-forge/maker-base": "6.0.0-beta.54", + "@electron-forge/shared-types": "6.0.0-beta.54", + "cross-zip": "^3.0.0", + "fs-extra": "^9.0.1" + } + }, + "@electron-forge/plugin-auto-unpack-natives": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/plugin-auto-unpack-natives/-/plugin-auto-unpack-natives-6.0.0-beta.54.tgz", + "integrity": "sha512-vRzjYkVX7u1IsiwLs6OAuSnb3s6yoJ1uqXD1+BmnFdouRDwnbQs4+ZRvQgD4p3PqCm1MoYEr9HTvt18sYXe9Qw==", + "dev": true, + "requires": { + "@electron-forge/plugin-base": "6.0.0-beta.54", + "@electron-forge/shared-types": "6.0.0-beta.54" + } + }, + "@electron-forge/plugin-base": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/plugin-base/-/plugin-base-6.0.0-beta.54.tgz", + "integrity": "sha512-8HwGzgNCHo2PgUfNnTch3Gvj7l6fqOgjnARK1y056UfsxFy+hwvHaAO+7LLfr7ktNwU/bH3hGhOpE+ZmBSwSqQ==", + "dev": true, + "requires": { + "@electron-forge/shared-types": "6.0.0-beta.54" + } + }, + "@electron-forge/plugin-webpack": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/plugin-webpack/-/plugin-webpack-6.0.0-beta.54.tgz", + "integrity": "sha512-OM1g74dT0fQrybaJUTbP5j+ZX8a1b4Pfo48bloPlp3J8cOxBVzaysdc4r3tGuhJGQr984z5MANinpDd/rgPfuQ==", + "dev": true, + "requires": { + "@electron-forge/async-ora": "6.0.0-beta.54", + "@electron-forge/plugin-base": "6.0.0-beta.54", + "@electron-forge/shared-types": "6.0.0-beta.54", + "@electron-forge/web-multi-logger": "6.0.0-beta.54", + "debug": "^4.1.0", + "express": "^4.17.1", + "fs-extra": "^9.0.1", + "global": "^4.3.2", + "html-webpack-plugin": "^4.4.1", + "webpack": "^4.44.2", + "webpack-dev-middleware": "^3.7.2", + "webpack-hot-middleware": "^2.25.0", + "webpack-merge": "^5.1.4" + } + }, + "@electron-forge/publisher-base": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/publisher-base/-/publisher-base-6.0.0-beta.54.tgz", + "integrity": "sha512-Dny0jW0N8QcNYKHTtzQFZD4pBWJ7tclJWf3ZCX031vUKG7RhThdA06IPNzV6JtWJswrvAE9TPndzZONMza2V7g==", + "dev": true, + "requires": { + "@electron-forge/shared-types": "6.0.0-beta.54" + } + }, + "@electron-forge/shared-types": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/shared-types/-/shared-types-6.0.0-beta.54.tgz", + "integrity": "sha512-6CzWKFR17rxxeIqm1w5ZyT9uTAHSVAjhqL8c+TmizF2703GyCEusUkjP2UXt/tZNY4MJlukZoJM66Bct6oZJ+w==", + "dev": true, + "requires": { + "@electron-forge/async-ora": "6.0.0-beta.54", + "electron-packager": "^15.0.0", + "electron-rebuild": "^2.0.3", + "ora": "^5.0.0" + } + }, + "@electron-forge/template-base": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/template-base/-/template-base-6.0.0-beta.54.tgz", + "integrity": "sha512-LuSpeOiM6AzUbamz5U/NqRkn4y7dzof1JK1ISAb+6tORf7JU014aKqDcLdwgP8Lxaz6P1bdlMmNJTvg5+SBrEw==", + "dev": true, + "requires": { + "@electron-forge/async-ora": "6.0.0-beta.54", + "@electron-forge/shared-types": "6.0.0-beta.54", + "debug": "^4.1.0", + "fs-extra": "^9.0.1", + "username": "^5.1.0" + } + }, + "@electron-forge/template-typescript": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/template-typescript/-/template-typescript-6.0.0-beta.54.tgz", + "integrity": "sha512-7V87LWH+vJ1YibM9MsTttbz7upfwLrmXgchQ399EfLxK306g7q/ouyGkeTerhLr2gCUAvm/Oqx+sXQ7402ol9w==", + "dev": true, + "requires": { + "@electron-forge/async-ora": "6.0.0-beta.54", + "@electron-forge/shared-types": "6.0.0-beta.54", + "@electron-forge/template-base": "6.0.0-beta.54", + "fs-extra": "^9.0.1" + } + }, + "@electron-forge/template-typescript-webpack": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/template-typescript-webpack/-/template-typescript-webpack-6.0.0-beta.54.tgz", + "integrity": "sha512-1MIw1eGlMZg7KLG4oAEE0rB28WDOtz01OSoW2a2NqkmUzmu4BxJdSvQ97Tp7xCU0naW0H1uU39B9QOjJQgLGCQ==", + "dev": true, + "requires": { + "@electron-forge/async-ora": "6.0.0-beta.54", + "@electron-forge/shared-types": "6.0.0-beta.54", + "@electron-forge/template-base": "6.0.0-beta.54", + "fs-extra": "^9.0.1" + } + }, + "@electron-forge/template-webpack": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/template-webpack/-/template-webpack-6.0.0-beta.54.tgz", + "integrity": "sha512-4/zUOZ8MCZqs8PcUCeeG6ofpy6HT53tQiLknM23OPaFP6ckuE6kOunC6N/teijUrJuLpKl3P8d39SWPVacxEzg==", + "dev": true, + "requires": { + "@electron-forge/async-ora": "6.0.0-beta.54", + "@electron-forge/shared-types": "6.0.0-beta.54", + "@electron-forge/template-base": "6.0.0-beta.54", + "fs-extra": "^9.0.1" + } + }, + "@electron-forge/web-multi-logger": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/web-multi-logger/-/web-multi-logger-6.0.0-beta.54.tgz", + "integrity": "sha512-uq/UJ8xAn6QUyM3pOmiin/4O63/QLv9H3TBDZP+h++DkTciLtBux16E+PIf9FD7wt/h4Ri4SCR8d+YlwsNeJvw==", + "dev": true, + "requires": { + "express": "^4.17.1", + "express-ws": "^4.0.0", + "xterm": "^4.9.0", + "xterm-addon-fit": "^0.4.0", + "xterm-addon-search": "^0.7.0" + } + }, "@electron/get": { "version": "1.12.2", "resolved": "https://registry.npmjs.org/@electron/get/-/get-1.12.2.tgz", @@ -3058,6 +1936,15 @@ "integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==", "dev": true }, + "jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6" + } + }, "normalize-url": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.0.tgz", @@ -3112,9 +1999,9 @@ "dev": true }, "@eslint/eslintrc": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.1.3.tgz", - "integrity": "sha512-4YVwPkANLeNtRjMekzux1ci8hIaH5eGKktGqR0d3LWsKNn5B2X/1Z6Trxy7jQXl9EBGE6Yj02O+t09FMeRllaA==", + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.2.2.tgz", + "integrity": "sha512-EfB5OHNYp1F4px/LI/FEnGylop7nOqkQ1LRzCM0KccA2U8tvV8w01KBv37LbO7nW4H+YhKyo2LcJhRwjjV17QQ==", "dev": true, "requires": { "ajv": "^6.12.4", @@ -3129,38 +2016,17 @@ "strip-json-comments": "^3.1.1" }, "dependencies": { - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "globals": { - "version": "12.4.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz", - "integrity": "sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==", - "dev": true, - "requires": { - "type-fest": "^0.8.1" - } + "ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "dev": true }, "strip-json-comments": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", "dev": true - }, - "type-fest": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", - "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", - "dev": true } } }, @@ -3176,12 +2042,6 @@ "integrity": "sha512-1dVNHT76Uu5N3eJNTYcvxee+jzX4Z9lfciqRRHCU27ihbUcYi+iSc2iml5Ke1LXe1SyJCLA0+14Jh4tXJgOppA==", "dev": true }, - "@hapi/formula": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@hapi/formula/-/formula-2.0.0.tgz", - "integrity": "sha512-V87P8fv7PI0LH7LiVi8Lkf3x+KCO7pQozXRssAHNXXL9L1K+uyu4XypLXwxqVDKgyQai6qj3/KteNlrqDx4W5A==", - "dev": true - }, "@hapi/hoek": { "version": "8.5.1", "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-8.5.1.tgz", @@ -3200,12 +2060,6 @@ "@hapi/topo": "3.x.x" } }, - "@hapi/pinpoint": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@hapi/pinpoint/-/pinpoint-2.0.0.tgz", - "integrity": "sha512-vzXR5MY7n4XeIvLpfl3HtE3coZYO4raKXW766R6DZw/6aLqR26iuZ109K7a0NtF2Db0jxqh7xz2AxkUwpUFybw==", - "dev": true - }, "@hapi/topo": { "version": "3.1.6", "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-3.1.6.tgz", @@ -3224,6 +2078,64 @@ "@jest/source-map": "^24.9.0", "chalk": "^2.0.1", "slash": "^2.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } } }, "@jest/core": { @@ -3274,6 +2186,47 @@ "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", "dev": true }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, "rimraf": { "version": "2.7.1", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", @@ -3283,6 +2236,12 @@ "glob": "^7.1.3" } }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "dev": true + }, "strip-ansi": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", @@ -3291,6 +2250,15 @@ "requires": { "ansi-regex": "^4.1.0" } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } } } }, @@ -3344,6 +2312,64 @@ "slash": "^2.0.0", "source-map": "^0.6.0", "string-length": "^2.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } } }, "@jest/source-map": { @@ -3404,6 +2430,62 @@ "write-file-atomic": "2.4.1" }, "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + }, "write-file-atomic": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.1.tgz", @@ -3429,9 +2511,9 @@ }, "dependencies": { "@types/yargs": { - "version": "13.0.10", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-13.0.10.tgz", - "integrity": "sha512-MU10TSgzNABgdzKvQVW1nuuT+sgBMWeXNc3XOs5YXV5SDAK+PPja2eUuBNB9iqElu03xyEDqlnGw0jgl4nbqGQ==", + "version": "13.0.11", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-13.0.11.tgz", + "integrity": "sha512-NRqD6T4gktUrDi1o1wLH3EKC1o2caCr7/wR87ODcbVITQF106OM3sFN92ysZ++wqelOd1CTzatnOBRDYYG6wGQ==", "dev": true, "requires": { "@types/yargs-parser": "*" @@ -3767,6 +2849,15 @@ "regenerator-runtime": "^0.13.3" } }, + "@malept/cross-spawn-promise": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@malept/cross-spawn-promise/-/cross-spawn-promise-1.1.1.tgz", + "integrity": "sha512-RTBGWL5FWQcg9orDOCcp4LvItNzUPcyEU9bwaeJX0rJ1IQxzucC48Y0/sQLp/g6t99IQgAlGIaesJS+gTn7tVQ==", + "dev": true, + "requires": { + "cross-spawn": "^7.0.1" + } + }, "@material-ui/core": { "version": "4.11.0", "resolved": "https://registry.npmjs.org/@material-ui/core/-/core-4.11.0.tgz", @@ -3789,24 +2880,24 @@ }, "@material-ui/icons": { "version": "4.9.1", - "resolved": "https://registry.npm.taobao.org/@material-ui/icons/download/@material-ui/icons-4.9.1.tgz", - "integrity": "sha1-/erfjLPYkgiUWzPbxQx8YW0L1mU=", + "resolved": "https://registry.npmjs.org/@material-ui/icons/-/icons-4.9.1.tgz", + "integrity": "sha512-GBitL3oBWO0hzBhvA9KxqcowRUsA0qzwKkURyC8nppnC3fw54KPKZ+d4V1Eeg/UnDRSzDaI9nGCdel/eh9AQMg==", "dev": true, "requires": { "@babel/runtime": "^7.4.4" } }, "@material-ui/lab": { - "version": "4.0.0-alpha.56", - "resolved": "https://registry.npm.taobao.org/@material-ui/lab/download/@material-ui/lab-4.0.0-alpha.56.tgz", - "integrity": "sha1-/2MICUm1W0BiXgVrvaBeEw0hbTQ=", + "version": "4.0.0-alpha.57", + "resolved": "https://registry.npmjs.org/@material-ui/lab/-/lab-4.0.0-alpha.57.tgz", + "integrity": "sha512-qo/IuIQOmEKtzmRD2E4Aa6DB4A87kmY6h0uYhjUmrrgmEAgbbw9etXpWPVXuRK6AGIQCjFzV6WO2i21m1R4FCw==", "dev": true, "requires": { "@babel/runtime": "^7.4.4", - "@material-ui/utils": "^4.10.2", + "@material-ui/utils": "^4.11.2", "clsx": "^1.0.4", "prop-types": "^15.7.2", - "react-is": "^16.8.0" + "react-is": "^16.8.0 || ^17.0.0" } }, "@material-ui/pickers": { @@ -3826,15 +2917,15 @@ } }, "@material-ui/styles": { - "version": "4.10.0", - "resolved": "https://registry.npmjs.org/@material-ui/styles/-/styles-4.10.0.tgz", - "integrity": "sha512-XPwiVTpd3rlnbfrgtEJ1eJJdFCXZkHxy8TrdieaTvwxNYj42VnnCyFzxYeNW9Lhj4V1oD8YtQ6S5Gie7bZDf7Q==", + "version": "4.11.2", + "resolved": "https://registry.npmjs.org/@material-ui/styles/-/styles-4.11.2.tgz", + "integrity": "sha512-xbItf8zkfD3FuGoD9f2vlcyPf9jTEtj9YTJoNNV+NMWaSAHXgrW6geqRoo/IwBuMjqpwqsZhct13e2nUyU9Ljw==", "dev": true, "requires": { "@babel/runtime": "^7.4.4", "@emotion/hash": "^0.8.0", "@material-ui/types": "^5.1.0", - "@material-ui/utils": "^4.9.6", + "@material-ui/utils": "^4.11.2", "clsx": "^1.0.4", "csstype": "^2.5.2", "hoist-non-react-statics": "^3.3.2", @@ -3850,13 +2941,13 @@ } }, "@material-ui/system": { - "version": "4.9.14", - "resolved": "https://registry.npmjs.org/@material-ui/system/-/system-4.9.14.tgz", - "integrity": "sha512-oQbaqfSnNlEkXEziDcJDDIy8pbvwUmZXWNqlmIwDqr/ZdCK8FuV3f4nxikUh7hvClKV2gnQ9djh5CZFTHkZj3w==", + "version": "4.11.2", + "resolved": "https://registry.npmjs.org/@material-ui/system/-/system-4.11.2.tgz", + "integrity": "sha512-BELFJEel5E+5DMiZb6XXT3peWRn6UixRvBtKwSxqntmD0+zwbbfCij6jtGwwdJhN1qX/aXrKu10zX31GBaeR7A==", "dev": true, "requires": { "@babel/runtime": "^7.4.4", - "@material-ui/utils": "^4.9.6", + "@material-ui/utils": "^4.11.2", "csstype": "^2.5.2", "prop-types": "^15.7.2" } @@ -3868,618 +2959,150 @@ "dev": true }, "@material-ui/utils": { - "version": "4.10.2", - "resolved": "https://registry.npmjs.org/@material-ui/utils/-/utils-4.10.2.tgz", - "integrity": "sha512-eg29v74P7W5r6a4tWWDAAfZldXIzfyO1am2fIsC39hdUUHm/33k6pGOKPbgDjg/U/4ifmgAePy/1OjkKN6rFRw==", + "version": "4.11.2", + "resolved": "https://registry.npmjs.org/@material-ui/utils/-/utils-4.11.2.tgz", + "integrity": "sha512-Uul8w38u+PICe2Fg2pDKCaIG7kOyhowZ9vjiC1FsVwPABTW8vPPKfF6OvxRq3IiBaI1faOJmgdvMG7rMJARBhA==", "dev": true, "requires": { "@babel/runtime": "^7.4.4", "prop-types": "^15.7.2", - "react-is": "^16.8.0" + "react-is": "^16.8.0 || ^17.0.0" } }, "@mrmlnc/readdir-enhanced": { "version": "2.2.1", - "resolved": "https://registry.npm.taobao.org/@mrmlnc/readdir-enhanced/download/@mrmlnc/readdir-enhanced-2.2.1.tgz", - "integrity": "sha1-UkryQNGjYFJ7cwR17PoTRKpUDd4=", + "resolved": "https://registry.npmjs.org/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz", + "integrity": "sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==", "dev": true, "requires": { "call-me-maybe": "^1.0.1", "glob-to-regexp": "^0.3.0" } }, + "@nodelib/fs.scandir": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.3.tgz", + "integrity": "sha512-eGmwYQn3gxo4r7jdQnkrrN6bY478C3P+a/y72IJukF8LjB6ZHeB3c+Ehacj3sYeSmUXGlnA67/PmbM9CVwL7Dw==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "2.0.3", + "run-parallel": "^1.1.9" + }, + "dependencies": { + "@nodelib/fs.stat": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.3.tgz", + "integrity": "sha512-bQBFruR2TAwoevBEd/NWMoAAtNGzTRgdrqnYCc7dhzfoNvqPzLyqlEQnzZ3kVnNrSp25iyxE00/3h2fqGAGArA==", + "dev": true + } + } + }, "@nodelib/fs.stat": { "version": "1.1.3", - "resolved": "https://registry.npm.taobao.org/@nodelib/fs.stat/download/@nodelib/fs.stat-1.1.3.tgz", - "integrity": "sha1-K1o6s/kYzKSKjHVMCBaOPwPrphs=", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz", + "integrity": "sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==", "dev": true }, - "@octokit/auth-token": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-2.4.2.tgz", - "integrity": "sha512-jE/lE/IKIz2v1+/P0u4fJqv0kYwXOTujKemJMFr6FeopsxlIK3+wKDCJGnysg81XID5TgZQbIfuJ5J0lnTiuyQ==", + "@nodelib/fs.walk": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.4.tgz", + "integrity": "sha512-1V9XOY4rDW0rehzbrcqAmHnz8e7SKvX27gh8Gt2WgB0+pdzdiLV83p72kZPU+jvMbS1qU5mauP2iOvO8rhmurQ==", "dev": true, "requires": { - "@octokit/types": "^5.0.0" - } - }, - "@octokit/endpoint": { - "version": "6.0.8", - "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-6.0.8.tgz", - "integrity": "sha512-MuRrgv+bM4Q+e9uEvxAB/Kf+Sj0O2JAOBA131uo1o6lgdq1iS8ejKwtqHgdfY91V3rN9R/hdGKFiQYMzVzVBEQ==", - "dev": true, - "requires": { - "@octokit/types": "^5.0.0", - "is-plain-object": "^5.0.0", - "universal-user-agent": "^6.0.0" - }, - "dependencies": { - "is-plain-object": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", - "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", - "dev": true - }, - "universal-user-agent": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-6.0.0.tgz", - "integrity": "sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==", - "dev": true - } - } - }, - "@octokit/plugin-paginate-rest": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-1.1.2.tgz", - "integrity": "sha512-jbsSoi5Q1pj63sC16XIUboklNw+8tL9VOnJsWycWYR78TKss5PVpIPb1TUUcMQ+bBh7cY579cVAWmf5qG+dw+Q==", - "dev": true, - "requires": { - "@octokit/types": "^2.0.1" - }, - "dependencies": { - "@octokit/types": { - "version": "2.16.2", - "resolved": "https://registry.npmjs.org/@octokit/types/-/types-2.16.2.tgz", - "integrity": "sha512-O75k56TYvJ8WpAakWwYRN8Bgu60KrmX0z1KqFp1kNiFNkgW+JW+9EBKZ+S33PU6SLvbihqd+3drvPxKK68Ee8Q==", - "dev": true, - "requires": { - "@types/node": ">= 8" - } - } - } - }, - "@octokit/plugin-request-log": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@octokit/plugin-request-log/-/plugin-request-log-1.0.0.tgz", - "integrity": "sha512-ywoxP68aOT3zHCLgWZgwUJatiENeHE7xJzYjfz8WI0goynp96wETBF+d95b8g/uL4QmS6owPVlaxiz3wyMAzcw==", - "dev": true - }, - "@octokit/plugin-rest-endpoint-methods": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-2.4.0.tgz", - "integrity": "sha512-EZi/AWhtkdfAYi01obpX0DF7U6b1VRr30QNQ5xSFPITMdLSfhcBqjamE3F+sKcxPbD7eZuMHu3Qkk2V+JGxBDQ==", - "dev": true, - "requires": { - "@octokit/types": "^2.0.1", - "deprecation": "^2.3.1" - }, - "dependencies": { - "@octokit/types": { - "version": "2.16.2", - "resolved": "https://registry.npmjs.org/@octokit/types/-/types-2.16.2.tgz", - "integrity": "sha512-O75k56TYvJ8WpAakWwYRN8Bgu60KrmX0z1KqFp1kNiFNkgW+JW+9EBKZ+S33PU6SLvbihqd+3drvPxKK68Ee8Q==", - "dev": true, - "requires": { - "@types/node": ">= 8" - } - } - } - }, - "@octokit/request": { - "version": "5.4.9", - "resolved": "https://registry.npmjs.org/@octokit/request/-/request-5.4.9.tgz", - "integrity": "sha512-CzwVvRyimIM1h2n9pLVYfTDmX9m+KHSgCpqPsY8F1NdEK8IaWqXhSBXsdjOBFZSpEcxNEeg4p0UO9cQ8EnOCLA==", - "dev": true, - "requires": { - "@octokit/endpoint": "^6.0.1", - "@octokit/request-error": "^2.0.0", - "@octokit/types": "^5.0.0", - "deprecation": "^2.0.0", - "is-plain-object": "^5.0.0", - "node-fetch": "^2.6.1", - "once": "^1.4.0", - "universal-user-agent": "^6.0.0" - }, - "dependencies": { - "@octokit/request-error": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-2.0.2.tgz", - "integrity": "sha512-2BrmnvVSV1MXQvEkrb9zwzP0wXFNbPJij922kYBTLIlIafukrGOb+ABBT2+c6wZiuyWDH1K1zmjGQ0toN/wMWw==", - "dev": true, - "requires": { - "@octokit/types": "^5.0.1", - "deprecation": "^2.0.0", - "once": "^1.4.0" - } - }, - "is-plain-object": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", - "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", - "dev": true - }, - "universal-user-agent": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-6.0.0.tgz", - "integrity": "sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==", - "dev": true - } - } - }, - "@octokit/request-error": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-1.2.1.tgz", - "integrity": "sha512-+6yDyk1EES6WK+l3viRDElw96MvwfJxCt45GvmjDUKWjYIb3PJZQkq3i46TwGwoPD4h8NmTrENmtyA1FwbmhRA==", - "dev": true, - "requires": { - "@octokit/types": "^2.0.0", - "deprecation": "^2.0.0", - "once": "^1.4.0" - }, - "dependencies": { - "@octokit/types": { - "version": "2.16.2", - "resolved": "https://registry.npmjs.org/@octokit/types/-/types-2.16.2.tgz", - "integrity": "sha512-O75k56TYvJ8WpAakWwYRN8Bgu60KrmX0z1KqFp1kNiFNkgW+JW+9EBKZ+S33PU6SLvbihqd+3drvPxKK68Ee8Q==", - "dev": true, - "requires": { - "@types/node": ">= 8" - } - } - } - }, - "@octokit/rest": { - "version": "16.43.2", - "resolved": "https://registry.npmjs.org/@octokit/rest/-/rest-16.43.2.tgz", - "integrity": "sha512-ngDBevLbBTFfrHZeiS7SAMAZ6ssuVmXuya+F/7RaVvlysgGa1JKJkKWY+jV6TCJYcW0OALfJ7nTIGXcBXzycfQ==", - "dev": true, - "requires": { - "@octokit/auth-token": "^2.4.0", - "@octokit/plugin-paginate-rest": "^1.1.1", - "@octokit/plugin-request-log": "^1.0.0", - "@octokit/plugin-rest-endpoint-methods": "2.4.0", - "@octokit/request": "^5.2.0", - "@octokit/request-error": "^1.0.2", - "atob-lite": "^2.0.0", - "before-after-hook": "^2.0.0", - "btoa-lite": "^1.0.0", - "deprecation": "^2.0.0", - "lodash.get": "^4.4.2", - "lodash.set": "^4.3.2", - "lodash.uniq": "^4.5.0", - "octokit-pagination-methods": "^1.1.0", - "once": "^1.4.0", - "universal-user-agent": "^4.0.0" - } - }, - "@octokit/types": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/@octokit/types/-/types-5.5.0.tgz", - "integrity": "sha512-UZ1pErDue6bZNjYOotCNveTXArOMZQFG6hKJfOnGnulVCMcVVi7YIIuuR4WfBhjo7zgpmzn/BkPDnUXtNx+PcQ==", - "dev": true, - "requires": { - "@types/node": ">= 8" + "@nodelib/fs.scandir": "2.1.3", + "fastq": "^1.6.0" } }, "@remusao/guess-url-type": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@remusao/guess-url-type/-/guess-url-type-1.2.0.tgz", - "integrity": "sha512-alnTonifD/Ii/0pI9EA5nVgdk/eOihU4OOYMIXq4U4cS0NocnaYCozqV4OVkmArPPnz9s4ap4GM1ODftBpBW0w==" + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@remusao/guess-url-type/-/guess-url-type-1.2.1.tgz", + "integrity": "sha512-rbOqre2jW8STjheOsOaQHLgYBaBZ9Owbdt8NO7WvNZftJlaG3y/K9oOkl8ZUpuFBisIhmBuMEW6c+YrQl5inRA==" }, "@remusao/small": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@remusao/small/-/small-1.2.0.tgz", - "integrity": "sha512-18Bwa/EjqQ5WfdERqmG3YgOohO7J2sS8+v31JgmYnEg3wAtcAOPVBRkD24IzVS0eJOQk1P2Yd++aP0ldirk7MQ==" + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@remusao/small/-/small-1.2.1.tgz", + "integrity": "sha512-7MjoGt0TJMVw1GPKgWq6SJPws1SLsUXQRa43Umht+nkyw2jnpy3WpiLNqGdwo5rHr5Wp9B2W/Pm5RQp656UJdw==" }, "@remusao/smaz": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@remusao/smaz/-/smaz-1.9.0.tgz", - "integrity": "sha512-HMMPam5jLhP0ymtMUQ8sm2p9zwDJwHD09krORXN/l/TR+NlSCdU2gSAoVNr9idD9OmMGfeXPFQYCofEUZfjbTQ==", + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/@remusao/smaz/-/smaz-1.9.1.tgz", + "integrity": "sha512-e6BLuP8oaXCZ9+v46Is4ilAZ/Vq6YLgmBP204Ixgk1qTjXmqvFYG7+AS7v9nsZdGOy96r9DWGFbbDVgMxwu1rA==", "requires": { - "@remusao/smaz-compress": "^1.9.0", - "@remusao/smaz-decompress": "^1.9.0" + "@remusao/smaz-compress": "^1.9.1", + "@remusao/smaz-decompress": "^1.9.1" } }, "@remusao/smaz-compress": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@remusao/smaz-compress/-/smaz-compress-1.9.0.tgz", - "integrity": "sha512-PAze3aYCcUfX+a6E6sVMoxVtUkeQgX+oiY6DqbiRkNtUqzjtcl9JVyEAWGbBEgOuv2jdEATAlyIf0W18NKDEnw==", + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/@remusao/smaz-compress/-/smaz-compress-1.9.1.tgz", + "integrity": "sha512-E2f48TwloQu3r6BdLOGF2aczeH7bJ/32oJGqvzT9SKur0cuUnLcZ7ZXP874E2fwmdE+cXzfC7bKzp79cDnmeyw==", "requires": { - "@remusao/trie": "^1.4.0" + "@remusao/trie": "^1.4.1" } }, "@remusao/smaz-decompress": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@remusao/smaz-decompress/-/smaz-decompress-1.9.0.tgz", - "integrity": "sha512-7uXEX8cSMWy+ai7j8sJpVQuY+CHj2e5D+PjxY//4wbAJlw1a/X+CYPt7BuxLBzpVoioB5Y7++1USjCkrw0pl8g==" + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/@remusao/smaz-decompress/-/smaz-decompress-1.9.1.tgz", + "integrity": "sha512-TfjKKprYe3n47od8auhvJ/Ikj9kQTbDTe71ynKlxslrvvUhlIV3VQSuwYuMWMbdz1fIs0H/fxCN1Z8/H3km6/A==" }, "@remusao/trie": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/@remusao/trie/-/trie-1.4.0.tgz", - "integrity": "sha512-mIr0m4/xj6qxHtJjAFb4I8tXXmjTniUYTB2Hv+xK5hXf/YWocEPlJ+V31bv5HJwo6ly64DUnZDBeBxolT3WE7w==" + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@remusao/trie/-/trie-1.4.1.tgz", + "integrity": "sha512-yvwa+aCyYI/UjeD39BnpMypG8N06l86wIDW1/PAc6ihBRnodIfZDwccxQN3n1t74wduzaz74m4ZMHZnB06567Q==" }, "@rescripts/cli": { "version": "0.0.14", - "resolved": "https://registry.npm.taobao.org/@rescripts/cli/download/@rescripts/cli-0.0.14.tgz", - "integrity": "sha1-HscAFI51Qze/8c7a79dX4BZmSXg=", + "resolved": "https://registry.npmjs.org/@rescripts/cli/-/cli-0.0.14.tgz", + "integrity": "sha512-BPDm8xwYFdzOe8uardwbybrlFu9C6f9463CHPs1M1gtWK+gyXxfWxsYuNMxWlxAnogRHpqLYSYFHGphx2ocGEg==", "dev": true, "requires": { "@rescripts/utilities": "^0.0.7", "ramda": "^0.26.0", "react-dev-utils": "^7.0.0" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.0.0", - "resolved": "https://registry.npm.taobao.org/@babel/code-frame/download/@babel/code-frame-7.0.0.tgz", - "integrity": "sha1-BuKrGb21NThVWaq7W6WXKUgoAPg=", - "dev": true, - "requires": { - "@babel/highlight": "^7.0.0" - } - }, - "address": { - "version": "1.0.3", - "resolved": "https://registry.npm.taobao.org/address/download/address-1.0.3.tgz", - "integrity": "sha1-tfUGMfjWzsi9IMljljr7VeBsvOk=", - "dev": true - }, - "ansi-escapes": { - "version": "3.2.0", - "resolved": "https://registry.npm.taobao.org/ansi-escapes/download/ansi-escapes-3.2.0.tgz?cache=0&sync_timestamp=1583072804444&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fansi-escapes%2Fdownload%2Fansi-escapes-3.2.0.tgz", - "integrity": "sha1-h4C5j/nb9WOBUtHx/lwde0RCl2s=", - "dev": true - }, - "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", - "dev": true - }, - "browserslist": { - "version": "4.4.1", - "resolved": "https://registry.npm.taobao.org/browserslist/download/browserslist-4.4.1.tgz?cache=0&sync_timestamp=1593017776108&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fbrowserslist%2Fdownload%2Fbrowserslist-4.4.1.tgz", - "integrity": "sha1-QugolUtrKaelPjUid75ClHimkGI=", - "dev": true, - "requires": { - "caniuse-lite": "^1.0.30000929", - "electron-to-chromium": "^1.3.103", - "node-releases": "^1.1.3" - } - }, - "cli-cursor": { - "version": "2.1.0", - "resolved": "https://registry.npm.taobao.org/cli-cursor/download/cli-cursor-2.1.0.tgz", - "integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=", - "dev": true, - "requires": { - "restore-cursor": "^2.0.0" - } - }, - "cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npm.taobao.org/cross-spawn/download/cross-spawn-6.0.5.tgz?cache=0&sync_timestamp=1590421014780&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcross-spawn%2Fdownload%2Fcross-spawn-6.0.5.tgz", - "integrity": "sha1-Sl7Hxk364iw6FBJNus3uhG2Ay8Q=", - "dev": true, - "requires": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - } - }, - "debug": { - "version": "3.2.6", - "resolved": "https://registry.npm.taobao.org/debug/download/debug-3.2.6.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fdebug%2Fdownload%2Fdebug-3.2.6.tgz", - "integrity": "sha1-6D0X3hbYp++3cX7b5fsQE17uYps=", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - }, - "emojis-list": { - "version": "2.1.0", - "resolved": "https://registry.npm.taobao.org/emojis-list/download/emojis-list-2.1.0.tgz", - "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=", - "dev": true - }, - "faye-websocket": { - "version": "0.11.3", - "resolved": "https://registry.npm.taobao.org/faye-websocket/download/faye-websocket-0.11.3.tgz", - "integrity": "sha1-XA6aiWjokSwoZjn96XeosgnyUI4=", - "dev": true, - "requires": { - "websocket-driver": ">=0.5.1" - } - }, - "figures": { - "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/figures/download/figures-2.0.0.tgz", - "integrity": "sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=", - "dev": true, - "requires": { - "escape-string-regexp": "^1.0.5" - } - }, - "filesize": { - "version": "3.6.1", - "resolved": "https://registry.npm.taobao.org/filesize/download/filesize-3.6.1.tgz", - "integrity": "sha1-CQuz7gG2+AGoqL6Z0xcQs0Irsxc=", - "dev": true - }, - "gzip-size": { - "version": "5.0.0", - "resolved": "https://registry.npm.taobao.org/gzip-size/download/gzip-size-5.0.0.tgz", - "integrity": "sha1-pV7NmSIvTEj9jAHGJc47NJ0KDoA=", - "dev": true, - "requires": { - "duplexer": "^0.1.1", - "pify": "^3.0.0" - } - }, - "inquirer": { - "version": "6.2.1", - "resolved": "https://registry.npm.taobao.org/inquirer/download/inquirer-6.2.1.tgz?cache=0&sync_timestamp=1592184390073&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Finquirer%2Fdownload%2Finquirer-6.2.1.tgz", - "integrity": "sha1-mUP8SIIWG9sLDJJ2dpx1sy2/zVI=", - "dev": true, - "requires": { - "ansi-escapes": "^3.0.0", - "chalk": "^2.0.0", - "cli-cursor": "^2.1.0", - "cli-width": "^2.0.0", - "external-editor": "^3.0.0", - "figures": "^2.0.0", - "lodash": "^4.17.10", - "mute-stream": "0.0.7", - "run-async": "^2.2.0", - "rxjs": "^6.1.0", - "string-width": "^2.1.0", - "strip-ansi": "^5.0.0", - "through": "^2.3.6" - } - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/is-fullwidth-code-point/download/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", - "dev": true - }, - "is-root": { - "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/is-root/download/is-root-2.0.0.tgz", - "integrity": "sha1-g40egjGBROWm93gZ2QIHZFrMcBk=", - "dev": true - }, - "json5": { - "version": "1.0.1", - "resolved": "https://registry.npm.taobao.org/json5/download/json5-1.0.1.tgz", - "integrity": "sha1-d5+wAYYE+oVOrL9iUhgNg1Q+Pb4=", - "dev": true, - "requires": { - "minimist": "^1.2.0" - } - }, - "loader-utils": { - "version": "1.2.3", - "resolved": "https://registry.npm.taobao.org/loader-utils/download/loader-utils-1.2.3.tgz", - "integrity": "sha1-H/XcaRHJ8KBiUxpMBLYJQGEIwsc=", - "dev": true, - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^2.0.0", - "json5": "^1.0.1" - } - }, - "mimic-fn": { - "version": "1.2.0", - "resolved": "https://registry.npm.taobao.org/mimic-fn/download/mimic-fn-1.2.0.tgz", - "integrity": "sha1-ggyGo5M0ZA6ZUWkovQP8qIBX0CI=", - "dev": true - }, - "mute-stream": { - "version": "0.0.7", - "resolved": "https://registry.npm.taobao.org/mute-stream/download/mute-stream-0.0.7.tgz", - "integrity": "sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=", - "dev": true - }, - "onetime": { - "version": "2.0.1", - "resolved": "https://registry.npm.taobao.org/onetime/download/onetime-2.0.1.tgz", - "integrity": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=", - "dev": true, - "requires": { - "mimic-fn": "^1.0.0" - } - }, - "opn": { - "version": "5.4.0", - "resolved": "https://registry.npm.taobao.org/opn/download/opn-5.4.0.tgz", - "integrity": "sha1-y1Reeqt4VivrEao7+rxwQuF2EDU=", - "dev": true, - "requires": { - "is-wsl": "^1.1.0" - } - }, - "path-key": { - "version": "2.0.1", - "resolved": "https://registry.npm.taobao.org/path-key/download/path-key-2.0.1.tgz?cache=0&sync_timestamp=1574445307008&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fpath-key%2Fdownload%2Fpath-key-2.0.1.tgz", - "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", - "dev": true - }, - "pify": { - "version": "3.0.0", - "resolved": "https://registry.npm.taobao.org/pify/download/pify-3.0.0.tgz", - "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", - "dev": true - }, - "react-dev-utils": { - "version": "7.0.5", - "resolved": "https://registry.npm.taobao.org/react-dev-utils/download/react-dev-utils-7.0.5.tgz", - "integrity": "sha1-y5U3XQGuccons8dhYAbvenfRTo4=", - "dev": true, - "requires": { - "@babel/code-frame": "7.0.0", - "address": "1.0.3", - "browserslist": "4.4.1", - "chalk": "2.4.2", - "cross-spawn": "6.0.5", - "detect-port-alt": "1.1.6", - "escape-string-regexp": "1.0.5", - "filesize": "3.6.1", - "find-up": "3.0.0", - "global-modules": "2.0.0", - "globby": "8.0.2", - "gzip-size": "5.0.0", - "immer": "1.10.0", - "inquirer": "6.2.1", - "is-root": "2.0.0", - "loader-utils": "1.2.3", - "opn": "5.4.0", - "pkg-up": "2.0.0", - "react-error-overlay": "^5.1.4", - "recursive-readdir": "2.2.2", - "shell-quote": "1.6.1", - "sockjs-client": "1.3.0", - "strip-ansi": "5.0.0", - "text-table": "0.2.0" - } - }, - "react-error-overlay": { - "version": "5.1.6", - "resolved": "https://registry.npm.taobao.org/react-error-overlay/download/react-error-overlay-5.1.6.tgz", - "integrity": "sha1-DNc0B8XRQfljiuHgxj57K/fpkp0=", - "dev": true - }, - "restore-cursor": { - "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/restore-cursor/download/restore-cursor-2.0.0.tgz", - "integrity": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=", - "dev": true, - "requires": { - "onetime": "^2.0.0", - "signal-exit": "^3.0.2" - } - }, - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npm.taobao.org/semver/download/semver-5.7.1.tgz?cache=0&sync_timestamp=1586886301819&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-5.7.1.tgz", - "integrity": "sha1-qVT5Ma66UI0we78Gnv8MAclhFvc=", - "dev": true - }, - "shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npm.taobao.org/shebang-command/download/shebang-command-1.2.0.tgz", - "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", - "dev": true, - "requires": { - "shebang-regex": "^1.0.0" - } - }, - "shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/shebang-regex/download/shebang-regex-1.0.0.tgz", - "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", - "dev": true - }, - "shell-quote": { - "version": "1.6.1", - "resolved": "https://registry.npm.taobao.org/shell-quote/download/shell-quote-1.6.1.tgz", - "integrity": "sha1-9HgZSczkAmlxJ0MOo7PFR29IF2c=", - "dev": true, - "requires": { - "array-filter": "~0.0.0", - "array-map": "~0.0.0", - "array-reduce": "~0.0.0", - "jsonify": "~0.0.0" - } - }, - "sockjs-client": { - "version": "1.3.0", - "resolved": "https://registry.npm.taobao.org/sockjs-client/download/sockjs-client-1.3.0.tgz", - "integrity": "sha1-EvydbLZj2lc509xftuhofalcsXc=", - "dev": true, - "requires": { - "debug": "^3.2.5", - "eventsource": "^1.0.7", - "faye-websocket": "~0.11.1", - "inherits": "^2.0.3", - "json3": "^3.3.2", - "url-parse": "^1.4.3" - } - }, - "string-width": { - "version": "2.1.1", - "resolved": "https://registry.npm.taobao.org/string-width/download/string-width-2.1.1.tgz", - "integrity": "sha1-q5Pyeo3BPSjKyBXEYhQ6bZASrp4=", - "dev": true, - "requires": { - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" - }, - "dependencies": { - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", - "dev": true, - "requires": { - "ansi-regex": "^3.0.0" - } - } - } - }, - "strip-ansi": { - "version": "5.0.0", - "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-5.0.0.tgz", - "integrity": "sha1-949otdCGbCCyybjGG1KYUI3IdW8=", - "dev": true, - "requires": { - "ansi-regex": "^4.0.0" - }, - "dependencies": { - "ansi-regex": { - "version": "4.1.0", - "resolved": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-4.1.0.tgz", - "integrity": "sha1-i5+PCM8ay4Q3Vqg5yox+MWjFGZc=", - "dev": true - } - } - }, - "which": { - "version": "1.3.1", - "resolved": "https://registry.npm.taobao.org/which/download/which-1.3.1.tgz", - "integrity": "sha1-pFBD1U9YBTFtqNYvn1CRjT2nCwo=", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - } } }, "@rescripts/utilities": { "version": "0.0.7", - "resolved": "https://registry.npm.taobao.org/@rescripts/utilities/download/@rescripts/utilities-0.0.7.tgz", - "integrity": "sha1-+sB6mB/MlnTJtVztudpn8D2t2lI=", + "resolved": "https://registry.npmjs.org/@rescripts/utilities/-/utilities-0.0.7.tgz", + "integrity": "sha512-kdk4qvNYXOH7mVJCP/URokp5J+1HCR+tT1Zgtp8X9hLywn6WoKlU/tQ2ECB/NPOHrZjp/DGXWeQBAchLXV8q2w==", "dev": true, "requires": { "ramda": "^0.26.0" } }, + "@sideway/address": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1.0.tgz", + "integrity": "sha512-wAH/JYRXeIFQRsxerIuLjgUu2Xszam+O5xKeatJ4oudShOOirfmsQ1D6LL54XOU2tizpCYku+s1wmU0SYdpoSA==", + "dev": true, + "requires": { + "@hapi/hoek": "^9.0.0" + }, + "dependencies": { + "@hapi/hoek": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.1.0.tgz", + "integrity": "sha512-i9YbZPN3QgfighY/1X1Pu118VUz2Fmmhd6b2n0/O8YVgGGfw0FbUYoA97k7FkpGJ+pLCFEDLUmAPPV4D1kpeFw==", + "dev": true + } + } + }, + "@sideway/formula": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.0.tgz", + "integrity": "sha512-vHe7wZ4NOXVfkoRb8T5otiENVlT7a3IAiw7H5M2+GO+9CDgcVUUsX1zalAztCmwyOr2RUTGJdgB+ZvSVqmdHmg==", + "dev": true + }, + "@sideway/pinpoint": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz", + "integrity": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==", + "dev": true + }, "@sindresorhus/is": { "version": "0.7.0", - "resolved": "https://registry.npm.taobao.org/@sindresorhus/is/download/@sindresorhus/is-0.7.0.tgz", - "integrity": "sha1-mgb08TfuhNffBGDB/bETX/psUP0=" + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.7.0.tgz", + "integrity": "sha512-ONhaKPIufzzrlNbqtWFFd+jlnemX6lJAgq9ZeiZtS7I1PIf/la7CW4m83rTXRnVnsMbW2k56pGYu7AUFJD9Pow==" }, "@svgr/babel-plugin-add-jsx-attribute": { "version": "4.2.0", @@ -4554,6 +3177,52 @@ "@svgr/plugin-jsx": "^4.3.3", "camelcase": "^5.3.1", "cosmiconfig": "^5.2.1" + }, + "dependencies": { + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true + }, + "cosmiconfig": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", + "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", + "dev": true, + "requires": { + "import-fresh": "^2.0.0", + "is-directory": "^0.3.1", + "js-yaml": "^3.13.1", + "parse-json": "^4.0.0" + } + }, + "import-fresh": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", + "integrity": "sha1-2BNVwVYS04bGH53dOSLUMEgipUY=", + "dev": true, + "requires": { + "caller-path": "^2.0.0", + "resolve-from": "^3.0.0" + } + }, + "parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "dev": true, + "requires": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + } + }, + "resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", + "dev": true + } } }, "@svgr/hast-util-to-babel-ast": { @@ -4586,6 +3255,46 @@ "cosmiconfig": "^5.2.1", "merge-deep": "^3.0.2", "svgo": "^1.2.2" + }, + "dependencies": { + "cosmiconfig": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", + "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", + "dev": true, + "requires": { + "import-fresh": "^2.0.0", + "is-directory": "^0.3.1", + "js-yaml": "^3.13.1", + "parse-json": "^4.0.0" + } + }, + "import-fresh": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", + "integrity": "sha1-2BNVwVYS04bGH53dOSLUMEgipUY=", + "dev": true, + "requires": { + "caller-path": "^2.0.0", + "resolve-from": "^3.0.0" + } + }, + "parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "dev": true, + "requires": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + } + }, + "resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", + "dev": true + } } }, "@svgr/webpack": { @@ -4606,8 +3315,8 @@ }, "@szmarczak/http-timer": { "version": "1.1.2", - "resolved": "https://registry.npm.taobao.org/@szmarczak/http-timer/download/@szmarczak/http-timer-1.1.2.tgz", - "integrity": "sha1-sWZeLEYaLNkvTBu/UNVFTeDUtCE=", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz", + "integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==", "requires": { "defer-to-connect": "^1.0.1" } @@ -4622,10 +3331,16 @@ "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==" }, + "@types/anymatch": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@types/anymatch/-/anymatch-1.3.1.tgz", + "integrity": "sha512-/+CRPXpBDpo2RK9C68N3b2cOvO0Cf5B9aPijHsoDQTHivnGSObdOF2BRQOYjojWTDy6nQvMjmqRXIxH55VjxxA==", + "dev": true + }, "@types/babel__core": { - "version": "7.1.9", - "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.9.tgz", - "integrity": "sha512-sY2RsIJ5rpER1u3/aQ8OFSI7qGIy8o1NEEbgb2UaJcvOtXOMpd39ko723NBpjQFg9SIX7TXtjejZVGeIMLhoOw==", + "version": "7.1.12", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.12.tgz", + "integrity": "sha512-wMTHiiTiBAAPebqaPiPDLFA4LYPKr6Ph0Xq/6rq1Ur3v66HXyG+clfR9CNETkD7MQS8ZHvpQOtA53DLws5WAEQ==", "dev": true, "requires": { "@babel/parser": "^7.1.0", @@ -4636,18 +3351,18 @@ } }, "@types/babel__generator": { - "version": "7.6.1", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.1.tgz", - "integrity": "sha512-bBKm+2VPJcMRVwNhxKu8W+5/zT7pwNEqeokFOmbvVSqGzFneNxYcEBro9Ac7/N9tlsaPYnZLK8J1LWKkMsLAew==", + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.2.tgz", + "integrity": "sha512-MdSJnBjl+bdwkLskZ3NGFp9YcXGx5ggLpQQPqtgakVhsWK0hTtNYhjpZLlWQTviGTvF8at+Bvli3jV7faPdgeQ==", "dev": true, "requires": { "@babel/types": "^7.0.0" } }, "@types/babel__template": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.0.2.tgz", - "integrity": "sha512-/K6zCpeW7Imzgab2bLkLEbz0+1JlFSrUMdw7KoIIu+IUdu51GWaBZpd3y1VXGVXzynvGa4DaIaxNZHiON3GXUg==", + "version": "7.4.0", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.0.tgz", + "integrity": "sha512-NTPErx4/FiPCGScH7foPyr+/1Dkzkni+rHiYHHoTjvwou7AQzJkNeD60A9CXRy+ZEN2B1bggmkTMCDb+Mv5k+A==", "dev": true, "requires": { "@babel/parser": "^7.1.0", @@ -4655,14 +3370,20 @@ } }, "@types/babel__traverse": { - "version": "7.0.13", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.0.13.tgz", - "integrity": "sha512-i+zS7t6/s9cdQvbqKDARrcbrPvtJGlbYsMkazo03nTAK3RX9FNrLllXys22uiTGJapPOTZTQ35nHh4ISph4SLQ==", + "version": "7.11.0", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.11.0.tgz", + "integrity": "sha512-kSjgDMZONiIfSH1Nxcr5JIRMwUetDki63FSQfpTCz8ogF3Ulqm8+mr5f78dUYs6vMiB6gBusQqfQmBvHZj/lwg==", "dev": true, "requires": { "@babel/types": "^7.3.0" } }, + "@types/bluebird": { + "version": "3.5.33", + "resolved": "https://registry.npmjs.org/@types/bluebird/-/bluebird-3.5.33.tgz", + "integrity": "sha512-ndEo1xvnYeHxm7I/5sF6tBvnsA4Tdi3zj1keRKRs12SP+2ye2A27NDJ1B6PqkfMbGAcT+mqQVqbZRIrhfOp5PQ==", + "dev": true + }, "@types/cacheable-request": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.1.tgz", @@ -4676,18 +3397,49 @@ } }, "@types/chrome": { - "version": "0.0.123", - "resolved": "https://registry.npmjs.org/@types/chrome/-/chrome-0.0.123.tgz", - "integrity": "sha512-fG6GPreuSY+Z+0e3dtBz5MJ5qyZ2feOZISG8udxBiuwUYqykK1q4NxkjfzL2F5I05LqK2ojP7ZR08Gcfo3ubHQ==", + "version": "0.0.127", + "resolved": "https://registry.npmjs.org/@types/chrome/-/chrome-0.0.127.tgz", + "integrity": "sha512-hBB9EApLYKKn2GvklVkTxVP6vZvxsH9okyIRUinNtMzZHIgIKWQk/ESbX+O5g4Bihfy38+aFGn7Kl7Cxou5JUg==", "requires": { "@types/filesystem": "*", "@types/har-format": "*" } }, - "@types/color-name": { - "version": "1.1.1", - "resolved": "https://registry.npm.taobao.org/@types/color-name/download/@types/color-name-1.1.1.tgz", - "integrity": "sha1-HBJhu+qhCoBVu8XYq4S3sq/IRqA=" + "@types/classnames": { + "version": "2.2.6", + "resolved": "https://registry.npmjs.org/@types/classnames/-/classnames-2.2.6.tgz", + "integrity": "sha512-XHcYvVdbtAxVstjKxuULYqYaWIzHR15yr1pZj4fnGChuBVJlIAp9StJna0ZJNSgxPh4Nac2FL4JM3M11Tm6fqQ==", + "dev": true + }, + "@types/clean-css": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/@types/clean-css/-/clean-css-4.2.3.tgz", + "integrity": "sha512-ET0ldU/vpXecy5vO8JRIhtJWSrk1vzXdJcp3Bjf8bARZynl6vfkhEKY/A7njfNIRlmyTGuVFuqnD6I3tOGdXpQ==", + "dev": true, + "requires": { + "@types/node": "*", + "source-map": "^0.6.0" + } + }, + "@types/concurrently": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/@types/concurrently/-/concurrently-5.2.1.tgz", + "integrity": "sha512-0hN1M4D2TRvJCxT8SnYhVAATontVZ5ASxw98bhYOwvkRdpkSm3fNebMjMZ75CNv1kv7WVDJtkHIWW4YrEWfvhQ==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/csp-html-webpack-plugin": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/csp-html-webpack-plugin/-/csp-html-webpack-plugin-3.0.0.tgz", + "integrity": "sha512-HL/UY/IBY8PWHSTukKng4I0ivAtRZT80VDdmVbtCwn1OHl5k4il2nHLJE/S8/7cs5rysCs9q2aDIYJybro/jYQ==", + "dev": true, + "requires": { + "@types/html-webpack-plugin": "*", + "@types/tapable": "*", + "@types/webpack": "*" + } }, "@types/debug": { "version": "4.1.5", @@ -4695,12 +3447,66 @@ "integrity": "sha512-Q1y515GcOdTHgagaVFhHnIFQ38ygs/kmxdNpvpou+raI9UO3YZcHDngBSYKQklcKlvA7iuQlmIKbzvmxcOE9CQ==", "dev": true }, + "@types/decompress": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/@types/decompress/-/decompress-4.2.3.tgz", + "integrity": "sha512-W24e3Ycz1UZPgr1ZEDHlK4XnvOr+CpJH3qNsFeqXwwlW/9END9gxn3oJSsp7gYdiQxrXUHwUUd3xuzVz37MrZQ==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/download": { + "version": "6.2.4", + "resolved": "https://registry.npmjs.org/@types/download/-/download-6.2.4.tgz", + "integrity": "sha512-Lo5dy3ai6LNnbL663sgdzqL1eib11u1yKH6w3v3IXEOO4kRfQpMn1qWUTaumcHLACjFp1RcBx9tUXEvJoR3vcA==", + "dev": true, + "requires": { + "@types/decompress": "*", + "@types/got": "^8", + "@types/node": "*" + } + }, + "@types/electron-window-state": { + "version": "2.0.34", + "resolved": "https://registry.npmjs.org/@types/electron-window-state/-/electron-window-state-2.0.34.tgz", + "integrity": "sha512-pOJfzi9uoBF9kJa47EXQCizR8g/7gnKs9jLJMMHAWv+oVYVM6Nmgt8/I85z+cdahc9Nn4/f+mHZ7m0sWg0Prbw==", + "dev": true, + "requires": { + "electron": "*" + } + }, + "@types/eslint": { + "version": "7.2.6", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-7.2.6.tgz", + "integrity": "sha512-I+1sYH+NPQ3/tVqCeUSBwTE/0heyvtXqpIopUUArlBm0Kpocb8FbMa3AZ/ASKIFpN3rnEx932TTXDbt9OXsNDw==", + "dev": true, + "requires": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "@types/eslint-plugin-prettier": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@types/eslint-plugin-prettier/-/eslint-plugin-prettier-3.1.0.tgz", + "integrity": "sha512-6/UIuz99F0IvtDez4U3bRwAmN4VKnuw10Ibblf0iZhtNbmbonMSLqs/qqsXrGIAWvjy+vXqYwOljgtLhrETSMg==", + "dev": true, + "requires": { + "@types/eslint": "*" + } + }, "@types/eslint-visitor-keys": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/@types/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz", "integrity": "sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag==", "dev": true }, + "@types/estree": { + "version": "0.0.45", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.45.tgz", + "integrity": "sha512-jnqIUKDUqJbDIUxm0Uj7bnlMnRm1T/eZ9N+AVMqhPgzrba2GhGG5o/jCTwmdPK709nEZsGoMzXEDUjcXHa3W0g==", + "dev": true + }, "@types/filesystem": { "version": "0.0.29", "resolved": "https://registry.npmjs.org/@types/filesystem/-/filesystem-0.0.29.tgz", @@ -4711,13 +3517,13 @@ }, "@types/filewriter": { "version": "0.0.28", - "resolved": "https://registry.npm.taobao.org/@types/filewriter/download/@types/filewriter-0.0.28.tgz", + "resolved": "https://registry.npmjs.org/@types/filewriter/-/filewriter-0.0.28.tgz", "integrity": "sha1-wFTor02d11205jq8dviFFocU1LM=" }, "@types/firefox-webext-browser": { - "version": "78.0.1", - "resolved": "https://registry.npmjs.org/@types/firefox-webext-browser/-/firefox-webext-browser-78.0.1.tgz", - "integrity": "sha512-0d7oiI9K6Y4efP4Crl3JB88zYl7vaRdLtumqz8v6axMF8RCnK0NaGUjL4DnyQ7GLPo98b+s0BSRalaxAXgvPAQ==" + "version": "82.0.0", + "resolved": "https://registry.npmjs.org/@types/firefox-webext-browser/-/firefox-webext-browser-82.0.0.tgz", + "integrity": "sha512-zKHePkjMx42KIUUZCPcUiyu1tpfQXH9VR4iDYfns3HvmKVJzt/TAFT+DFVroos8BI9RH78YgF3Hi/wlC6R6cKA==" }, "@types/fs-extra": { "version": "9.0.1", @@ -4738,10 +3544,57 @@ "@types/node": "*" } }, + "@types/got": { + "version": "8.3.5", + "resolved": "https://registry.npmjs.org/@types/got/-/got-8.3.5.tgz", + "integrity": "sha512-AaXSrIF99SjjtPVNmCmYb388HML+PKEJb/xmj4SbL2ZO0hHuETZZzyDIKfOqaEoAHZEuX4sC+FRFrHYJoIby6A==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, "@types/har-format": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/@types/har-format/-/har-format-1.2.4.tgz", - "integrity": "sha512-iUxzm1meBm3stxUMzRqgOVHjj4Kgpgu5w9fm4X7kPRfSgVRzythsucEN7/jtOo8SQzm+HfcxWWzJS0mJDH/3DQ==" + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/@types/har-format/-/har-format-1.2.5.tgz", + "integrity": "sha512-IG8AE1m2pWtPqQ7wXhFhy6Q59bwwnLwO36v5Rit2FrbXCIp8Sk8E2PfUCreyrdo17STwFSKDAkitVuVYbpEHvQ==" + }, + "@types/hoist-non-react-statics": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.1.tgz", + "integrity": "sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==", + "dev": true, + "requires": { + "@types/react": "*", + "hoist-non-react-statics": "^3.3.0" + } + }, + "@types/html-minifier": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@types/html-minifier/-/html-minifier-4.0.0.tgz", + "integrity": "sha512-eFnGhrKmjWBlnSGNtunetE3UU2Tc/LUl92htFslSSTmpp9EKHQVcYQadCyYfnzUEFB5G/3wLWo/USQS/mEPKrA==", + "dev": true, + "requires": { + "@types/clean-css": "*", + "@types/relateurl": "*", + "@types/uglify-js": "*" + } + }, + "@types/html-minifier-terser": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz", + "integrity": "sha512-giAlZwstKbmvMk1OO7WXSj4OZ0keXAcl2TQq4LWHiiPH2ByaH7WeUzng+Qej8UPxxv+8lRTuouo0iaNDBuzIBA==", + "dev": true + }, + "@types/html-webpack-plugin": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/@types/html-webpack-plugin/-/html-webpack-plugin-3.2.4.tgz", + "integrity": "sha512-WM0s78bfCIXnTlICf+8nWP0IvP+fn4YfiI3uxAX1K1PSRpzs0iysp03j4zR0xTgxSqF67TbOsHs49YXonRAkeQ==", + "dev": true, + "requires": { + "@types/html-minifier": "*", + "@types/tapable": "*", + "@types/webpack": "*" + } }, "@types/http-cache-semantics": { "version": "4.0.0", @@ -4749,6 +3602,21 @@ "integrity": "sha512-c3Xy026kOF7QOTn00hbIllV1dLR9hG9NkSrLQgCVs8NF6sBU+VGWjD3wLPhmh1TYAc7ugCFsvHYMN4VcBN1U1A==", "dev": true }, + "@types/i18next-fs-backend": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@types/i18next-fs-backend/-/i18next-fs-backend-1.0.0.tgz", + "integrity": "sha512-PotQ0NE17NavxXCsdyq9qIKZQOB7+A5O/2nDdvfbfm6/IgvvC1YUO6hxK3nIHASu+QGjO1QV5J8PJw4OL12LMQ==", + "dev": true, + "requires": { + "i18next": "^19.7.0" + } + }, + "@types/is-url": { + "version": "1.2.28", + "resolved": "https://registry.npmjs.org/@types/is-url/-/is-url-1.2.28.tgz", + "integrity": "sha1-kU2r1QVG2bAUKAbkLHK8fCt+B4c=", + "dev": true + }, "@types/istanbul-lib-coverage": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz", @@ -4775,14 +3643,14 @@ } }, "@types/json-schema": { - "version": "7.0.5", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.5.tgz", - "integrity": "sha512-7+2BITlgjgDhH0vvwZU/HZJVyk+2XUlvxXe8dFMedNX/aMkaOq++rMAFXc0tM7ij15QaWlbdQASBR9dihi+bDQ==", + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.6.tgz", + "integrity": "sha512-3c+yGKvVP5Y9TYBEibGNR+kLtijnj7mYrXRg+WpFb2X9xm04g/DXYkfg4hmzJQosc9snFNUPkbYIhu+KAm6jJw==", "dev": true }, "@types/json5": { "version": "0.0.29", - "resolved": "https://registry.npm.taobao.org/@types/json5/download/@types/json5-0.0.29.tgz?cache=0&sync_timestamp=1588201498029&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40types%2Fjson5%2Fdownload%2F%40types%2Fjson5-0.0.29.tgz", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", "integrity": "sha1-7ihweulOEdK4J7y+UnC86n8+ce4=", "dev": true }, @@ -4795,6 +3663,12 @@ "@types/node": "*" } }, + "@types/lodash": { + "version": "4.14.165", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.165.tgz", + "integrity": "sha512-tjSSOTHhI5mCHTy/OOXYIhi2Wt1qcbHmuXD1Ha7q70CgI/I71afO4XtLb/cVexki1oVYchpul/TOuu3Arcdxrg==", + "dev": true + }, "@types/minimatch": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz", @@ -4802,11 +3676,34 @@ "dev": true }, "@types/node": { - "version": "14.0.13", - "resolved": "https://registry.npm.taobao.org/@types/node/download/@types/node-14.0.13.tgz?cache=0&sync_timestamp=1591734944983&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40types%2Fnode%2Fdownload%2F%40types%2Fnode-14.0.13.tgz", - "integrity": "sha1-7hEo6IG4dMNxN0wfciAYk2FkF8k=", + "version": "14.14.14", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.14.tgz", + "integrity": "sha512-UHnOPWVWV1z+VV8k6L1HhG7UbGBgIdghqF3l9Ny9ApPghbjICXkUJSd/b9gOgQfjM1r+37cipdw/HJ3F6ICEnQ==", "dev": true }, + "@types/node-fetch": { + "version": "2.5.7", + "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.5.7.tgz", + "integrity": "sha512-o2WVNf5UhWRkxlf6eq+jMZDu7kjgpgJfl4xVNlvryc95O/6F2ld8ztKX+qu+Rjyet93WAWm5LjeX9H5FGkODvw==", + "dev": true, + "requires": { + "@types/node": "*", + "form-data": "^3.0.0" + }, + "dependencies": { + "form-data": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.0.tgz", + "integrity": "sha512-CKMFDglpbMi6PyN+brwB9Q/GOw0eAnsrEZDgcsH5Krhz5Od/haKHAX0NmQfha2zPPz0JpWzA7GJHGSnvCRLWsg==", + "dev": true, + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + } + } + } + }, "@types/normalize-package-data": { "version": "2.4.0", "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz", @@ -4819,10 +3716,16 @@ "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==", "dev": true }, + "@types/prettier": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.1.5.tgz", + "integrity": "sha512-UEyp8LwZ4Dg30kVU2Q3amHHyTn1jEdhCIE59ANed76GaT1Vp76DD3ZWSAxgCrw6wJ0TqeoBpqmfUHiUDPs//HQ==", + "dev": true + }, "@types/prop-types": { - "version": "15.7.3", - "resolved": "https://registry.npm.taobao.org/@types/prop-types/download/@types/prop-types-15.7.3.tgz", - "integrity": "sha1-KrDV2i5YFflLC51LldHl8kOrLKc=", + "version": "15.7.2", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.2.tgz", + "integrity": "sha512-f8JzJNWVhKtc9dg/dyDNfliTKNOJSLa7Oht/ElZdF/UbMUmAH3rLmAk3ODNjw0mZajDEgatA03tRjB4+Dp/tzA==", "dev": true }, "@types/q": { @@ -4832,13 +3735,42 @@ "dev": true }, "@types/react": { - "version": "16.9.36", - "resolved": "https://registry.npm.taobao.org/@types/react/download/@types/react-16.9.36.tgz?cache=0&sync_timestamp=1591784793799&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40types%2Freact%2Fdownload%2F%40types%2Freact-16.9.36.tgz", - "integrity": "sha1-reWJ/1HiqQPjTuRmngXb+gwc6Ek=", + "version": "17.0.0", + "resolved": "https://registry.npmjs.org/@types/react/-/react-17.0.0.tgz", + "integrity": "sha512-aj/L7RIMsRlWML3YB6KZiXB3fV2t41+5RBGYF8z+tAKU43Px8C3cYUZsDvf1/+Bm4FK21QWBrDutu8ZJ/70qOw==", "dev": true, "requires": { "@types/prop-types": "*", - "csstype": "^2.2.0" + "csstype": "^3.0.2" + }, + "dependencies": { + "csstype": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.5.tgz", + "integrity": "sha512-uVDi8LpBUKQj6sdxNaTetL6FpeCqTjOvAQuQUa/qAqq8oOd4ivkbhgnqayl0dnPal8Tb/yB1tF+gOvCBiicaiQ==", + "dev": true + } + } + }, + "@types/react-dom": { + "version": "17.0.0", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-17.0.0.tgz", + "integrity": "sha512-lUqY7OlkF/RbNtD5nIq7ot8NquXrdFrjSOR6+w9a9RFQevGi1oZO1dcJbXMeONAPKtZ2UrZOEJ5UOCVsxbLk/g==", + "dev": true, + "requires": { + "@types/react": "*" + } + }, + "@types/react-redux": { + "version": "7.1.12", + "resolved": "https://registry.npmjs.org/@types/react-redux/-/react-redux-7.1.12.tgz", + "integrity": "sha512-xZj4/8oRZP5RlJPlC5XPnawPtMn+T2bV4Hxi38AcuoZzXlN/Il/ZPfgXuIq3WG37wVL6FP7suVfmE4BopuqtTg==", + "dev": true, + "requires": { + "@types/hoist-non-react-statics": "^3.3.0", + "@types/react": "*", + "hoist-non-react-statics": "^3.3.0", + "redux": "^4.0.0" } }, "@types/react-transition-group": { @@ -4850,6 +3782,31 @@ "@types/react": "*" } }, + "@types/react-window": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/@types/react-window/-/react-window-1.8.2.tgz", + "integrity": "sha512-gP1xam68Wc4ZTAee++zx6pTdDAH08rAkQrWm4B4F/y6hhmlT9Mgx2q8lTCXnrPHXsr15XjRN9+K2DLKcz44qEQ==", + "dev": true, + "requires": { + "@types/react": "*" + } + }, + "@types/react-window-infinite-loader": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@types/react-window-infinite-loader/-/react-window-infinite-loader-1.0.3.tgz", + "integrity": "sha512-P+XLcLxH23dwDJgPr571vUL79n++pHweCaCa5XocyxEt9YqdV627F6TCM//2zoUbGw/JnT94F8kSJ7/ijcUSIg==", + "dev": true, + "requires": { + "@types/react": "*", + "@types/react-window": "*" + } + }, + "@types/relateurl": { + "version": "0.2.28", + "resolved": "https://registry.npmjs.org/@types/relateurl/-/relateurl-0.2.28.tgz", + "integrity": "sha1-a9p9uGU/piZD9e5p6facEaOS46Y=", + "dev": true + }, "@types/responselike": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.0.tgz", @@ -4859,10 +3816,33 @@ "@types/node": "*" } }, + "@types/rimraf": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/rimraf/-/rimraf-3.0.0.tgz", + "integrity": "sha512-7WhJ0MdpFgYQPXlF4Dx+DhgvlPCfz/x5mHaeDQAKhcenvQP1KCpLQ18JklAqeGMYSAT2PxLpzd0g2/HE7fj7hQ==", + "dev": true, + "requires": { + "@types/glob": "*", + "@types/node": "*" + } + }, "@types/semver": { - "version": "7.3.4", - "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.4.tgz", - "integrity": "sha512-+nVsLKlcUCeMzD2ufHEYuJ9a2ovstb6Dp52A5VsoKxDXgvE051XgHI/33I1EymwkRGQkwnA0LkhnUzituGs4EQ==" + "version": "7.3.2", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.2.tgz", + "integrity": "sha512-WrIesso5O0K9S/T87Uct2AvmEFqul11PnprQ98BZEyWILz8QYJt6/tlmqSOVKLNUtAgYHU7D9WGsOFVDb35nPA==", + "dev": true + }, + "@types/simplebar": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/@types/simplebar/-/simplebar-5.1.1.tgz", + "integrity": "sha512-nC9iBQ4dfvvzJ3iAbL1qCfwjUyaF8EO56l/ApcRXUFK2zLOb8GDXC55V08JZvpzkUxGHtWVunp17KKH/3/KFJA==", + "dev": true + }, + "@types/source-list-map": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.2.tgz", + "integrity": "sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==", + "dev": true }, "@types/stack-utils": { "version": "1.0.1", @@ -4870,10 +3850,95 @@ "integrity": "sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==", "dev": true }, + "@types/styled-components": { + "version": "5.1.7", + "resolved": "https://registry.npmjs.org/@types/styled-components/-/styled-components-5.1.7.tgz", + "integrity": "sha512-BJzPhFygYspyefAGFZTZ/8lCEY4Tk+Iqktvnko3xmJf9LrLqs3+grxPeU3O0zLl6yjbYBopD0/VikbHgXDbJtA==", + "dev": true, + "requires": { + "@types/hoist-non-react-statics": "*", + "@types/react": "*", + "csstype": "^3.0.2" + }, + "dependencies": { + "csstype": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.5.tgz", + "integrity": "sha512-uVDi8LpBUKQj6sdxNaTetL6FpeCqTjOvAQuQUa/qAqq8oOd4ivkbhgnqayl0dnPal8Tb/yB1tF+gOvCBiicaiQ==", + "dev": true + } + } + }, + "@types/tapable": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.6.tgz", + "integrity": "sha512-W+bw9ds02rAQaMvaLYxAbJ6cvguW/iJXNT6lTssS1ps6QdrMKttqEAMEG/b5CR8TZl3/L7/lH0ZV5nNR1LXikA==", + "dev": true + }, + "@types/tmp": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@types/tmp/-/tmp-0.2.0.tgz", + "integrity": "sha512-flgpHJjntpBAdJD43ShRosQvNC0ME97DCfGvZEDlAThQmnerRXrLbX6YgzRBQCZTthET9eAWFAMaYP0m0Y4HzQ==", + "dev": true + }, + "@types/uglify-js": { + "version": "3.11.1", + "resolved": "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.11.1.tgz", + "integrity": "sha512-7npvPKV+jINLu1SpSYVWG8KvyJBhBa8tmzMMdDoVc2pWUYHN8KIXlPJhjJ4LT97c4dXJA2SHL/q6ADbDriZN+Q==", + "dev": true, + "requires": { + "source-map": "^0.6.1" + } + }, + "@types/uuid": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-8.3.0.tgz", + "integrity": "sha512-eQ9qFW/fhfGJF8WKHGEHZEyVWfZxrT+6CLIJGBcZPfxUh/+BnEj+UCGYMlr9qZuX/2AltsvwrGqp0LhEW8D0zQ==", + "dev": true + }, + "@types/wait-on": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@types/wait-on/-/wait-on-5.2.0.tgz", + "integrity": "sha512-3+jsMyPm8aot1mqDUDLOl+dejPvpysUUoUXD6CCRY20MNNhcjEfvdcBnGdnk7DEYs9Hr16ubGJA/9/QW0Df/9g==", + "dev": true + }, + "@types/webpack": { + "version": "4.41.25", + "resolved": "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.25.tgz", + "integrity": "sha512-cr6kZ+4m9lp86ytQc1jPOJXgINQyz3kLLunZ57jznW+WIAL0JqZbGubQk4GlD42MuQL5JGOABrxdpqqWeovlVQ==", + "dev": true, + "requires": { + "@types/anymatch": "*", + "@types/node": "*", + "@types/tapable": "*", + "@types/uglify-js": "*", + "@types/webpack-sources": "*", + "source-map": "^0.6.0" + } + }, + "@types/webpack-sources": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-2.1.0.tgz", + "integrity": "sha512-LXn/oYIpBeucgP1EIJbKQ2/4ZmpvRl+dlrFdX7+94SKRUV3Evy3FsfMZY318vGhkWUS5MPhtOM3w1/hCOAOXcg==", + "dev": true, + "requires": { + "@types/node": "*", + "@types/source-list-map": "*", + "source-map": "^0.7.3" + }, + "dependencies": { + "source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "dev": true + } + } + }, "@types/yargs": { - "version": "15.0.7", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.7.tgz", - "integrity": "sha512-Gf4u3EjaPNcC9cTu4/j2oN14nSVhr8PQ+BvBcBQHAhDZfl0bVIiLgvnRXv/dn58XhTm9UXvBpvJpDlwV65QxOA==", + "version": "15.0.12", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.12.tgz", + "integrity": "sha512-f+fD/fQAo3BCbCDlrUpznF1A5Zp9rB0noS5vnoormHSIPFKL0Z2DcUJ3Gxp5ytH4uLRNxy7AwYUC9exZzqGMAw==", "dev": true, "requires": { "@types/yargs-parser": "*" @@ -4881,234 +3946,366 @@ }, "@types/yargs-parser": { "version": "15.0.0", - "resolved": "https://registry.npm.taobao.org/@types/yargs-parser/download/@types/yargs-parser-15.0.0.tgz", - "integrity": "sha1-yz+fdBhp4gzOMw/765JxWQSDiC0=", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-15.0.0.tgz", + "integrity": "sha512-FA/BWv8t8ZWJ+gEOnLLd8ygxH/2UFbAvgEonyfN6yWGLKc7zVjbpl2Y4CTjid9h2RfgPP6SEt6uHwEOply00yw==", "dev": true }, + "@types/yauzl": { + "version": "2.9.1", + "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.9.1.tgz", + "integrity": "sha512-A1b8SU4D10uoPjwb0lnHmmu8wZhR9d+9o2PKBQT2jU5YPTKsxac6M2qGAdY7VcL+dHHhARVUDmeg0rOrcd9EjA==", + "dev": true, + "optional": true, + "requires": { + "@types/node": "*" + } + }, "@typescript-eslint/eslint-plugin": { - "version": "2.34.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-2.34.0.tgz", - "integrity": "sha512-4zY3Z88rEE99+CNvTbXSyovv2z9PNOVffTWD2W8QF5s2prBQtwN2zadqERcrHpcR7O/+KMI3fcTAmUUhK/iQcQ==", + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.9.1.tgz", + "integrity": "sha512-QRLDSvIPeI1pz5tVuurD+cStNR4sle4avtHhxA+2uyixWGFjKzJ+EaFVRW6dA/jOgjV5DTAjOxboQkRDE8cRlQ==", "dev": true, "requires": { - "@typescript-eslint/experimental-utils": "2.34.0", + "@typescript-eslint/experimental-utils": "4.9.1", + "@typescript-eslint/scope-manager": "4.9.1", + "debug": "^4.1.1", "functional-red-black-tree": "^1.0.1", "regexpp": "^3.0.0", - "tsutils": "^3.17.1" - } - }, - "@typescript-eslint/experimental-utils": { - "version": "2.34.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-2.34.0.tgz", - "integrity": "sha512-eS6FTkq+wuMJ+sgtuNTtcqavWXqsflWcfBnlYhg/nS4aZ1leewkXGbvBhaapn1q6qf4M71bsR1tez5JTRMuqwA==", - "dev": true, - "requires": { - "@types/json-schema": "^7.0.3", - "@typescript-eslint/typescript-estree": "2.34.0", - "eslint-scope": "^5.0.0", - "eslint-utils": "^2.0.0" - } - }, - "@typescript-eslint/parser": { - "version": "2.34.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-2.34.0.tgz", - "integrity": "sha512-03ilO0ucSD0EPTw2X4PntSIRFtDPWjrVq7C3/Z3VQHRC7+13YB55rcJI3Jt+YgeHbjUdJPcPa7b23rXCBokuyA==", - "dev": true, - "requires": { - "@types/eslint-visitor-keys": "^1.0.0", - "@typescript-eslint/experimental-utils": "2.34.0", - "@typescript-eslint/typescript-estree": "2.34.0", - "eslint-visitor-keys": "^1.1.0" - } - }, - "@typescript-eslint/typescript-estree": { - "version": "2.34.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-2.34.0.tgz", - "integrity": "sha512-OMAr+nJWKdlVM9LOqCqh3pQQPwxHAN7Du8DR6dmwCrAmxtiXQnhHJ6tBNtf+cggqfo51SG/FCwnKhXCIM7hnVg==", - "dev": true, - "requires": { - "debug": "^4.1.1", - "eslint-visitor-keys": "^1.1.0", - "glob": "^7.1.6", - "is-glob": "^4.0.1", - "lodash": "^4.17.15", "semver": "^7.3.2", "tsutils": "^3.17.1" } }, - "@webassemblyjs/ast": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.8.5.tgz", - "integrity": "sha512-aJMfngIZ65+t71C3y2nBBg5FFG0Okt9m0XEgWZ7Ywgn1oMAT8cNwx00Uv1cQyHtidq0Xn94R4TAywO+LCQ+ZAQ==", + "@typescript-eslint/experimental-utils": { + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.9.1.tgz", + "integrity": "sha512-c3k/xJqk0exLFs+cWSJxIjqLYwdHCuLWhnpnikmPQD2+NGAx9KjLYlBDcSI81EArh9FDYSL6dslAUSwILeWOxg==", "dev": true, "requires": { - "@webassemblyjs/helper-module-context": "1.8.5", - "@webassemblyjs/helper-wasm-bytecode": "1.8.5", - "@webassemblyjs/wast-parser": "1.8.5" + "@types/json-schema": "^7.0.3", + "@typescript-eslint/scope-manager": "4.9.1", + "@typescript-eslint/types": "4.9.1", + "@typescript-eslint/typescript-estree": "4.9.1", + "eslint-scope": "^5.0.0", + "eslint-utils": "^2.0.0" + }, + "dependencies": { + "eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + } + } + } + }, + "@typescript-eslint/parser": { + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.9.1.tgz", + "integrity": "sha512-Gv2VpqiomvQ2v4UL+dXlQcZ8zCX4eTkoIW+1aGVWT6yTO+6jbxsw7yQl2z2pPl/4B9qa5JXeIbhJpONKjXIy3g==", + "dev": true, + "requires": { + "@typescript-eslint/scope-manager": "4.9.1", + "@typescript-eslint/types": "4.9.1", + "@typescript-eslint/typescript-estree": "4.9.1", + "debug": "^4.1.1" + } + }, + "@typescript-eslint/scope-manager": { + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.9.1.tgz", + "integrity": "sha512-sa4L9yUfD/1sg9Kl8OxPxvpUcqxKXRjBeZxBuZSSV1v13hjfEJkn84n0An2hN8oLQ1PmEl2uA6FkI07idXeFgQ==", + "dev": true, + "requires": { + "@typescript-eslint/types": "4.9.1", + "@typescript-eslint/visitor-keys": "4.9.1" + } + }, + "@typescript-eslint/types": { + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.9.1.tgz", + "integrity": "sha512-fjkT+tXR13ks6Le7JiEdagnwEFc49IkOyys7ueWQ4O8k4quKPwPJudrwlVOJCUQhXo45PrfIvIarcrEjFTNwUA==", + "dev": true + }, + "@typescript-eslint/typescript-estree": { + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.9.1.tgz", + "integrity": "sha512-bzP8vqwX6Vgmvs81bPtCkLtM/Skh36NE6unu6tsDeU/ZFoYthlTXbBmpIrvosgiDKlWTfb2ZpPELHH89aQjeQw==", + "dev": true, + "requires": { + "@typescript-eslint/types": "4.9.1", + "@typescript-eslint/visitor-keys": "4.9.1", + "debug": "^4.1.1", + "globby": "^11.0.1", + "is-glob": "^4.0.1", + "lodash": "^4.17.15", + "semver": "^7.3.2", + "tsutils": "^3.17.1" + }, + "dependencies": { + "@nodelib/fs.stat": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.3.tgz", + "integrity": "sha512-bQBFruR2TAwoevBEd/NWMoAAtNGzTRgdrqnYCc7dhzfoNvqPzLyqlEQnzZ3kVnNrSp25iyxE00/3h2fqGAGArA==", + "dev": true + }, + "array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true + }, + "dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "requires": { + "path-type": "^4.0.0" + } + }, + "fast-glob": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.4.tgz", + "integrity": "sha512-kr/Oo6PX51265qeuCYsyGypiO5uJFgBS0jksyG7FUeCyQzNwYnzrNIMR1NXfkZXsMYXYLRAHgISHBz8gQcxKHQ==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.0", + "merge2": "^1.3.0", + "micromatch": "^4.0.2", + "picomatch": "^2.2.1" + } + }, + "globby": { + "version": "11.0.1", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.1.tgz", + "integrity": "sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ==", + "dev": true, + "requires": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.1.1", + "ignore": "^5.1.4", + "merge2": "^1.3.0", + "slash": "^3.0.0" + } + }, + "ignore": { + "version": "5.1.8", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz", + "integrity": "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==", + "dev": true + }, + "micromatch": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz", + "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==", + "dev": true, + "requires": { + "braces": "^3.0.1", + "picomatch": "^2.0.5" + } + }, + "path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true + } + } + }, + "@typescript-eslint/visitor-keys": { + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.9.1.tgz", + "integrity": "sha512-9gspzc6UqLQHd7lXQS7oWs+hrYggspv/rk6zzEMhCbYwPE/sF7oxo7GAjkS35Tdlt7wguIG+ViWCPtVZHz/ybQ==", + "dev": true, + "requires": { + "@typescript-eslint/types": "4.9.1", + "eslint-visitor-keys": "^2.0.0" + } + }, + "@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.9.0.tgz", + "integrity": "sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==", + "dev": true, + "requires": { + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" } }, "@webassemblyjs/floating-point-hex-parser": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.8.5.tgz", - "integrity": "sha512-9p+79WHru1oqBh9ewP9zW95E3XAo+90oth7S5Re3eQnECGq59ly1Ri5tsIipKGpiStHsUYmY3zMLqtk3gTcOtQ==", + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz", + "integrity": "sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==", "dev": true }, "@webassemblyjs/helper-api-error": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.8.5.tgz", - "integrity": "sha512-Za/tnzsvnqdaSPOUXHyKJ2XI7PDX64kWtURyGiJJZKVEdFOsdKUCPTNEVFZq3zJ2R0G5wc2PZ5gvdTRFgm81zA==", + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz", + "integrity": "sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==", "dev": true }, "@webassemblyjs/helper-buffer": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.8.5.tgz", - "integrity": "sha512-Ri2R8nOS0U6G49Q86goFIPNgjyl6+oE1abW1pS84BuhP1Qcr5JqMwRFT3Ah3ADDDYGEgGs1iyb1DGX+kAi/c/Q==", + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz", + "integrity": "sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==", "dev": true }, "@webassemblyjs/helper-code-frame": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.8.5.tgz", - "integrity": "sha512-VQAadSubZIhNpH46IR3yWO4kZZjMxN1opDrzePLdVKAZ+DFjkGD/rf4v1jap744uPVU6yjL/smZbRIIJTOUnKQ==", + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz", + "integrity": "sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==", "dev": true, "requires": { - "@webassemblyjs/wast-printer": "1.8.5" + "@webassemblyjs/wast-printer": "1.9.0" } }, "@webassemblyjs/helper-fsm": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.8.5.tgz", - "integrity": "sha512-kRuX/saORcg8se/ft6Q2UbRpZwP4y7YrWsLXPbbmtepKr22i8Z4O3V5QE9DbZK908dh5Xya4Un57SDIKwB9eow==", + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz", + "integrity": "sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==", "dev": true }, "@webassemblyjs/helper-module-context": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.8.5.tgz", - "integrity": "sha512-/O1B236mN7UNEU4t9X7Pj38i4VoU8CcMHyy3l2cV/kIF4U5KoHXDVqcDuOs1ltkac90IM4vZdHc52t1x8Yfs3g==", + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz", + "integrity": "sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==", "dev": true, "requires": { - "@webassemblyjs/ast": "1.8.5", - "mamacro": "^0.0.3" + "@webassemblyjs/ast": "1.9.0" } }, "@webassemblyjs/helper-wasm-bytecode": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.8.5.tgz", - "integrity": "sha512-Cu4YMYG3Ddl72CbmpjU/wbP6SACcOPVbHN1dI4VJNJVgFwaKf1ppeFJrwydOG3NDHxVGuCfPlLZNyEdIYlQ6QQ==", + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz", + "integrity": "sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==", "dev": true }, "@webassemblyjs/helper-wasm-section": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.8.5.tgz", - "integrity": "sha512-VV083zwR+VTrIWWtgIUpqfvVdK4ff38loRmrdDBgBT8ADXYsEZ5mPQ4Nde90N3UYatHdYoDIFb7oHzMncI02tA==", + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz", + "integrity": "sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==", "dev": true, "requires": { - "@webassemblyjs/ast": "1.8.5", - "@webassemblyjs/helper-buffer": "1.8.5", - "@webassemblyjs/helper-wasm-bytecode": "1.8.5", - "@webassemblyjs/wasm-gen": "1.8.5" + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0" } }, "@webassemblyjs/ieee754": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.8.5.tgz", - "integrity": "sha512-aaCvQYrvKbY/n6wKHb/ylAJr27GglahUO89CcGXMItrOBqRarUMxWLJgxm9PJNuKULwN5n1csT9bYoMeZOGF3g==", + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz", + "integrity": "sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==", "dev": true, "requires": { "@xtuc/ieee754": "^1.2.0" } }, "@webassemblyjs/leb128": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.8.5.tgz", - "integrity": "sha512-plYUuUwleLIziknvlP8VpTgO4kqNaH57Y3JnNa6DLpu/sGcP6hbVdfdX5aHAV716pQBKrfuU26BJK29qY37J7A==", + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.9.0.tgz", + "integrity": "sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==", "dev": true, "requires": { "@xtuc/long": "4.2.2" } }, "@webassemblyjs/utf8": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.8.5.tgz", - "integrity": "sha512-U7zgftmQriw37tfD934UNInokz6yTmn29inT2cAetAsaU9YeVCveWEwhKL1Mg4yS7q//NGdzy79nlXh3bT8Kjw==", + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.9.0.tgz", + "integrity": "sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==", "dev": true }, "@webassemblyjs/wasm-edit": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.8.5.tgz", - "integrity": "sha512-A41EMy8MWw5yvqj7MQzkDjU29K7UJq1VrX2vWLzfpRHt3ISftOXqrtojn7nlPsZ9Ijhp5NwuODuycSvfAO/26Q==", + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz", + "integrity": "sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==", "dev": true, "requires": { - "@webassemblyjs/ast": "1.8.5", - "@webassemblyjs/helper-buffer": "1.8.5", - "@webassemblyjs/helper-wasm-bytecode": "1.8.5", - "@webassemblyjs/helper-wasm-section": "1.8.5", - "@webassemblyjs/wasm-gen": "1.8.5", - "@webassemblyjs/wasm-opt": "1.8.5", - "@webassemblyjs/wasm-parser": "1.8.5", - "@webassemblyjs/wast-printer": "1.8.5" + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/helper-wasm-section": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0", + "@webassemblyjs/wasm-opt": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0", + "@webassemblyjs/wast-printer": "1.9.0" } }, "@webassemblyjs/wasm-gen": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.8.5.tgz", - "integrity": "sha512-BCZBT0LURC0CXDzj5FXSc2FPTsxwp3nWcqXQdOZE4U7h7i8FqtFK5Egia6f9raQLpEKT1VL7zr4r3+QX6zArWg==", + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz", + "integrity": "sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==", "dev": true, "requires": { - "@webassemblyjs/ast": "1.8.5", - "@webassemblyjs/helper-wasm-bytecode": "1.8.5", - "@webassemblyjs/ieee754": "1.8.5", - "@webassemblyjs/leb128": "1.8.5", - "@webassemblyjs/utf8": "1.8.5" + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" } }, "@webassemblyjs/wasm-opt": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.8.5.tgz", - "integrity": "sha512-HKo2mO/Uh9A6ojzu7cjslGaHaUU14LdLbGEKqTR7PBKwT6LdPtLLh9fPY33rmr5wcOMrsWDbbdCHq4hQUdd37Q==", + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz", + "integrity": "sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==", "dev": true, "requires": { - "@webassemblyjs/ast": "1.8.5", - "@webassemblyjs/helper-buffer": "1.8.5", - "@webassemblyjs/wasm-gen": "1.8.5", - "@webassemblyjs/wasm-parser": "1.8.5" + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0" } }, "@webassemblyjs/wasm-parser": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.8.5.tgz", - "integrity": "sha512-pi0SYE9T6tfcMkthwcgCpL0cM9nRYr6/6fjgDtL6q/ZqKHdMWvxitRi5JcZ7RI4SNJJYnYNaWy5UUrHQy998lw==", + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz", + "integrity": "sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==", "dev": true, "requires": { - "@webassemblyjs/ast": "1.8.5", - "@webassemblyjs/helper-api-error": "1.8.5", - "@webassemblyjs/helper-wasm-bytecode": "1.8.5", - "@webassemblyjs/ieee754": "1.8.5", - "@webassemblyjs/leb128": "1.8.5", - "@webassemblyjs/utf8": "1.8.5" + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" } }, "@webassemblyjs/wast-parser": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.8.5.tgz", - "integrity": "sha512-daXC1FyKWHF1i11obK086QRlsMsY4+tIOKgBqI1lxAnkp9xe9YMcgOxm9kLe+ttjs5aWV2KKE1TWJCN57/Btsg==", + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz", + "integrity": "sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==", "dev": true, "requires": { - "@webassemblyjs/ast": "1.8.5", - "@webassemblyjs/floating-point-hex-parser": "1.8.5", - "@webassemblyjs/helper-api-error": "1.8.5", - "@webassemblyjs/helper-code-frame": "1.8.5", - "@webassemblyjs/helper-fsm": "1.8.5", + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/floating-point-hex-parser": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-code-frame": "1.9.0", + "@webassemblyjs/helper-fsm": "1.9.0", "@xtuc/long": "4.2.2" } }, "@webassemblyjs/wast-printer": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.8.5.tgz", - "integrity": "sha512-w0U0pD4EhlnvRyeJzBqaVSJAo9w/ce7/WPogeXLzGkO6hzhr4GnQIZ4W4uUt5b9ooAaXPtnXlj0gzsXEOUNYMg==", + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz", + "integrity": "sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==", "dev": true, "requires": { - "@webassemblyjs/ast": "1.8.5", - "@webassemblyjs/wast-parser": "1.8.5", + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0", "@xtuc/long": "4.2.2" } }, @@ -5125,9 +4322,15 @@ "dev": true }, "abab": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.4.tgz", - "integrity": "sha512-Eu9ELJWCz/c1e9gTiCY+FceWxcqzjYEbqMgtndnuSqZSUCOL73TWNK2mHfIj4Cw2E/ongOp+JISVNCmovt2KYQ==", + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.5.tgz", + "integrity": "sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==", + "dev": true + }, + "abbrev": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", "dev": true }, "accepts": { @@ -5147,9 +4350,9 @@ "dev": true }, "acorn": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.3.1.tgz", - "integrity": "sha512-tLc0wSnatxAQHVHUapaHdz72pi9KUyHjq5KyHjGg9Y8Ifdc79pTh2XvI6I1/chZbnM7QtNKzh66ooDogPZSleA==", + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz", + "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==", "dev": true }, "acorn-globals": { @@ -5160,20 +4363,12 @@ "requires": { "acorn": "^6.0.1", "acorn-walk": "^6.0.1" - }, - "dependencies": { - "acorn": { - "version": "6.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.1.tgz", - "integrity": "sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA==", - "dev": true - } } }, "acorn-jsx": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.2.0.tgz", - "integrity": "sha512-HiUX/+K2YpkpJ+SzBffkM/AQ2YE03S0U1kjTLVpoJdhZMOWy8qvXVN9JdLqv2QsaQ6MPYQIuNmwD8zOiYUofLQ==", + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.1.tgz", + "integrity": "sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng==", "dev": true }, "acorn-walk": { @@ -5183,9 +4378,9 @@ "dev": true }, "address": { - "version": "1.1.2", - "resolved": "https://registry.npm.taobao.org/address/download/address-1.1.2.tgz", - "integrity": "sha1-vxEWycdYxRt6kz0pa3LCIe2UKLY=", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/address/-/address-1.0.3.tgz", + "integrity": "sha512-z55ocwKBRLryBs394Sm3ushTtBeg6VAeuku7utSoSnsJKvKcnXFIyC6vh27n3rXyxSgkJBBCAvyOn7gSUcTYjg==", "dev": true }, "adjust-sourcemap-loader": { @@ -5201,6 +4396,15 @@ "regex-parser": "2.2.10" }, "dependencies": { + "assert": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/assert/-/assert-1.4.1.tgz", + "integrity": "sha1-mZEtWRg2tab1s0XA8H7vwI/GXZE=", + "dev": true, + "requires": { + "util": "0.10.3" + } + }, "camelcase": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.0.0.tgz", @@ -5209,18 +4413,15 @@ }, "emojis-list": { "version": "2.1.0", - "resolved": "https://registry.npm.taobao.org/emojis-list/download/emojis-list-2.1.0.tgz", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=", "dev": true }, - "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", - "dev": true, - "requires": { - "minimist": "^1.2.0" - } + "inherits": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", + "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=", + "dev": true }, "loader-utils": { "version": "1.2.3", @@ -5232,31 +4433,48 @@ "emojis-list": "^2.0.0", "json5": "^1.0.1" } + }, + "util": { + "version": "0.10.3", + "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", + "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", + "dev": true, + "requires": { + "inherits": "2.0.1" + } } } }, "agent-base": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.1.tgz", - "integrity": "sha512-01q25QQDwLSsyfhrKbn8yuur+JNw0H+0Y4JiGIKd3z9aYk/w/2kxD/Upc+t2ZBBSUNff50VjPsSW2YxM8QYKVg==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", "requires": { "debug": "4" } }, "aggregate-error": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.0.1.tgz", - "integrity": "sha512-quoaXsZ9/BLNae5yiNoUz+Nhkwz83GhWwtYFglcjEQB2NDHCIpApbqXxIFnm4Pq/Nvhrsq5sYJFyohrrxnTGAA==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", "dev": true, "requires": { "clean-stack": "^2.0.0", "indent-string": "^4.0.0" + }, + "dependencies": { + "indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "dev": true + } } }, "ajv": { - "version": "6.12.2", - "resolved": "https://registry.npm.taobao.org/ajv/download/ajv-6.12.2.tgz?cache=0&sync_timestamp=1587338460514&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fajv%2Fdownload%2Fajv-6.12.2.tgz", - "integrity": "sha1-xinF7O0XuvMUQ3kY0tqIyZ1ZWM0=", + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, "requires": { "fast-deep-equal": "^3.1.1", @@ -5272,14 +4490,14 @@ "dev": true }, "ajv-keywords": { - "version": "3.4.1", - "resolved": "https://registry.npm.taobao.org/ajv-keywords/download/ajv-keywords-3.4.1.tgz", - "integrity": "sha1-75FuJxxkrBIXH9g4TqrmsjRYVNo=", + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", "dev": true }, "alphanum-sort": { "version": "1.0.2", - "resolved": "https://registry.npm.taobao.org/alphanum-sort/download/alphanum-sort-1.0.2.tgz", + "resolved": "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz", "integrity": "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=", "dev": true }, @@ -5306,7 +4524,7 @@ }, "is-fullwidth-code-point": { "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/is-fullwidth-code-point/download/is-fullwidth-code-point-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", "dev": true }, @@ -5357,21 +4575,20 @@ }, "ansi-html": { "version": "0.0.7", - "resolved": "https://registry.npm.taobao.org/ansi-html/download/ansi-html-0.0.7.tgz", + "resolved": "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.7.tgz", "integrity": "sha1-gTWEAhliqenm/QOflA0S9WynhZ4=", "dev": true }, "ansi-regex": { "version": "5.0.0", - "resolved": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-5.0.0.tgz", - "integrity": "sha1-OIU59VF5vzkznIGvMKZU1p+Hy3U=" + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", + "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==" }, "ansi-styles": { - "version": "4.2.1", - "resolved": "https://registry.npm.taobao.org/ansi-styles/download/ansi-styles-4.2.1.tgz?cache=0&sync_timestamp=1577903718856&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fansi-styles%2Fdownload%2Fansi-styles-4.2.1.tgz", - "integrity": "sha1-kK51xCTQCNJiTFvynq0xd+v881k=", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "requires": { - "@types/color-name": "^1.1.1", "color-convert": "^2.0.1" } }, @@ -5381,13 +4598,12 @@ "integrity": "sha512-uMgjozySS8adZZYePpaWs8cxB9/kdzmpX6SgJZ+wbz1K5eYk5QMYDVJaZKhxyIHUdnnJkfR7SVgStgH7LkGUyg==" }, "anymatch": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", - "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", - "dev": true, + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz", + "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==", "requires": { - "micromatch": "^3.1.4", - "normalize-path": "^2.1.1" + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" } }, "app-builder-bin": { @@ -5427,14 +4643,20 @@ }, "dependencies": { "hosted-git-info": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-3.0.5.tgz", - "integrity": "sha512-i4dpK6xj9BIpVOTboXIlKG9+8HMKggcrMX7WA24xZtKwX0TPelq/rbaS5rCKeNX8sJXZJGdSxpnEGtta+wismQ==", + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-3.0.7.tgz", + "integrity": "sha512-fWqc0IcuXs+BmE9orLDyVykAG9GJtGLGuZAAqgcckPgv5xad4AcXGIv8galtQvlwutxSlaMcdw7BUtq2EIvqCQ==", "dev": true, "requires": { "lru-cache": "^6.0.0" } }, + "isbinaryfile": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-4.0.6.tgz", + "integrity": "sha512-ORrEy+SNVqUhrCaal4hA4fBzhggQQ+BaLntyPOdoEiwlKZW9BZiJXjg3RMiruE4tPEI3pyVPpySHQF/dKWperg==", + "dev": true + }, "lru-cache": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", @@ -5460,7 +4682,7 @@ }, "archive-type": { "version": "4.0.0", - "resolved": "https://registry.npm.taobao.org/archive-type/download/archive-type-4.0.0.tgz", + "resolved": "https://registry.npmjs.org/archive-type/-/archive-type-4.0.0.tgz", "integrity": "sha1-+S5yIzBW38aWlHJ0nCZ72wRrHXA=", "requires": { "file-type": "^4.2.0" @@ -5468,97 +4690,115 @@ "dependencies": { "file-type": { "version": "4.4.0", - "resolved": "https://registry.npm.taobao.org/file-type/download/file-type-4.4.0.tgz?cache=0&sync_timestamp=1591535671708&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffile-type%2Fdownload%2Ffile-type-4.4.0.tgz", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-4.4.0.tgz", "integrity": "sha1-G2AOX8ofvcboDApwxxyNul95BsU=" } } }, + "are-we-there-yet": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz", + "integrity": "sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==", + "dev": true, + "requires": { + "delegates": "^1.0.0", + "readable-stream": "^2.0.6" + } + }, "argparse": { "version": "1.0.10", - "resolved": "https://registry.npm.taobao.org/argparse/download/argparse-1.0.10.tgz", - "integrity": "sha1-vNZ5HqWuCXJeF+WtmIE0zUCz2RE=", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", "requires": { "sprintf-js": "~1.0.2" } }, "aria-query": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-4.2.2.tgz", - "integrity": "sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-3.0.0.tgz", + "integrity": "sha1-ZbP8wcoRVajJrmTW7uKX8V1RM8w=", "dev": true, "requires": { - "@babel/runtime": "^7.10.2", - "@babel/runtime-corejs3": "^7.10.2" + "ast-types-flow": "0.0.7", + "commander": "^2.11.0" } }, "arity-n": { "version": "1.0.4", - "resolved": "https://registry.npm.taobao.org/arity-n/download/arity-n-1.0.4.tgz", + "resolved": "https://registry.npmjs.org/arity-n/-/arity-n-1.0.4.tgz", "integrity": "sha1-2edrEXM+CFacCEeuezmyhgswt0U=", "dev": true }, "arr-diff": { "version": "4.0.0", - "resolved": "https://registry.npm.taobao.org/arr-diff/download/arr-diff-4.0.0.tgz", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", "dev": true }, "arr-flatten": { "version": "1.1.0", - "resolved": "https://registry.npm.taobao.org/arr-flatten/download/arr-flatten-1.1.0.tgz", - "integrity": "sha1-NgSLv/TntH4TZkQxbJlmnqWukfE=", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", "dev": true }, "arr-union": { "version": "3.1.0", - "resolved": "https://registry.npm.taobao.org/arr-union/download/arr-union-3.1.0.tgz", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", "dev": true }, "array-equal": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/array-equal/download/array-equal-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/array-equal/-/array-equal-1.0.0.tgz", "integrity": "sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM=", "dev": true }, "array-filter": { "version": "0.0.1", - "resolved": "https://registry.npm.taobao.org/array-filter/download/array-filter-0.0.1.tgz", + "resolved": "https://registry.npmjs.org/array-filter/-/array-filter-0.0.1.tgz", "integrity": "sha1-fajPLiZijtcygDWB/SH2fKzS7uw=", "dev": true }, + "array-find-index": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz", + "integrity": "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=", + "dev": true + }, "array-flatten": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", - "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=", "dev": true }, "array-includes": { - "version": "3.1.1", - "resolved": "https://registry.npm.taobao.org/array-includes/download/array-includes-3.1.1.tgz", - "integrity": "sha1-zdZ+aFK9+cEhVGB4ZzIlXtJFk0g=", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.2.tgz", + "integrity": "sha512-w2GspexNQpx+PutG3QpT437/BenZBj0M/MZGn5mzv/MofYqo0xmRHzn4lFsoDlWJ+THYsGJmFlW68WlDFx7VRw==", "dev": true, "requires": { + "call-bind": "^1.0.0", "define-properties": "^1.1.3", - "es-abstract": "^1.17.0", + "es-abstract": "^1.18.0-next.1", + "get-intrinsic": "^1.0.1", "is-string": "^1.0.5" } }, "array-map": { "version": "0.0.0", - "resolved": "https://registry.npm.taobao.org/array-map/download/array-map-0.0.0.tgz", + "resolved": "https://registry.npmjs.org/array-map/-/array-map-0.0.0.tgz", "integrity": "sha1-iKK6tz0c97zVwbEYoAP2b2ZfpmI=", "dev": true }, "array-reduce": { "version": "0.0.0", - "resolved": "https://registry.npm.taobao.org/array-reduce/download/array-reduce-0.0.0.tgz", + "resolved": "https://registry.npmjs.org/array-reduce/-/array-reduce-0.0.0.tgz", "integrity": "sha1-FziZ0//Rx9k4PkR5Ul2+J4yrXys=", "dev": true }, "array-union": { "version": "1.0.2", - "resolved": "https://registry.npm.taobao.org/array-union/download/array-union-1.0.2.tgz", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", "dev": true, "requires": { @@ -5567,49 +4807,72 @@ }, "array-uniq": { "version": "1.0.3", - "resolved": "https://registry.npm.taobao.org/array-uniq/download/array-uniq-1.0.3.tgz", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=", "dev": true }, "array-unique": { "version": "0.3.2", - "resolved": "https://registry.npm.taobao.org/array-unique/download/array-unique-0.3.2.tgz", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", "dev": true }, "array.prototype.flat": { - "version": "1.2.3", - "resolved": "https://registry.npm.taobao.org/array.prototype.flat/download/array.prototype.flat-1.2.3.tgz", - "integrity": "sha1-DegrQmsDGNv9uUAInjiwQ9N/bHs=", + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.2.4.tgz", + "integrity": "sha512-4470Xi3GAPAjZqFcljX2xzckv1qeKPizoNkiS0+O4IoPR2ZNpcjE0pkhdihlDouK+x6QOast26B4Q/O9DJnwSg==", "dev": true, "requires": { + "call-bind": "^1.0.0", "define-properties": "^1.1.3", - "es-abstract": "^1.17.0-next.1" + "es-abstract": "^1.18.0-next.1" } }, "array.prototype.flatmap": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.2.3.tgz", - "integrity": "sha512-OOEk+lkePcg+ODXIpvuU9PAryCikCJyo7GlDG1upleEpQRx6mzL9puEBkozQ5iAx20KV0l3DbyQwqciJtqe5Pg==", + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.2.4.tgz", + "integrity": "sha512-r9Z0zYoxqHz60vvQbWEdXIEtCwHF0yxaWfno9qzXeNHvfyl3BZqygmGzb84dsubyaXLH4husF+NFgMSdpZhk2Q==", "dev": true, "requires": { + "call-bind": "^1.0.0", "define-properties": "^1.1.3", - "es-abstract": "^1.17.0-next.1", + "es-abstract": "^1.18.0-next.1", "function-bind": "^1.1.1" } }, "arrify": { "version": "1.0.1", - "resolved": "https://registry.npm.taobao.org/arrify/download/arrify-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", "integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=", "dev": true }, "asap": { "version": "2.0.6", - "resolved": "https://registry.npm.taobao.org/asap/download/asap-2.0.6.tgz", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=", "dev": true }, + "asar": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/asar/-/asar-3.0.3.tgz", + "integrity": "sha512-k7zd+KoR+n8pl71PvgElcoKHrVNiSXtw7odKbyNpmgKe7EGRF9Pnu3uLOukD37EvavKwVFxOUpqXTIZC5B5Pmw==", + "dev": true, + "requires": { + "@types/glob": "^7.1.1", + "chromium-pickle-js": "^0.2.0", + "commander": "^5.0.0", + "glob": "^7.1.6", + "minimatch": "^3.0.4" + }, + "dependencies": { + "commander": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", + "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==", + "dev": true + } + } + }, "asn1": { "version": "0.2.4", "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", @@ -5640,23 +4903,41 @@ } }, "assert": { - "version": "1.4.1", - "resolved": "https://registry.npm.taobao.org/assert/download/assert-1.4.1.tgz", - "integrity": "sha1-mZEtWRg2tab1s0XA8H7vwI/GXZE=", + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz", + "integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==", "dev": true, "requires": { + "object-assign": "^4.1.1", "util": "0.10.3" + }, + "dependencies": { + "inherits": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", + "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=", + "dev": true + }, + "util": { + "version": "0.10.3", + "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", + "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", + "dev": true, + "requires": { + "inherits": "2.0.1" + } + } } }, "assert-plus": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/assert-plus/download/assert-plus-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", "dev": true }, "assign-symbols": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/assign-symbols/download/assign-symbols-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", "dev": true }, @@ -5666,18 +4947,11 @@ "integrity": "sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==", "requires": { "tslib": "^2.0.1" - }, - "dependencies": { - "tslib": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.0.2.tgz", - "integrity": "sha512-wAH28hcEKwna96/UacuWaVspVLkg4x1aDM9JlzqaQTOFczCktkVAb5fmXChgandR1EraDPs2w8P+ozM+oafwxg==" - } } }, "ast-types-flow": { "version": "0.0.7", - "resolved": "https://registry.npm.taobao.org/ast-types-flow/download/ast-types-flow-0.0.7.tgz", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", "integrity": "sha1-9wtzXGvKGlycItmCw+Oef+ujva0=", "dev": true }, @@ -5687,10 +4961,9 @@ "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==" }, "async": { - "version": "0.9.2", - "resolved": "https://registry.npm.taobao.org/async/download/async-0.9.2.tgz", - "integrity": "sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0=", - "dev": true + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.0.tgz", + "integrity": "sha512-TR2mEZFVOj2pLStYxLht7TyfuRzaydfpxr3k9RpHIzMgw7A64dzsdqCxH1WJyQdoe8T10nDXd9wnEigmiuHIZw==" }, "async-each": { "version": "1.0.3", @@ -5712,25 +4985,25 @@ }, "asynckit": { "version": "0.4.0", - "resolved": "https://registry.npm.taobao.org/asynckit/download/asynckit-0.4.0.tgz", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=", "dev": true }, "at-least-node": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/at-least-node/download/at-least-node-1.0.0.tgz", - "integrity": "sha1-YCzUtG6EStTv/JKoARo8RuAjjcI=" + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==" }, "atob": { "version": "2.1.2", - "resolved": "https://registry.npm.taobao.org/atob/download/atob-2.1.2.tgz", - "integrity": "sha1-bZUX654DDSQ2ZmZR6GvZ9vE1M8k=", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", "dev": true }, - "atob-lite": { - "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/atob-lite/download/atob-lite-2.0.0.tgz", - "integrity": "sha1-D+9a1G8b16hQLGVyfwNn1e5D1pY=", + "author-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/author-regex/-/author-regex-1.0.0.tgz", + "integrity": "sha1-0IiFvmubv5Q5/gh8dihyRfCoFFA=", "dev": true }, "autoprefixer": { @@ -5749,88 +5022,50 @@ }, "dependencies": { "browserslist": { - "version": "4.14.0", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.14.0.tgz", - "integrity": "sha512-pUsXKAF2lVwhmtpeA3LJrZ76jXuusrNyhduuQs7CDFf9foT4Y38aQOserd2lMe5DSSrjf3fx34oHwryuvxAUgQ==", + "version": "4.16.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.16.0.tgz", + "integrity": "sha512-/j6k8R0p3nxOC6kx5JGAxsnhc9ixaWJfYc+TNTzxg6+ARaESAvQGV7h0uNOB4t+pLQJZWzcrMxXOxjgsCj3dqQ==", "dev": true, "requires": { - "caniuse-lite": "^1.0.30001111", - "electron-to-chromium": "^1.3.523", - "escalade": "^3.0.2", - "node-releases": "^1.1.60" + "caniuse-lite": "^1.0.30001165", + "colorette": "^1.2.1", + "electron-to-chromium": "^1.3.621", + "escalade": "^3.1.1", + "node-releases": "^1.1.67" } - }, - "caniuse-lite": { - "version": "1.0.30001114", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001114.tgz", - "integrity": "sha512-ml/zTsfNBM+T1+mjglWRPgVsu2L76GAaADKX5f4t0pbhttEp0WMawJsHDYlFkVZkoA+89uvBRrVrEE4oqenzXQ==", - "dev": true - }, - "electron-to-chromium": { - "version": "1.3.533", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.533.tgz", - "integrity": "sha512-YqAL+NXOzjBnpY+dcOKDlZybJDCOzgsq4koW3fvyty/ldTmsb4QazZpOWmVvZ2m0t5jbBf7L0lIGU3BUipwG+A==", - "dev": true - }, - "node-releases": { - "version": "1.1.60", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.60.tgz", - "integrity": "sha512-gsO4vjEdQaTusZAEebUWp2a5d7dF5DYoIpDG7WySnk7BuZDW+GPpHXoXXuYawRBr/9t5q54tirPz79kFIWg4dA==", - "dev": true } } }, + "awilix": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/awilix/-/awilix-4.3.1.tgz", + "integrity": "sha512-J0AiqggtobprddFJTZKfg4ZXjKzfNhTorwIb0L4/jhSfab4L0Q30C3hfyiHYpcxgUbovsLMRej3ZxQ6hNdcfoA==", + "dev": true, + "requires": { + "camel-case": "^4.1.2", + "glob": "^7.1.6", + "rollup-plugin-copy": "^3.3.0" + } + }, "aws-sign2": { "version": "0.7.0", - "resolved": "https://registry.npm.taobao.org/aws-sign2/download/aws-sign2-0.7.0.tgz", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=", "dev": true }, "aws4": { - "version": "1.10.1", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.10.1.tgz", - "integrity": "sha512-zg7Hz2k5lI8kb7U32998pRRFin7zJlkfezGJjUc2heaD4Pw2wObakCDVzkKztTm/Ln7eiVvYsjqak0Ed4LkMDA==", - "dev": true - }, - "axe-core": { - "version": "3.5.5", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-3.5.5.tgz", - "integrity": "sha512-5P0QZ6J5xGikH780pghEdbEKijCTrruK9KxtPZCFWUpef0f6GipO+xEZ5GKCb020mmqgbiNO6TcA55CriL784Q==", + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz", + "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==", "dev": true }, "axios": { "version": "0.19.2", - "resolved": "https://registry.npm.taobao.org/axios/download/axios-0.19.2.tgz", - "integrity": "sha1-PqNsXYgY0NX4qKl6bTa4bNwAyyc=", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.19.2.tgz", + "integrity": "sha512-fjgm5MvRHLhx+osE2xoekY70AhARk3a6hkN+3Io1jc00jtquGvxYlKlsFUhmUET0V5te6CcZI7lcv2Ym61mjHA==", "dev": true, "requires": { "follow-redirects": "1.5.10" - }, - "dependencies": { - "debug": { - "version": "3.1.0", - "resolved": "https://registry.npm.taobao.org/debug/download/debug-3.1.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fdebug%2Fdownload%2Fdebug-3.1.0.tgz", - "integrity": "sha1-W7WgZyYotkFJVmuhaBnmFRjGcmE=", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "follow-redirects": { - "version": "1.5.10", - "resolved": "https://registry.npm.taobao.org/follow-redirects/download/follow-redirects-1.5.10.tgz", - "integrity": "sha1-e3qfmuov3/NnhqlP9kPtB/T/Xio=", - "dev": true, - "requires": { - "debug": "=3.1.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", - "dev": true - } } }, "axobject-query": { @@ -5841,7 +5076,7 @@ }, "babel-code-frame": { "version": "6.26.0", - "resolved": "https://registry.npm.taobao.org/babel-code-frame/download/babel-code-frame-6.26.0.tgz", + "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz", "integrity": "sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=", "dev": true, "requires": { @@ -5852,19 +5087,19 @@ "dependencies": { "ansi-regex": { "version": "2.1.1", - "resolved": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-2.1.1.tgz", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", "dev": true }, "ansi-styles": { "version": "2.2.1", - "resolved": "https://registry.npm.taobao.org/ansi-styles/download/ansi-styles-2.2.1.tgz?cache=0&sync_timestamp=1577903718856&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fansi-styles%2Fdownload%2Fansi-styles-2.2.1.tgz", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", "dev": true }, "chalk": { "version": "1.1.3", - "resolved": "https://registry.npm.taobao.org/chalk/download/chalk-1.1.3.tgz", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", "dev": true, "requires": { @@ -5877,13 +5112,13 @@ }, "js-tokens": { "version": "3.0.2", - "resolved": "https://registry.npm.taobao.org/js-tokens/download/js-tokens-3.0.2.tgz", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz", "integrity": "sha1-mGbfOVECEw449/mWvOtlRDIJwls=", "dev": true }, "strip-ansi": { "version": "3.0.1", - "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-3.0.1.tgz", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", "dev": true, "requires": { @@ -5892,7 +5127,7 @@ }, "supports-color": { "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/supports-color/download/supports-color-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", "dev": true } @@ -5900,8 +5135,8 @@ }, "babel-eslint": { "version": "10.1.0", - "resolved": "https://registry.npm.taobao.org/babel-eslint/download/babel-eslint-10.1.0.tgz", - "integrity": "sha1-aWjlaKkQt4+zd5zdi2rC9HmUMjI=", + "resolved": "https://registry.npmjs.org/babel-eslint/-/babel-eslint-10.1.0.tgz", + "integrity": "sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==", "dev": true, "requires": { "@babel/code-frame": "^7.0.0", @@ -5910,6 +5145,14 @@ "@babel/types": "^7.7.0", "eslint-visitor-keys": "^1.0.0", "resolve": "^1.12.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true + } } }, "babel-extract-comments": { @@ -5921,144 +5164,6 @@ "babylon": "^6.18.0" } }, - "babel-helper-builder-binary-assignment-operator-visitor": { - "version": "6.24.1", - "resolved": "https://registry.npm.taobao.org/babel-helper-builder-binary-assignment-operator-visitor/download/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz", - "integrity": "sha1-zORReto1b0IgvK6KAsKzRvmlZmQ=", - "dev": true, - "requires": { - "babel-helper-explode-assignable-expression": "^6.24.1", - "babel-runtime": "^6.22.0", - "babel-types": "^6.24.1" - } - }, - "babel-helper-builder-react-jsx": { - "version": "6.26.0", - "resolved": "https://registry.npm.taobao.org/babel-helper-builder-react-jsx/download/babel-helper-builder-react-jsx-6.26.0.tgz", - "integrity": "sha1-Of+DE7dci2Xc7/HzHTg+D/KkCKA=", - "dev": true, - "requires": { - "babel-runtime": "^6.26.0", - "babel-types": "^6.26.0", - "esutils": "^2.0.2" - } - }, - "babel-helper-call-delegate": { - "version": "6.24.1", - "resolved": "https://registry.npm.taobao.org/babel-helper-call-delegate/download/babel-helper-call-delegate-6.24.1.tgz", - "integrity": "sha1-7Oaqzdx25Bw0YfiL/Fdb0Nqi340=", - "dev": true, - "requires": { - "babel-helper-hoist-variables": "^6.24.1", - "babel-runtime": "^6.22.0", - "babel-traverse": "^6.24.1", - "babel-types": "^6.24.1" - } - }, - "babel-helper-define-map": { - "version": "6.26.0", - "resolved": "https://registry.npm.taobao.org/babel-helper-define-map/download/babel-helper-define-map-6.26.0.tgz", - "integrity": "sha1-pfVtq0GiX5fstJjH66ypgZ+Vvl8=", - "dev": true, - "requires": { - "babel-helper-function-name": "^6.24.1", - "babel-runtime": "^6.26.0", - "babel-types": "^6.26.0", - "lodash": "^4.17.4" - } - }, - "babel-helper-explode-assignable-expression": { - "version": "6.24.1", - "resolved": "https://registry.npm.taobao.org/babel-helper-explode-assignable-expression/download/babel-helper-explode-assignable-expression-6.24.1.tgz", - "integrity": "sha1-8luCz33BBDPFX3BZLVdGQArCLKo=", - "dev": true, - "requires": { - "babel-runtime": "^6.22.0", - "babel-traverse": "^6.24.1", - "babel-types": "^6.24.1" - } - }, - "babel-helper-function-name": { - "version": "6.24.1", - "resolved": "https://registry.npm.taobao.org/babel-helper-function-name/download/babel-helper-function-name-6.24.1.tgz", - "integrity": "sha1-00dbjAPtmCQqJbSDUasYOZ01gKk=", - "dev": true, - "requires": { - "babel-helper-get-function-arity": "^6.24.1", - "babel-runtime": "^6.22.0", - "babel-template": "^6.24.1", - "babel-traverse": "^6.24.1", - "babel-types": "^6.24.1" - } - }, - "babel-helper-get-function-arity": { - "version": "6.24.1", - "resolved": "https://registry.npm.taobao.org/babel-helper-get-function-arity/download/babel-helper-get-function-arity-6.24.1.tgz", - "integrity": "sha1-j3eCqpNAfEHTqlCQj4mwMbG2hT0=", - "dev": true, - "requires": { - "babel-runtime": "^6.22.0", - "babel-types": "^6.24.1" - } - }, - "babel-helper-hoist-variables": { - "version": "6.24.1", - "resolved": "https://registry.npm.taobao.org/babel-helper-hoist-variables/download/babel-helper-hoist-variables-6.24.1.tgz", - "integrity": "sha1-HssnaJydJVE+rbyZFKc/VAi+enY=", - "dev": true, - "requires": { - "babel-runtime": "^6.22.0", - "babel-types": "^6.24.1" - } - }, - "babel-helper-optimise-call-expression": { - "version": "6.24.1", - "resolved": "https://registry.npm.taobao.org/babel-helper-optimise-call-expression/download/babel-helper-optimise-call-expression-6.24.1.tgz", - "integrity": "sha1-96E0J7qfc/j0+pk8VKl4gtEkQlc=", - "dev": true, - "requires": { - "babel-runtime": "^6.22.0", - "babel-types": "^6.24.1" - } - }, - "babel-helper-regex": { - "version": "6.26.0", - "resolved": "https://registry.npm.taobao.org/babel-helper-regex/download/babel-helper-regex-6.26.0.tgz", - "integrity": "sha1-MlxZ+QL4LyS3T6zu0DY5VPZJXnI=", - "dev": true, - "requires": { - "babel-runtime": "^6.26.0", - "babel-types": "^6.26.0", - "lodash": "^4.17.4" - } - }, - "babel-helper-remap-async-to-generator": { - "version": "6.24.1", - "resolved": "https://registry.npm.taobao.org/babel-helper-remap-async-to-generator/download/babel-helper-remap-async-to-generator-6.24.1.tgz", - "integrity": "sha1-XsWBgnrXI/7N04HxySg5BnbkVRs=", - "dev": true, - "requires": { - "babel-helper-function-name": "^6.24.1", - "babel-runtime": "^6.22.0", - "babel-template": "^6.24.1", - "babel-traverse": "^6.24.1", - "babel-types": "^6.24.1" - } - }, - "babel-helper-replace-supers": { - "version": "6.24.1", - "resolved": "https://registry.npm.taobao.org/babel-helper-replace-supers/download/babel-helper-replace-supers-6.24.1.tgz", - "integrity": "sha1-v22/5Dk40XNpohPKiov3S2qQqxo=", - "dev": true, - "requires": { - "babel-helper-optimise-call-expression": "^6.24.1", - "babel-messages": "^6.23.0", - "babel-runtime": "^6.22.0", - "babel-template": "^6.24.1", - "babel-traverse": "^6.24.1", - "babel-types": "^6.24.1" - } - }, "babel-jest": { "version": "24.9.0", "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-24.9.0.tgz", @@ -6072,6 +5177,64 @@ "babel-preset-jest": "^24.9.0", "chalk": "^2.4.2", "slash": "^2.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } } }, "babel-loader": { @@ -6085,24 +5248,19 @@ "mkdirp": "^0.5.3", "pify": "^4.0.1", "schema-utils": "^2.6.5" - } - }, - "babel-messages": { - "version": "6.23.0", - "resolved": "https://registry.npm.taobao.org/babel-messages/download/babel-messages-6.23.0.tgz", - "integrity": "sha1-8830cDhYA1sqKVHG7F7fbGLyYw4=", - "dev": true, - "requires": { - "babel-runtime": "^6.22.0" - } - }, - "babel-plugin-check-es2015-constants": { - "version": "6.22.0", - "resolved": "https://registry.npm.taobao.org/babel-plugin-check-es2015-constants/download/babel-plugin-check-es2015-constants-6.22.0.tgz", - "integrity": "sha1-NRV7EBQm/S/9PaP3XH0ekYNbv4o=", - "dev": true, - "requires": { - "babel-runtime": "^6.22.0" + }, + "dependencies": { + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + } + } } }, "babel-plugin-dynamic-import-node": { @@ -6124,6 +5282,57 @@ "find-up": "^3.0.0", "istanbul-lib-instrument": "^3.3.0", "test-exclude": "^5.2.3" + }, + "dependencies": { + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "requires": { + "locate-path": "^3.0.0" + } + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "requires": { + "p-limit": "^2.0.0" + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "dev": true + } } }, "babel-plugin-jest-hoist": { @@ -6144,51 +5353,18 @@ "@babel/runtime": "^7.7.2", "cosmiconfig": "^6.0.0", "resolve": "^1.12.0" - }, - "dependencies": { - "cosmiconfig": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", - "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", - "dev": true, - "requires": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.1.0", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.7.2" - } - }, - "parse-json": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.0.1.tgz", - "integrity": "sha512-ztoZ4/DYeXQq4E21v169sC8qWINGpcosGv9XhTDvg9/hWvx/zrFkc9BiWxR58OJLHGk28j5BL0SDLeV2WmFZlQ==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1", - "lines-and-columns": "^1.1.6" - } - }, - "path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", - "dev": true - } } }, "babel-plugin-named-asset-import": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.6.tgz", - "integrity": "sha512-1aGDUfL1qOOIoqk9QKGIo2lANk+C7ko/fqH0uIyC71x3PEGz0uVP8ISgfEsFuG+FKmjHTvFK/nNM8dowpmUxLA==", + "version": "0.3.7", + "resolved": "https://registry.npmjs.org/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.7.tgz", + "integrity": "sha512-squySRkf+6JGnvjoUtDEjSREJEBirnXi9NqP6rjSYsylxQxqBTz+pkmf395i9E2zsvmYUaI40BHo6SqZUdydlw==", "dev": true }, "babel-plugin-styled-components": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/babel-plugin-styled-components/-/babel-plugin-styled-components-1.11.1.tgz", - "integrity": "sha512-YwrInHyKUk1PU3avIRdiLyCpM++18Rs1NgyMXEAQC33rIXs/vro0A+stf4sT0Gf22Got+xRWB8Cm0tw+qkRzBA==", + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/babel-plugin-styled-components/-/babel-plugin-styled-components-1.12.0.tgz", + "integrity": "sha512-FEiD7l5ZABdJPpLssKXjBUJMYqzbcNzBowfXDCdJhOpbhWiewapUaY+LZGT8R4Jg2TwOjGjG4RKeyrO5p9sBkA==", "dev": true, "requires": { "@babel/helper-annotate-as-pure": "^7.0.0", @@ -6197,311 +5373,21 @@ "lodash": "^4.17.11" } }, - "babel-plugin-syntax-async-functions": { - "version": "6.13.0", - "resolved": "https://registry.npm.taobao.org/babel-plugin-syntax-async-functions/download/babel-plugin-syntax-async-functions-6.13.0.tgz", - "integrity": "sha1-ytnK0RkbWtY0vzCuCHI5HgZHvpU=", - "dev": true - }, - "babel-plugin-syntax-exponentiation-operator": { - "version": "6.13.0", - "resolved": "https://registry.npm.taobao.org/babel-plugin-syntax-exponentiation-operator/download/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz", - "integrity": "sha1-nufoM3KQ2pUoggGmpX9BcDF4MN4=", - "dev": true - }, - "babel-plugin-syntax-flow": { - "version": "6.18.0", - "resolved": "https://registry.npm.taobao.org/babel-plugin-syntax-flow/download/babel-plugin-syntax-flow-6.18.0.tgz", - "integrity": "sha1-TDqyCiryaqIM0lmVw5jE63AxDI0=", - "dev": true - }, "babel-plugin-syntax-jsx": { "version": "6.18.0", - "resolved": "https://registry.npm.taobao.org/babel-plugin-syntax-jsx/download/babel-plugin-syntax-jsx-6.18.0.tgz", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz", "integrity": "sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=", "dev": true }, "babel-plugin-syntax-object-rest-spread": { "version": "6.13.0", - "resolved": "https://registry.npm.taobao.org/babel-plugin-syntax-object-rest-spread/download/babel-plugin-syntax-object-rest-spread-6.13.0.tgz", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz", "integrity": "sha1-/WU28rzhODb/o6VFjEkDpZe7O/U=", "dev": true }, - "babel-plugin-syntax-trailing-function-commas": { - "version": "6.22.0", - "resolved": "https://registry.npm.taobao.org/babel-plugin-syntax-trailing-function-commas/download/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz", - "integrity": "sha1-ugNgk3+NBuQBgKQ/4NVhb/9TLPM=", - "dev": true - }, - "babel-plugin-transform-async-to-generator": { - "version": "6.24.1", - "resolved": "https://registry.npm.taobao.org/babel-plugin-transform-async-to-generator/download/babel-plugin-transform-async-to-generator-6.24.1.tgz", - "integrity": "sha1-ZTbjeK/2yx1VF6wOQOs+n8jQh2E=", - "dev": true, - "requires": { - "babel-helper-remap-async-to-generator": "^6.24.1", - "babel-plugin-syntax-async-functions": "^6.8.0", - "babel-runtime": "^6.22.0" - } - }, - "babel-plugin-transform-es2015-arrow-functions": { - "version": "6.22.0", - "resolved": "https://registry.npm.taobao.org/babel-plugin-transform-es2015-arrow-functions/download/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz", - "integrity": "sha1-RSaSy3EdX3ncf4XkQM5BufJE0iE=", - "dev": true, - "requires": { - "babel-runtime": "^6.22.0" - } - }, - "babel-plugin-transform-es2015-block-scoped-functions": { - "version": "6.22.0", - "resolved": "https://registry.npm.taobao.org/babel-plugin-transform-es2015-block-scoped-functions/download/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz", - "integrity": "sha1-u8UbSflk1wy42OC5ToICRs46YUE=", - "dev": true, - "requires": { - "babel-runtime": "^6.22.0" - } - }, - "babel-plugin-transform-es2015-block-scoping": { - "version": "6.26.0", - "resolved": "https://registry.npm.taobao.org/babel-plugin-transform-es2015-block-scoping/download/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz", - "integrity": "sha1-1w9SmcEwjQXBL0Y4E7CgnnOxiV8=", - "dev": true, - "requires": { - "babel-runtime": "^6.26.0", - "babel-template": "^6.26.0", - "babel-traverse": "^6.26.0", - "babel-types": "^6.26.0", - "lodash": "^4.17.4" - } - }, - "babel-plugin-transform-es2015-classes": { - "version": "6.24.1", - "resolved": "https://registry.npm.taobao.org/babel-plugin-transform-es2015-classes/download/babel-plugin-transform-es2015-classes-6.24.1.tgz?cache=0&sync_timestamp=1587903595751&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fbabel-plugin-transform-es2015-classes%2Fdownload%2Fbabel-plugin-transform-es2015-classes-6.24.1.tgz", - "integrity": "sha1-WkxYpQyclGHlZLSyo7+ryXolhNs=", - "dev": true, - "requires": { - "babel-helper-define-map": "^6.24.1", - "babel-helper-function-name": "^6.24.1", - "babel-helper-optimise-call-expression": "^6.24.1", - "babel-helper-replace-supers": "^6.24.1", - "babel-messages": "^6.23.0", - "babel-runtime": "^6.22.0", - "babel-template": "^6.24.1", - "babel-traverse": "^6.24.1", - "babel-types": "^6.24.1" - } - }, - "babel-plugin-transform-es2015-computed-properties": { - "version": "6.24.1", - "resolved": "https://registry.npm.taobao.org/babel-plugin-transform-es2015-computed-properties/download/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz", - "integrity": "sha1-b+Ko0WiV1WNPTNmZttNICjCBWbM=", - "dev": true, - "requires": { - "babel-runtime": "^6.22.0", - "babel-template": "^6.24.1" - } - }, - "babel-plugin-transform-es2015-destructuring": { - "version": "6.23.0", - "resolved": "https://registry.npm.taobao.org/babel-plugin-transform-es2015-destructuring/download/babel-plugin-transform-es2015-destructuring-6.23.0.tgz", - "integrity": "sha1-mXux8auWf2gtKwh2/jWNYOdlxW0=", - "dev": true, - "requires": { - "babel-runtime": "^6.22.0" - } - }, - "babel-plugin-transform-es2015-duplicate-keys": { - "version": "6.24.1", - "resolved": "https://registry.npm.taobao.org/babel-plugin-transform-es2015-duplicate-keys/download/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz", - "integrity": "sha1-c+s9MQypaePvnskcU3QabxV2Qj4=", - "dev": true, - "requires": { - "babel-runtime": "^6.22.0", - "babel-types": "^6.24.1" - } - }, - "babel-plugin-transform-es2015-for-of": { - "version": "6.23.0", - "resolved": "https://registry.npm.taobao.org/babel-plugin-transform-es2015-for-of/download/babel-plugin-transform-es2015-for-of-6.23.0.tgz", - "integrity": "sha1-9HyVsrYT3x0+zC/bdXNiPHUkhpE=", - "dev": true, - "requires": { - "babel-runtime": "^6.22.0" - } - }, - "babel-plugin-transform-es2015-function-name": { - "version": "6.24.1", - "resolved": "https://registry.npm.taobao.org/babel-plugin-transform-es2015-function-name/download/babel-plugin-transform-es2015-function-name-6.24.1.tgz", - "integrity": "sha1-g0yJhTvDaxrw86TF26qU/Y6sqos=", - "dev": true, - "requires": { - "babel-helper-function-name": "^6.24.1", - "babel-runtime": "^6.22.0", - "babel-types": "^6.24.1" - } - }, - "babel-plugin-transform-es2015-literals": { - "version": "6.22.0", - "resolved": "https://registry.npm.taobao.org/babel-plugin-transform-es2015-literals/download/babel-plugin-transform-es2015-literals-6.22.0.tgz", - "integrity": "sha1-T1SgLWzWbPkVKAAZox0xklN3yi4=", - "dev": true, - "requires": { - "babel-runtime": "^6.22.0" - } - }, - "babel-plugin-transform-es2015-modules-amd": { - "version": "6.24.1", - "resolved": "https://registry.npm.taobao.org/babel-plugin-transform-es2015-modules-amd/download/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz", - "integrity": "sha1-Oz5UAXI5hC1tGcMBHEvS8AoA0VQ=", - "dev": true, - "requires": { - "babel-plugin-transform-es2015-modules-commonjs": "^6.24.1", - "babel-runtime": "^6.22.0", - "babel-template": "^6.24.1" - } - }, - "babel-plugin-transform-es2015-modules-commonjs": { - "version": "6.26.2", - "resolved": "https://registry.npm.taobao.org/babel-plugin-transform-es2015-modules-commonjs/download/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz", - "integrity": "sha1-WKeThjqefKhwvcWogRF/+sJ9tvM=", - "dev": true, - "requires": { - "babel-plugin-transform-strict-mode": "^6.24.1", - "babel-runtime": "^6.26.0", - "babel-template": "^6.26.0", - "babel-types": "^6.26.0" - } - }, - "babel-plugin-transform-es2015-modules-systemjs": { - "version": "6.24.1", - "resolved": "https://registry.npm.taobao.org/babel-plugin-transform-es2015-modules-systemjs/download/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz", - "integrity": "sha1-/4mhQrkRmpBhlfXxBuzzBdlAfSM=", - "dev": true, - "requires": { - "babel-helper-hoist-variables": "^6.24.1", - "babel-runtime": "^6.22.0", - "babel-template": "^6.24.1" - } - }, - "babel-plugin-transform-es2015-modules-umd": { - "version": "6.24.1", - "resolved": "https://registry.npm.taobao.org/babel-plugin-transform-es2015-modules-umd/download/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz", - "integrity": "sha1-rJl+YoXNGO1hdq22B9YCNErThGg=", - "dev": true, - "requires": { - "babel-plugin-transform-es2015-modules-amd": "^6.24.1", - "babel-runtime": "^6.22.0", - "babel-template": "^6.24.1" - } - }, - "babel-plugin-transform-es2015-object-super": { - "version": "6.24.1", - "resolved": "https://registry.npm.taobao.org/babel-plugin-transform-es2015-object-super/download/babel-plugin-transform-es2015-object-super-6.24.1.tgz", - "integrity": "sha1-JM72muIcuDp/hgPa0CH1cusnj40=", - "dev": true, - "requires": { - "babel-helper-replace-supers": "^6.24.1", - "babel-runtime": "^6.22.0" - } - }, - "babel-plugin-transform-es2015-parameters": { - "version": "6.24.1", - "resolved": "https://registry.npm.taobao.org/babel-plugin-transform-es2015-parameters/download/babel-plugin-transform-es2015-parameters-6.24.1.tgz", - "integrity": "sha1-V6w1GrScrxSpfNE7CfZv3wpiXys=", - "dev": true, - "requires": { - "babel-helper-call-delegate": "^6.24.1", - "babel-helper-get-function-arity": "^6.24.1", - "babel-runtime": "^6.22.0", - "babel-template": "^6.24.1", - "babel-traverse": "^6.24.1", - "babel-types": "^6.24.1" - } - }, - "babel-plugin-transform-es2015-shorthand-properties": { - "version": "6.24.1", - "resolved": "https://registry.npm.taobao.org/babel-plugin-transform-es2015-shorthand-properties/download/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz", - "integrity": "sha1-JPh11nIch2YbvZmkYi5R8U3jiqA=", - "dev": true, - "requires": { - "babel-runtime": "^6.22.0", - "babel-types": "^6.24.1" - } - }, - "babel-plugin-transform-es2015-spread": { - "version": "6.22.0", - "resolved": "https://registry.npm.taobao.org/babel-plugin-transform-es2015-spread/download/babel-plugin-transform-es2015-spread-6.22.0.tgz", - "integrity": "sha1-1taKmfia7cRTbIGlQujdnxdG+NE=", - "dev": true, - "requires": { - "babel-runtime": "^6.22.0" - } - }, - "babel-plugin-transform-es2015-sticky-regex": { - "version": "6.24.1", - "resolved": "https://registry.npm.taobao.org/babel-plugin-transform-es2015-sticky-regex/download/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz", - "integrity": "sha1-AMHNsaynERLN8M9hJsLta0V8zbw=", - "dev": true, - "requires": { - "babel-helper-regex": "^6.24.1", - "babel-runtime": "^6.22.0", - "babel-types": "^6.24.1" - } - }, - "babel-plugin-transform-es2015-template-literals": { - "version": "6.22.0", - "resolved": "https://registry.npm.taobao.org/babel-plugin-transform-es2015-template-literals/download/babel-plugin-transform-es2015-template-literals-6.22.0.tgz", - "integrity": "sha1-qEs0UPfp+PH2g51taH2oS7EjbY0=", - "dev": true, - "requires": { - "babel-runtime": "^6.22.0" - } - }, - "babel-plugin-transform-es2015-typeof-symbol": { - "version": "6.23.0", - "resolved": "https://registry.npm.taobao.org/babel-plugin-transform-es2015-typeof-symbol/download/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz", - "integrity": "sha1-3sCfHN3/lLUqxz1QXITfWdzOs3I=", - "dev": true, - "requires": { - "babel-runtime": "^6.22.0" - } - }, - "babel-plugin-transform-es2015-unicode-regex": { - "version": "6.24.1", - "resolved": "https://registry.npm.taobao.org/babel-plugin-transform-es2015-unicode-regex/download/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz", - "integrity": "sha1-04sS9C6nMj9yk4fxinxa4frrNek=", - "dev": true, - "requires": { - "babel-helper-regex": "^6.24.1", - "babel-runtime": "^6.22.0", - "regexpu-core": "^2.0.0" - } - }, - "babel-plugin-transform-exponentiation-operator": { - "version": "6.24.1", - "resolved": "https://registry.npm.taobao.org/babel-plugin-transform-exponentiation-operator/download/babel-plugin-transform-exponentiation-operator-6.24.1.tgz", - "integrity": "sha1-KrDJx/MJj6SJB3cruBP+QejeOg4=", - "dev": true, - "requires": { - "babel-helper-builder-binary-assignment-operator-visitor": "^6.24.1", - "babel-plugin-syntax-exponentiation-operator": "^6.8.0", - "babel-runtime": "^6.22.0" - } - }, - "babel-plugin-transform-flow-strip-types": { - "version": "6.22.0", - "resolved": "https://registry.npm.taobao.org/babel-plugin-transform-flow-strip-types/download/babel-plugin-transform-flow-strip-types-6.22.0.tgz", - "integrity": "sha1-hMtnKTXUNxT9wyvOhFaNh0Qc988=", - "dev": true, - "requires": { - "babel-plugin-syntax-flow": "^6.18.0", - "babel-runtime": "^6.22.0" - } - }, "babel-plugin-transform-object-rest-spread": { "version": "6.26.0", - "resolved": "https://registry.npm.taobao.org/babel-plugin-transform-object-rest-spread/download/babel-plugin-transform-object-rest-spread-6.26.0.tgz", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz", "integrity": "sha1-DzZpLVD+9rfi1LOsFHgTepY7ewY=", "dev": true, "requires": { @@ -6509,71 +5395,12 @@ "babel-runtime": "^6.26.0" } }, - "babel-plugin-transform-react-display-name": { - "version": "6.25.0", - "resolved": "https://registry.npm.taobao.org/babel-plugin-transform-react-display-name/download/babel-plugin-transform-react-display-name-6.25.0.tgz", - "integrity": "sha1-Z+K/Hx6ck6sI25Z5LgU5K/LMKNE=", - "dev": true, - "requires": { - "babel-runtime": "^6.22.0" - } - }, - "babel-plugin-transform-react-jsx": { - "version": "6.24.1", - "resolved": "https://registry.npm.taobao.org/babel-plugin-transform-react-jsx/download/babel-plugin-transform-react-jsx-6.24.1.tgz", - "integrity": "sha1-hAoCjn30YN/DotKfDA2R9jduZqM=", - "dev": true, - "requires": { - "babel-helper-builder-react-jsx": "^6.24.1", - "babel-plugin-syntax-jsx": "^6.8.0", - "babel-runtime": "^6.22.0" - } - }, - "babel-plugin-transform-react-jsx-self": { - "version": "6.22.0", - "resolved": "https://registry.npm.taobao.org/babel-plugin-transform-react-jsx-self/download/babel-plugin-transform-react-jsx-self-6.22.0.tgz", - "integrity": "sha1-322AqdomEqEh5t3XVYvL7PBuY24=", - "dev": true, - "requires": { - "babel-plugin-syntax-jsx": "^6.8.0", - "babel-runtime": "^6.22.0" - } - }, - "babel-plugin-transform-react-jsx-source": { - "version": "6.22.0", - "resolved": "https://registry.npm.taobao.org/babel-plugin-transform-react-jsx-source/download/babel-plugin-transform-react-jsx-source-6.22.0.tgz", - "integrity": "sha1-ZqwSFT9c0tF7PBkmj0vwGX9E7NY=", - "dev": true, - "requires": { - "babel-plugin-syntax-jsx": "^6.8.0", - "babel-runtime": "^6.22.0" - } - }, "babel-plugin-transform-react-remove-prop-types": { "version": "0.4.24", "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz", "integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==", "dev": true }, - "babel-plugin-transform-regenerator": { - "version": "6.26.0", - "resolved": "https://registry.npm.taobao.org/babel-plugin-transform-regenerator/download/babel-plugin-transform-regenerator-6.26.0.tgz", - "integrity": "sha1-4HA2lvveJ/Cj78rPi03KL3s6jy8=", - "dev": true, - "requires": { - "regenerator-transform": "^0.10.0" - } - }, - "babel-plugin-transform-strict-mode": { - "version": "6.24.1", - "resolved": "https://registry.npm.taobao.org/babel-plugin-transform-strict-mode/download/babel-plugin-transform-strict-mode-6.24.1.tgz", - "integrity": "sha1-1fr3qleKZbvlkc9e2uBKDGcCB1g=", - "dev": true, - "requires": { - "babel-runtime": "^6.22.0", - "babel-types": "^6.24.1" - } - }, "babel-polyfill": { "version": "6.26.0", "resolved": "https://registry.npmjs.org/babel-polyfill/-/babel-polyfill-6.26.0.tgz", @@ -6593,61 +5420,6 @@ } } }, - "babel-preset-env": { - "version": "1.7.0", - "resolved": "https://registry.npm.taobao.org/babel-preset-env/download/babel-preset-env-1.7.0.tgz", - "integrity": "sha1-3qefpOvriDzTXasH4mDBycBN93o=", - "dev": true, - "requires": { - "babel-plugin-check-es2015-constants": "^6.22.0", - "babel-plugin-syntax-trailing-function-commas": "^6.22.0", - "babel-plugin-transform-async-to-generator": "^6.22.0", - "babel-plugin-transform-es2015-arrow-functions": "^6.22.0", - "babel-plugin-transform-es2015-block-scoped-functions": "^6.22.0", - "babel-plugin-transform-es2015-block-scoping": "^6.23.0", - "babel-plugin-transform-es2015-classes": "^6.23.0", - "babel-plugin-transform-es2015-computed-properties": "^6.22.0", - "babel-plugin-transform-es2015-destructuring": "^6.23.0", - "babel-plugin-transform-es2015-duplicate-keys": "^6.22.0", - "babel-plugin-transform-es2015-for-of": "^6.23.0", - "babel-plugin-transform-es2015-function-name": "^6.22.0", - "babel-plugin-transform-es2015-literals": "^6.22.0", - "babel-plugin-transform-es2015-modules-amd": "^6.22.0", - "babel-plugin-transform-es2015-modules-commonjs": "^6.23.0", - "babel-plugin-transform-es2015-modules-systemjs": "^6.23.0", - "babel-plugin-transform-es2015-modules-umd": "^6.23.0", - "babel-plugin-transform-es2015-object-super": "^6.22.0", - "babel-plugin-transform-es2015-parameters": "^6.23.0", - "babel-plugin-transform-es2015-shorthand-properties": "^6.22.0", - "babel-plugin-transform-es2015-spread": "^6.22.0", - "babel-plugin-transform-es2015-sticky-regex": "^6.22.0", - "babel-plugin-transform-es2015-template-literals": "^6.22.0", - "babel-plugin-transform-es2015-typeof-symbol": "^6.23.0", - "babel-plugin-transform-es2015-unicode-regex": "^6.22.0", - "babel-plugin-transform-exponentiation-operator": "^6.22.0", - "babel-plugin-transform-regenerator": "^6.22.0", - "browserslist": "^3.2.6", - "invariant": "^2.2.2", - "semver": "^5.3.0" - }, - "dependencies": { - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npm.taobao.org/semver/download/semver-5.7.1.tgz?cache=0&sync_timestamp=1586886301819&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-5.7.1.tgz", - "integrity": "sha1-qVT5Ma66UI0we78Gnv8MAclhFvc=", - "dev": true - } - } - }, - "babel-preset-flow": { - "version": "6.23.0", - "resolved": "https://registry.npm.taobao.org/babel-preset-flow/download/babel-preset-flow-6.23.0.tgz", - "integrity": "sha1-5xIYiHCFrpoktb5Baa/7WZgWxJ0=", - "dev": true, - "requires": { - "babel-plugin-transform-flow-strip-types": "^6.22.0" - } - }, "babel-preset-jest": { "version": "24.9.0", "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-24.9.0.tgz", @@ -6658,20 +5430,6 @@ "babel-plugin-jest-hoist": "^24.9.0" } }, - "babel-preset-react": { - "version": "6.24.1", - "resolved": "https://registry.npm.taobao.org/babel-preset-react/download/babel-preset-react-6.24.1.tgz", - "integrity": "sha1-umnfrqRfw+xjm2pOzqbhdwLJE4A=", - "dev": true, - "requires": { - "babel-plugin-syntax-jsx": "^6.3.13", - "babel-plugin-transform-react-display-name": "^6.23.0", - "babel-plugin-transform-react-jsx": "^6.24.1", - "babel-plugin-transform-react-jsx-self": "^6.22.0", - "babel-plugin-transform-react-jsx-source": "^6.22.0", - "babel-preset-flow": "^6.23.0" - } - }, "babel-preset-react-app": { "version": "9.1.2", "resolved": "https://registry.npmjs.org/babel-preset-react-app/-/babel-preset-react-app-9.1.2.tgz", @@ -6836,35 +5594,18 @@ } }, "browserslist": { - "version": "4.14.0", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.14.0.tgz", - "integrity": "sha512-pUsXKAF2lVwhmtpeA3LJrZ76jXuusrNyhduuQs7CDFf9foT4Y38aQOserd2lMe5DSSrjf3fx34oHwryuvxAUgQ==", + "version": "4.16.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.16.0.tgz", + "integrity": "sha512-/j6k8R0p3nxOC6kx5JGAxsnhc9ixaWJfYc+TNTzxg6+ARaESAvQGV7h0uNOB4t+pLQJZWzcrMxXOxjgsCj3dqQ==", "dev": true, "requires": { - "caniuse-lite": "^1.0.30001111", - "electron-to-chromium": "^1.3.523", - "escalade": "^3.0.2", - "node-releases": "^1.1.60" + "caniuse-lite": "^1.0.30001165", + "colorette": "^1.2.1", + "electron-to-chromium": "^1.3.621", + "escalade": "^3.1.1", + "node-releases": "^1.1.67" } }, - "caniuse-lite": { - "version": "1.0.30001114", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001114.tgz", - "integrity": "sha512-ml/zTsfNBM+T1+mjglWRPgVsu2L76GAaADKX5f4t0pbhttEp0WMawJsHDYlFkVZkoA+89uvBRrVrEE4oqenzXQ==", - "dev": true - }, - "electron-to-chromium": { - "version": "1.3.533", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.533.tgz", - "integrity": "sha512-YqAL+NXOzjBnpY+dcOKDlZybJDCOzgsq4koW3fvyty/ldTmsb4QazZpOWmVvZ2m0t5jbBf7L0lIGU3BUipwG+A==", - "dev": true - }, - "node-releases": { - "version": "1.1.60", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.60.tgz", - "integrity": "sha512-gsO4vjEdQaTusZAEebUWp2a5d7dF5DYoIpDG7WySnk7BuZDW+GPpHXoXXuYawRBr/9t5q54tirPz79kFIWg4dA==", - "dev": true - }, "semver": { "version": "5.7.1", "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", @@ -6875,7 +5616,7 @@ }, "babel-runtime": { "version": "6.26.0", - "resolved": "https://registry.npm.taobao.org/babel-runtime/download/babel-runtime-6.26.0.tgz", + "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz", "integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=", "dev": true, "requires": { @@ -6885,100 +5626,33 @@ "dependencies": { "regenerator-runtime": { "version": "0.11.1", - "resolved": "https://registry.npm.taobao.org/regenerator-runtime/download/regenerator-runtime-0.11.1.tgz", - "integrity": "sha1-vgWtf5v30i4Fb5cmzuUBf78Z4uk=", - "dev": true - } - } - }, - "babel-template": { - "version": "6.26.0", - "resolved": "https://registry.npm.taobao.org/babel-template/download/babel-template-6.26.0.tgz", - "integrity": "sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI=", - "dev": true, - "requires": { - "babel-runtime": "^6.26.0", - "babel-traverse": "^6.26.0", - "babel-types": "^6.26.0", - "babylon": "^6.18.0", - "lodash": "^4.17.4" - } - }, - "babel-traverse": { - "version": "6.26.0", - "resolved": "https://registry.npm.taobao.org/babel-traverse/download/babel-traverse-6.26.0.tgz", - "integrity": "sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4=", - "dev": true, - "requires": { - "babel-code-frame": "^6.26.0", - "babel-messages": "^6.23.0", - "babel-runtime": "^6.26.0", - "babel-types": "^6.26.0", - "babylon": "^6.18.0", - "debug": "^2.6.8", - "globals": "^9.18.0", - "invariant": "^2.2.2", - "lodash": "^4.17.4" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npm.taobao.org/debug/download/debug-2.6.9.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fdebug%2Fdownload%2Fdebug-2.6.9.tgz", - "integrity": "sha1-XRKFFd8TT/Mn6QpMk/Tgd6U2NB8=", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "globals": { - "version": "9.18.0", - "resolved": "https://registry.npm.taobao.org/globals/download/globals-9.18.0.tgz", - "integrity": "sha1-qjiWs+abSH8X4x7SFD1pqOMMLYo=", - "dev": true - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", - "dev": true - } - } - }, - "babel-types": { - "version": "6.26.0", - "resolved": "https://registry.npm.taobao.org/babel-types/download/babel-types-6.26.0.tgz", - "integrity": "sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc=", - "dev": true, - "requires": { - "babel-runtime": "^6.26.0", - "esutils": "^2.0.2", - "lodash": "^4.17.4", - "to-fast-properties": "^1.0.3" - }, - "dependencies": { - "to-fast-properties": { - "version": "1.0.3", - "resolved": "https://registry.npm.taobao.org/to-fast-properties/download/to-fast-properties-1.0.3.tgz", - "integrity": "sha1-uDVx+k2MJbguIxsG46MFXeTKGkc=", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz", + "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==", "dev": true } } }, "babylon": { "version": "6.18.0", - "resolved": "https://registry.npm.taobao.org/babylon/download/babylon-6.18.0.tgz", - "integrity": "sha1-ry87iPpvXB5MY00aD46sT1WzleM=", + "resolved": "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz", + "integrity": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==", + "dev": true + }, + "backo2": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/backo2/-/backo2-1.0.2.tgz", + "integrity": "sha1-MasayLEpNjRj41s+u2n038+6eUc=", "dev": true }, "balanced-match": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/balanced-match/download/balanced-match-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" }, "base": { "version": "0.11.2", - "resolved": "https://registry.npm.taobao.org/base/download/base-0.11.2.tgz", - "integrity": "sha1-e95c7RRbbVUakNuH+DxVi060io8=", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", "dev": true, "requires": { "cache-base": "^1.0.1", @@ -6992,7 +5666,7 @@ "dependencies": { "define-property": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/define-property/download/define-property-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", "dev": true, "requires": { @@ -7001,8 +5675,8 @@ }, "is-accessor-descriptor": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/is-accessor-descriptor/download/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha1-FpwvbT3x+ZJhgHI2XJsOofaHhlY=", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", "dev": true, "requires": { "kind-of": "^6.0.0" @@ -7010,8 +5684,8 @@ }, "is-data-descriptor": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/is-data-descriptor/download/is-data-descriptor-1.0.0.tgz", - "integrity": "sha1-2Eh2Mh0Oet0DmQQGq7u9NrqSaMc=", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", "dev": true, "requires": { "kind-of": "^6.0.0" @@ -7019,71 +5693,43 @@ }, "is-descriptor": { "version": "1.0.2", - "resolved": "https://registry.npm.taobao.org/is-descriptor/download/is-descriptor-1.0.2.tgz", - "integrity": "sha1-OxWXRqZmBLBPjIFSS6NlxfFNhuw=", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", "dev": true, "requires": { "is-accessor-descriptor": "^1.0.0", "is-data-descriptor": "^1.0.0", "kind-of": "^6.0.2" } - }, - "kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npm.taobao.org/kind-of/download/kind-of-6.0.3.tgz", - "integrity": "sha1-B8BQNKbDSfoG4k+jWqdttFgM5N0=", - "dev": true } } }, "base64-js": { - "version": "1.3.1", - "resolved": "https://registry.npm.taobao.org/base64-js/download/base64-js-1.3.1.tgz", - "integrity": "sha1-WOzoy3XdB+ce0IxzarxfrE2/jfE=" + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" }, "batch": { "version": "0.6.1", - "resolved": "https://registry.npm.taobao.org/batch/download/batch-0.6.1.tgz", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", "integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=", "dev": true }, "bcrypt-pbkdf": { "version": "1.0.2", - "resolved": "https://registry.npm.taobao.org/bcrypt-pbkdf/download/bcrypt-pbkdf-1.0.2.tgz", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", "dev": true, "requires": { "tweetnacl": "^0.14.3" } }, - "before-after-hook": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.1.0.tgz", - "integrity": "sha512-IWIbu7pMqyw3EAJHzzHbWa85b6oud/yfKYg5rqB5hNE8CeMi3nX+2C2sj0HswfblST86hpVEOAb9x34NZd6P7A==", - "dev": true - }, - "big-integer": { - "version": "1.6.48", - "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.48.tgz", - "integrity": "sha512-j51egjPa7/i+RdiRuJbPdJ2FIUYYPhvYLjzoYbcMMm62ooO6F94fETG4MTs46zPAF9Brs04OajboA/qTGuz78w==", - "dev": true - }, "big.js": { "version": "5.2.2", - "resolved": "https://registry.npm.taobao.org/big.js/download/big.js-5.2.2.tgz", - "integrity": "sha1-ZfCvOC9Xi83HQr2cKB6cstd2gyg=", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", "dev": true }, - "binary": { - "version": "0.3.0", - "resolved": "https://registry.npm.taobao.org/binary/download/binary-0.3.0.tgz", - "integrity": "sha1-n2BVO8XOjDOG87VTz/R0Yq3sqnk=", - "dev": true, - "requires": { - "buffers": "~0.1.1", - "chainsaw": "~0.1.0" - } - }, "binary-extensions": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.1.0.tgz", @@ -7097,53 +5743,24 @@ "optional": true, "requires": { "file-uri-to-path": "1.0.0" + }, + "dependencies": { + "file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "dev": true, + "optional": true + } } }, "bl": { - "version": "1.2.2", - "resolved": "https://registry.npm.taobao.org/bl/download/bl-1.2.2.tgz", - "integrity": "sha1-oWCRFxcQPAdBDO9j71Gzl8Alr5w=", + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/bl/-/bl-1.2.3.tgz", + "integrity": "sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==", "requires": { "readable-stream": "^2.3.5", "safe-buffer": "^5.1.1" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-2.3.7.tgz", - "integrity": "sha1-Hsoc9xGu+BTAT2IlKjamL2yyO1c=", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - }, - "dependencies": { - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.1.2.tgz", - "integrity": "sha1-mR7GnSluAxN0fVm9/St0XDX4go0=" - } - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npm.taobao.org/string_decoder/download/string_decoder-1.1.1.tgz", - "integrity": "sha1-nPFhG6YmhdcDCunkujQUnDrwP8g=", - "requires": { - "safe-buffer": "~5.1.0" - }, - "dependencies": { - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.1.2.tgz", - "integrity": "sha1-mR7GnSluAxN0fVm9/St0XDX4go0=" - } - } - } } }, "bluebird": { @@ -7162,7 +5779,7 @@ }, "bmp-js": { "version": "0.1.0", - "resolved": "https://registry.npm.taobao.org/bmp-js/download/bmp-js-0.1.0.tgz", + "resolved": "https://registry.npmjs.org/bmp-js/-/bmp-js-0.1.0.tgz", "integrity": "sha1-4Fpj95amwf8l9Hcex62twUjAcjM=" }, "bn.js": { @@ -7213,13 +5830,13 @@ }, "inherits": { "version": "2.0.3", - "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.3.tgz", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", "dev": true }, "ms": { "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", "dev": true }, @@ -7245,7 +5862,7 @@ }, "bonjour": { "version": "3.5.0", - "resolved": "https://registry.npm.taobao.org/bonjour/download/bonjour-3.5.0.tgz", + "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz", "integrity": "sha1-jokKGD2O6aI5OzhExpGkK897yfU=", "dev": true, "requires": { @@ -7255,18 +5872,26 @@ "dns-txt": "^2.0.2", "multicast-dns": "^6.0.1", "multicast-dns-service-types": "^1.1.0" + }, + "dependencies": { + "array-flatten": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", + "dev": true + } } }, "boolbase": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/boolbase/download/boolbase-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=", "dev": true }, "boolean": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/boolean/-/boolean-3.0.1.tgz", - "integrity": "sha512-HRZPIjPcbwAVQvOTxR4YE3o8Xs98NqbbL1iEZDCz7CL8ql0Lt5iOyJFxfnAB0oFs8Oh02F/lLlg30Mexv46LjA==", + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/boolean/-/boolean-3.0.2.tgz", + "integrity": "sha512-RwywHlpCRc3/Wh81MiCKun4ydaIFyW5Ea6JbL6sRCVx5q5irDw7pMXBUFYF/jArQ6YrG36q0kpovc9P/Kd3I4g==", "dev": true, "optional": true }, @@ -7286,6 +5911,12 @@ "widest-line": "^3.1.0" }, "dependencies": { + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true + }, "chalk": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", @@ -7296,21 +5927,6 @@ "supports-color": "^7.1.0" } }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, "type-fest": { "version": "0.8.1", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", @@ -7321,45 +5937,24 @@ }, "brace-expansion": { "version": "1.1.11", - "resolved": "https://registry.npm.taobao.org/brace-expansion/download/brace-expansion-1.1.11.tgz", - "integrity": "sha1-PH/L9SnYcibz0vUrlm/1Jx60Qd0=", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "requires": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "braces": { - "version": "2.3.2", - "resolved": "https://registry.npm.taobao.org/braces/download/braces-2.3.2.tgz", - "integrity": "sha1-WXn9PxTNUxVl5fot8av/8d+u5yk=", - "dev": true, + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", "requires": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } + "fill-range": "^7.0.1" } }, "brorand": { "version": "1.1.0", - "resolved": "https://registry.npm.taobao.org/brorand/download/brorand-1.1.0.tgz", + "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=", "dev": true }, @@ -7380,7 +5975,7 @@ "dependencies": { "resolve": { "version": "1.1.7", - "resolved": "https://registry.npm.taobao.org/resolve/download/resolve-1.1.7.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fresolve%2Fdownload%2Fresolve-1.1.7.tgz", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz", "integrity": "sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=", "dev": true } @@ -7424,21 +6019,13 @@ } }, "browserify-rsa": { - "version": "4.0.1", - "resolved": "https://registry.npm.taobao.org/browserify-rsa/download/browserify-rsa-4.0.1.tgz", - "integrity": "sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ=", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz", + "integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==", "dev": true, "requires": { - "bn.js": "^4.1.0", + "bn.js": "^5.0.0", "randombytes": "^2.0.1" - }, - "dependencies": { - "bn.js": { - "version": "4.11.9", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz", - "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==", - "dev": true - } } }, "browserify-sign": { @@ -7456,6 +6043,25 @@ "parse-asn1": "^5.1.5", "readable-stream": "^3.6.0", "safe-buffer": "^5.2.0" + }, + "dependencies": { + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true + } } }, "browserify-zlib": { @@ -7468,13 +6074,14 @@ } }, "browserslist": { - "version": "3.2.8", - "resolved": "https://registry.npm.taobao.org/browserslist/download/browserslist-3.2.8.tgz?cache=0&sync_timestamp=1587420954072&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fbrowserslist%2Fdownload%2Fbrowserslist-3.2.8.tgz", - "integrity": "sha1-sABTYdZHHw9ZUnl6dvyYXx+Xj8Y=", + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.4.1.tgz", + "integrity": "sha512-pEBxEXg7JwaakBXjATYw/D1YZh4QUSCX/Mnd/wnqSRPPSi1U39iDhDoKGoBUcraKdxDlrYqJxSI5nNvD+dWP2A==", "dev": true, "requires": { - "caniuse-lite": "^1.0.30000844", - "electron-to-chromium": "^1.3.47" + "caniuse-lite": "^1.0.30000929", + "electron-to-chromium": "^1.3.103", + "node-releases": "^1.1.3" } }, "bser": { @@ -7486,25 +6093,19 @@ "node-int64": "^0.4.0" } }, - "btoa-lite": { - "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/btoa-lite/download/btoa-lite-1.0.0.tgz", - "integrity": "sha1-M3dm2hWAEhD92VbCLpxokaudAzc=", - "dev": true - }, "buffer": { - "version": "5.6.0", - "resolved": "https://registry.npm.taobao.org/buffer/download/buffer-5.6.0.tgz?cache=0&sync_timestamp=1588706716358&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fbuffer%2Fdownload%2Fbuffer-5.6.0.tgz", - "integrity": "sha1-oxdJ3H2B2E2wir+Te2uMQDP2J4Y=", + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", "requires": { - "base64-js": "^1.0.2", - "ieee754": "^1.1.4" + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" } }, "buffer-alloc": { "version": "1.2.0", - "resolved": "https://registry.npm.taobao.org/buffer-alloc/download/buffer-alloc-1.2.0.tgz", - "integrity": "sha1-iQ3ZDZI6hz4I4Q5f1RpX5bfM4Ow=", + "resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz", + "integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==", "requires": { "buffer-alloc-unsafe": "^1.1.0", "buffer-fill": "^1.0.0" @@ -7512,28 +6113,28 @@ }, "buffer-alloc-unsafe": { "version": "1.1.0", - "resolved": "https://registry.npm.taobao.org/buffer-alloc-unsafe/download/buffer-alloc-unsafe-1.1.0.tgz", - "integrity": "sha1-vX3CauKXLQ7aJTvgYdupkjScGfA=" + "resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz", + "integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==" }, "buffer-crc32": { "version": "0.2.13", - "resolved": "https://registry.npm.taobao.org/buffer-crc32/download/buffer-crc32-0.2.13.tgz", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", "integrity": "sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=" }, "buffer-equal": { "version": "0.0.1", - "resolved": "https://registry.npm.taobao.org/buffer-equal/download/buffer-equal-0.0.1.tgz", + "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-0.0.1.tgz", "integrity": "sha1-kbx0sR6kBbyRa8aqkI+q+ltKrEs=" }, "buffer-fill": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/buffer-fill/download/buffer-fill-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz", "integrity": "sha1-+PeLdniYiO858gXNY39o5wISKyw=" }, "buffer-from": { "version": "1.1.1", - "resolved": "https://registry.npm.taobao.org/buffer-from/download/buffer-from-1.1.1.tgz", - "integrity": "sha1-MnE7wCj3XAL9txDXx7zsHyxgcO8=", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", + "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==", "dev": true }, "buffer-indexof": { @@ -7542,24 +6143,12 @@ "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==", "dev": true }, - "buffer-indexof-polyfill": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/buffer-indexof-polyfill/-/buffer-indexof-polyfill-1.0.2.tgz", - "integrity": "sha512-I7wzHwA3t1/lwXQh+A5PbNvJxgfo5r3xulgpYDB5zckTu/Z9oUK9biouBKQUjEqzaz3HnAT6TYoovmE+GqSf7A==", - "dev": true - }, "buffer-xor": { "version": "1.0.3", - "resolved": "https://registry.npm.taobao.org/buffer-xor/download/buffer-xor-1.0.3.tgz", + "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=", "dev": true }, - "buffers": { - "version": "0.1.1", - "resolved": "https://registry.npm.taobao.org/buffers/download/buffers-0.1.1.tgz", - "integrity": "sha1-skV5w77U1tOWru5tmorn9Ugqt7s=", - "dev": true - }, "builder-util": { "version": "22.8.1", "resolved": "https://registry.npmjs.org/builder-util/-/builder-util-22.8.1.tgz", @@ -7580,33 +6169,6 @@ "source-map-support": "^0.5.19", "stat-mode": "^1.0.0", "temp-file": "^3.3.7" - }, - "dependencies": { - "chalk": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", - "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } } }, "builder-util-runtime": { @@ -7620,39 +6182,36 @@ }, "builtin-status-codes": { "version": "3.0.0", - "resolved": "https://registry.npm.taobao.org/builtin-status-codes/download/builtin-status-codes-3.0.0.tgz", + "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=", "dev": true }, "bytes": { "version": "3.1.0", - "resolved": "https://registry.npm.taobao.org/bytes/download/bytes-3.1.0.tgz", - "integrity": "sha1-9s95M6Ng4FiPqf3oVlHNx/gF0fY=" + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", + "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==" }, "cacache": { - "version": "13.0.1", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-13.0.1.tgz", - "integrity": "sha512-5ZvAxd05HDDU+y9BVvcqYu2LLXmPnQ0hW62h32g4xBTgL/MppR4/04NHfj/ycM2y6lmTnbw6HVi+1eN0Psba6w==", + "version": "12.0.4", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-12.0.4.tgz", + "integrity": "sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==", "dev": true, "requires": { - "chownr": "^1.1.2", + "bluebird": "^3.5.5", + "chownr": "^1.1.1", "figgy-pudding": "^3.5.1", - "fs-minipass": "^2.0.0", "glob": "^7.1.4", - "graceful-fs": "^4.2.2", - "infer-owner": "^1.0.4", + "graceful-fs": "^4.1.15", + "infer-owner": "^1.0.3", "lru-cache": "^5.1.1", - "minipass": "^3.0.0", - "minipass-collect": "^1.0.2", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.2", + "mississippi": "^3.0.0", "mkdirp": "^0.5.1", "move-concurrently": "^1.0.1", - "p-map": "^3.0.0", "promise-inflight": "^1.0.1", - "rimraf": "^2.7.1", - "ssri": "^7.0.0", - "unique-filename": "^1.1.1" + "rimraf": "^2.6.3", + "ssri": "^6.0.1", + "unique-filename": "^1.1.1", + "y18n": "^4.0.0" }, "dependencies": { "rimraf": { @@ -7663,13 +6222,19 @@ "requires": { "glob": "^7.1.3" } + }, + "y18n": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz", + "integrity": "sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==", + "dev": true } } }, "cache-base": { "version": "1.0.1", - "resolved": "https://registry.npm.taobao.org/cache-base/download/cache-base-1.0.1.tgz", - "integrity": "sha1-Cn9GQWgxyLZi7jb+TnxZ129marI=", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", "dev": true, "requires": { "collection-visit": "^1.0.0", @@ -7684,35 +6249,14 @@ } }, "cacheable-lookup": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-2.0.1.tgz", - "integrity": "sha512-EMMbsiOTcdngM/K6gV/OxF2x0t07+vMOWxZNSCRQMjO2MY2nhZQ6OYhOOpyQrbhqsgtvKGI7hcq6xjnA92USjg==", - "dev": true, - "requires": { - "@types/keyv": "^3.1.1", - "keyv": "^4.0.0" - }, - "dependencies": { - "json-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", - "dev": true - }, - "keyv": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.0.3.tgz", - "integrity": "sha512-zdGa2TOpSZPq5mU6iowDARnMBZgtCqJ11dJROFi6tg6kTn4nuUdU09lFyLFSaHrWqpIJ+EBq4E8/Dc0Vx5vLdA==", - "dev": true, - "requires": { - "json-buffer": "3.0.1" - } - } - } + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz", + "integrity": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==", + "dev": true }, "cacheable-request": { "version": "2.1.4", - "resolved": "https://registry.npm.taobao.org/cacheable-request/download/cacheable-request-2.1.4.tgz", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-2.1.4.tgz", "integrity": "sha1-DYCIAbY0KtM8kd+dC0TcCbkeXD0=", "requires": { "clone-response": "1.0.2", @@ -7726,25 +6270,35 @@ "dependencies": { "get-stream": { "version": "3.0.0", - "resolved": "https://registry.npm.taobao.org/get-stream/download/get-stream-3.0.0.tgz", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=" }, "lowercase-keys": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/lowercase-keys/download/lowercase-keys-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz", "integrity": "sha1-TjNms55/VFfjXxMkvfb4jQv8cwY=" } } }, + "call-bind": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.0.tgz", + "integrity": "sha512-AEXsYIyyDY3MCzbwdhzG3Jx1R0J2wetQyUynn6dYHAO+bg8l1k7jwZtRv4ryryFs7EP+NDlikJlVe59jr0cM2w==", + "dev": true, + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.0" + } + }, "call-me-maybe": { "version": "1.0.1", - "resolved": "https://registry.npm.taobao.org/call-me-maybe/download/call-me-maybe-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.1.tgz", "integrity": "sha1-JtII6onje1y95gJQoV8DHBak1ms=", "dev": true }, "caller-callsite": { "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/caller-callsite/download/caller-callsite-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", "integrity": "sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=", "dev": true, "requires": { @@ -7753,7 +6307,7 @@ "dependencies": { "callsites": { "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/callsites/download/callsites-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", "integrity": "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=", "dev": true } @@ -7761,7 +6315,7 @@ }, "caller-path": { "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/caller-path/download/caller-path-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz", "integrity": "sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=", "dev": true, "requires": { @@ -7770,35 +6324,45 @@ }, "callsites": { "version": "3.1.0", - "resolved": "https://registry.npm.taobao.org/callsites/download/callsites-3.1.0.tgz", - "integrity": "sha1-s2MKvYlDQy9Us/BRkjjjPNffL3M=", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", "dev": true }, "camel-case": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.1.tgz", - "integrity": "sha512-7fa2WcG4fYFkclIvEmxBbTvmibwF2/agfEBc6q3lOpVu0A13ltLsA+Hr/8Hp6kp5f+G7hKi6t8lys6XxP+1K6Q==", + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", "dev": true, "requires": { - "pascal-case": "^3.1.1", - "tslib": "^1.10.0" + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" } }, "camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npm.taobao.org/camelcase/download/camelcase-5.3.1.tgz", - "integrity": "sha1-48mzFWnhBoEd8kL3FXJaH0xJQyA=", + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz", + "integrity": "sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=", "dev": true }, + "camelcase-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz", + "integrity": "sha1-MIvur/3ygRkFHvodkyITyRuPkuc=", + "dev": true, + "requires": { + "camelcase": "^2.0.0", + "map-obj": "^1.0.0" + } + }, "camelize": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/camelize/download/camelize-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/camelize/-/camelize-1.0.0.tgz", "integrity": "sha1-FkpUg+Yw+kMh5a8HAg5TGDGyYJs=", "dev": true }, "can-use-dom": { "version": "0.1.0", - "resolved": "https://registry.npm.taobao.org/can-use-dom/download/can-use-dom-0.1.0.tgz", + "resolved": "https://registry.npmjs.org/can-use-dom/-/can-use-dom-0.1.0.tgz", "integrity": "sha1-IsxKNKCrxDlQ9CxkEQJKP2NmtFo=", "dev": true }, @@ -7812,46 +6376,12 @@ "caniuse-lite": "^1.0.0", "lodash.memoize": "^4.1.2", "lodash.uniq": "^4.5.0" - }, - "dependencies": { - "browserslist": { - "version": "4.14.0", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.14.0.tgz", - "integrity": "sha512-pUsXKAF2lVwhmtpeA3LJrZ76jXuusrNyhduuQs7CDFf9foT4Y38aQOserd2lMe5DSSrjf3fx34oHwryuvxAUgQ==", - "dev": true, - "requires": { - "caniuse-lite": "^1.0.30001111", - "electron-to-chromium": "^1.3.523", - "escalade": "^3.0.2", - "node-releases": "^1.1.60" - }, - "dependencies": { - "caniuse-lite": { - "version": "1.0.30001114", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001114.tgz", - "integrity": "sha512-ml/zTsfNBM+T1+mjglWRPgVsu2L76GAaADKX5f4t0pbhttEp0WMawJsHDYlFkVZkoA+89uvBRrVrEE4oqenzXQ==", - "dev": true - } - } - }, - "electron-to-chromium": { - "version": "1.3.533", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.533.tgz", - "integrity": "sha512-YqAL+NXOzjBnpY+dcOKDlZybJDCOzgsq4koW3fvyty/ldTmsb4QazZpOWmVvZ2m0t5jbBf7L0lIGU3BUipwG+A==", - "dev": true - }, - "node-releases": { - "version": "1.1.60", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.60.tgz", - "integrity": "sha512-gsO4vjEdQaTusZAEebUWp2a5d7dF5DYoIpDG7WySnk7BuZDW+GPpHXoXXuYawRBr/9t5q54tirPz79kFIWg4dA==", - "dev": true - } } }, "caniuse-lite": { - "version": "1.0.30001081", - "resolved": "https://registry.npm.taobao.org/caniuse-lite/download/caniuse-lite-1.0.30001081.tgz", - "integrity": "sha1-QGFaPEFqBHxaTUVnPlJXvxKOs7U=", + "version": "1.0.30001168", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001168.tgz", + "integrity": "sha512-P2zmX7swIXKu+GMMR01TWa4csIKELTNnZKc+f1CjebmZJQtTAEXmpQSoKVJVVcvPGAA0TEYTOUp3VehavZSFPQ==", "dev": true }, "capture-exit": { @@ -7871,66 +6401,24 @@ }, "caseless": { "version": "0.12.0", - "resolved": "https://registry.npm.taobao.org/caseless/download/caseless-0.12.0.tgz", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=", "dev": true }, - "chainsaw": { - "version": "0.1.0", - "resolved": "https://registry.npm.taobao.org/chainsaw/download/chainsaw-0.1.0.tgz", - "integrity": "sha1-XqtQsor+WAdNDVgpE4iCi15fvJg=", - "dev": true, - "requires": { - "traverse": ">=0.3.0 <0.4" - } - }, "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npm.taobao.org/chalk/download/chalk-2.4.2.tgz", - "integrity": "sha1-zUJUFnelQzPPVBpJEIwUMrRMlCQ=", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", "dev": true, "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npm.taobao.org/ansi-styles/download/ansi-styles-3.2.1.tgz?cache=0&sync_timestamp=1577903718856&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fansi-styles%2Fdownload%2Fansi-styles-3.2.1.tgz", - "integrity": "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npm.taobao.org/color-convert/download/color-convert-1.9.3.tgz", - "integrity": "sha1-u3GFBpDh8TZWfeYp0tVHHe2kweg=", - "dev": true, - "requires": { - "color-name": "1.1.3" - } - }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npm.taobao.org/color-name/download/color-name-1.1.3.tgz", - "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", - "dev": true - } + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" } }, "chardet": { "version": "0.7.0", - "resolved": "https://registry.npm.taobao.org/chardet/download/chardet-0.7.0.tgz?cache=0&sync_timestamp=1588893413176&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fchardet%2Fdownload%2Fchardet-0.7.0.tgz", - "integrity": "sha1-kAlISfCTfy7twkJdDSip5fDLrZ4=", - "dev": true - }, - "charenc": { - "version": "0.0.2", - "resolved": "https://registry.npm.taobao.org/charenc/download/charenc-0.0.2.tgz", - "integrity": "sha1-wKHS86cJLgN3S/qD8UwPxXkKhmc=", + "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", + "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", "dev": true }, "checksum": { @@ -7941,10 +6429,42 @@ "optimist": "~0.3.5" } }, + "cheerio": { + "version": "1.0.0-rc.3", + "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.3.tgz", + "integrity": "sha512-0td5ijfUPuubwLUu0OBoe98gZj8C/AA+RW3v67GPlGOrvxWjZmBXiBCRU+I8VEiNyJzjth40POfHiz2RB3gImA==", + "dev": true, + "requires": { + "css-select": "~1.2.0", + "dom-serializer": "~0.1.1", + "entities": "~1.1.1", + "htmlparser2": "^3.9.1", + "lodash": "^4.15.0", + "parse5": "^3.0.1" + }, + "dependencies": { + "dom-serializer": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.1.tgz", + "integrity": "sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA==", + "dev": true, + "requires": { + "domelementtype": "^1.3.0", + "entities": "^1.1.1" + } + }, + "entities": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz", + "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==", + "dev": true + } + } + }, "chokidar": { - "version": "3.4.2", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.4.2.tgz", - "integrity": "sha512-IZHaDeBeI+sZJRX7lGcXsdzgvZqKv6sECqsbErJA4mHWfpRrD8B97kSFN4cQz6nGBGiuFia1MKR4d6c1o8Cv7A==", + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.4.3.tgz", + "integrity": "sha512-DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ==", "requires": { "anymatch": "~3.1.1", "braces": "~3.0.2", @@ -7953,58 +6473,13 @@ "is-binary-path": "~2.1.0", "is-glob": "~4.0.1", "normalize-path": "~3.0.0", - "readdirp": "~3.4.0" - }, - "dependencies": { - "anymatch": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz", - "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==", - "requires": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - } - }, - "braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "requires": { - "fill-range": "^7.0.1" - } - }, - "fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "requires": { - "to-regex-range": "^5.0.1" - } - }, - "is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" - }, - "normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" - }, - "to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "requires": { - "is-number": "^7.0.0" - } - } + "readdirp": "~3.5.0" } }, "chownr": { "version": "1.1.4", - "resolved": "https://registry.npm.taobao.org/chownr/download/chownr-1.1.4.tgz", - "integrity": "sha1-b8nXtC0ypYNZYzdmbn0ICE2izGs=" + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" }, "chrome-trace-event": { "version": "1.0.2", @@ -8013,18 +6488,26 @@ "dev": true, "requires": { "tslib": "^1.9.0" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + } } }, "chromium-pickle-js": { "version": "0.2.0", - "resolved": "https://registry.npm.taobao.org/chromium-pickle-js/download/chromium-pickle-js-0.2.0.tgz", + "resolved": "https://registry.npmjs.org/chromium-pickle-js/-/chromium-pickle-js-0.2.0.tgz", "integrity": "sha1-BKEGZywYsIWrd02YPfo+oTjyIgU=", "dev": true }, "ci-info": { "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/ci-info/download/ci-info-2.0.0.tgz", - "integrity": "sha1-Z6npZL4xpR4V5QENWObxKDQAL0Y=", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", "dev": true }, "cipher-base": { @@ -8039,8 +6522,8 @@ }, "class-utils": { "version": "0.3.6", - "resolved": "https://registry.npm.taobao.org/class-utils/download/class-utils-0.3.6.tgz", - "integrity": "sha1-+TNprouafOAv1B+q0MqDAzGQxGM=", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", "dev": true, "requires": { "arr-union": "^3.1.0", @@ -8051,7 +6534,7 @@ "dependencies": { "define-property": { "version": "0.2.5", - "resolved": "https://registry.npm.taobao.org/define-property/download/define-property-0.2.5.tgz", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", "dev": true, "requires": { @@ -8062,8 +6545,8 @@ }, "classnames": { "version": "2.2.6", - "resolved": "https://registry.npm.taobao.org/classnames/download/classnames-2.2.6.tgz", - "integrity": "sha1-Q5Nb/90pHzJtrQogUwmzjQD2UM4=", + "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.2.6.tgz", + "integrity": "sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q==", "dev": true }, "clean-css": { @@ -8077,7 +6560,7 @@ }, "clean-regexp": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/clean-regexp/download/clean-regexp-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/clean-regexp/-/clean-regexp-1.0.0.tgz", "integrity": "sha1-jffHquUf02h06PjQW5GAvBGj/tc=", "dev": true, "requires": { @@ -8105,6 +6588,12 @@ "restore-cursor": "^3.1.0" } }, + "cli-spinners": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.5.0.tgz", + "integrity": "sha512-PC+AmIuK04E6aeSs/pUccSujsTzBhu4HzC2dL+CfJB/Jcc2qTRbEwZQDfIUpt2Xl8BodYBEq8w4fc0kU2I9DjQ==", + "dev": true + }, "cli-truncate": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", @@ -8115,78 +6604,42 @@ } }, "cli-width": { - "version": "2.2.1", - "resolved": "https://registry.npm.taobao.org/cli-width/download/cli-width-2.2.1.tgz?cache=0&sync_timestamp=1586877902436&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcli-width%2Fdownload%2Fcli-width-2.2.1.tgz", - "integrity": "sha1-sEM9C06chH7xiGik7xb9X8gnHEg=", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", + "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", "dev": true }, "cliui": { - "version": "5.0.0", - "resolved": "https://registry.npm.taobao.org/cliui/download/cliui-5.0.0.tgz", - "integrity": "sha1-3u/P2y6AB4SqNPRvoI4GhRx7u8U=", + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", "dev": true, "requires": { - "string-width": "^3.1.0", - "strip-ansi": "^5.2.0", - "wrap-ansi": "^5.1.0" - }, - "dependencies": { - "ansi-regex": { - "version": "4.1.0", - "resolved": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-4.1.0.tgz", - "integrity": "sha1-i5+PCM8ay4Q3Vqg5yox+MWjFGZc=", - "dev": true - }, - "emoji-regex": { - "version": "7.0.3", - "resolved": "https://registry.npm.taobao.org/emoji-regex/download/emoji-regex-7.0.3.tgz", - "integrity": "sha1-kzoEBShgyF6DwSJHnEdIqOTHIVY=", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/is-fullwidth-code-point/download/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", - "dev": true - }, - "string-width": { - "version": "3.1.0", - "resolved": "https://registry.npm.taobao.org/string-width/download/string-width-3.1.0.tgz", - "integrity": "sha1-InZ74htirxCBV0MG9prFG2IgOWE=", - "dev": true, - "requires": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" - } - }, - "strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-5.2.0.tgz", - "integrity": "sha1-jJpTb+tq/JYr36WxBKUJHBrZwK4=", - "dev": true, - "requires": { - "ansi-regex": "^4.1.0" - } - } + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" } }, + "clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=", + "dev": true + }, "clone-deep": { - "version": "0.2.4", - "resolved": "https://registry.npm.taobao.org/clone-deep/download/clone-deep-0.2.4.tgz", - "integrity": "sha1-TnPdCen7lxzDhnDF3O2cGJZIHMY=", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", "dev": true, "requires": { - "for-own": "^0.1.3", - "is-plain-object": "^2.0.1", - "kind-of": "^3.0.2", - "lazy-cache": "^1.0.3", - "shallow-clone": "^0.1.2" + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" } }, "clone-response": { "version": "1.0.2", - "resolved": "https://registry.npm.taobao.org/clone-response/download/clone-response-1.0.2.tgz", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz", "integrity": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=", "requires": { "mimic-response": "^1.0.0" @@ -8194,13 +6647,13 @@ }, "clsx": { "version": "1.1.1", - "resolved": "https://registry.npm.taobao.org/clsx/download/clsx-1.1.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fclsx%2Fdownload%2Fclsx-1.1.1.tgz", - "integrity": "sha1-mLMTT5q73yOyZjSRrOE8XAOnMYg=", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.1.1.tgz", + "integrity": "sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA==", "dev": true }, "co": { "version": "4.6.0", - "resolved": "https://registry.npm.taobao.org/co/download/co-4.6.0.tgz", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=", "dev": true }, @@ -8213,28 +6666,28 @@ "@types/q": "^1.5.1", "chalk": "^2.4.1", "q": "^1.1.2" - } - }, - "collection-visit": { - "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/collection-visit/download/collection-visit-1.0.0.tgz", - "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", - "dev": true, - "requires": { - "map-visit": "^1.0.0", - "object-visit": "^1.0.0" - } - }, - "color": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/color/-/color-3.1.2.tgz", - "integrity": "sha512-vXTJhHebByxZn3lDvDJYw4lR5+uB3vuoHsuYA5AKuxRVn5wzzIfQKGLBmgdVRHKTJYeK5rvJcHnrd0Li49CFpg==", - "dev": true, - "requires": { - "color-convert": "^1.9.1", - "color-string": "^1.5.2" }, "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, "color-convert": { "version": "1.9.3", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", @@ -8246,29 +6699,84 @@ }, "color-name": { "version": "1.1.3", - "resolved": "https://registry.npm.taobao.org/color-name/download/color-name-1.1.3.tgz", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "code-point-at": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", + "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", + "dev": true + }, + "collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", + "dev": true, + "requires": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + } + }, + "color": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/color/-/color-3.0.0.tgz", + "integrity": "sha512-jCpd5+s0s0t7p3pHQKpnJ0TpQKKdleP71LWcA0aqiljpiuAkOSUFN/dyH8ZwF0hRmFlrIuRhufds1QyEP9EB+w==", + "requires": { + "color-convert": "^1.9.1", + "color-string": "^1.5.2" + }, + "dependencies": { + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" } } }, "color-convert": { "version": "2.0.1", - "resolved": "https://registry.npm.taobao.org/color-convert/download/color-convert-2.0.1.tgz", - "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "requires": { "color-name": "~1.1.4" } }, "color-name": { "version": "1.1.4", - "resolved": "https://registry.npm.taobao.org/color-name/download/color-name-1.1.4.tgz", - "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" }, "color-string": { - "version": "1.5.3", - "resolved": "https://registry.npm.taobao.org/color-string/download/color-string-1.5.3.tgz", - "integrity": "sha1-ybvF8BtYtUkvPWhXRZy2WQziBMw=", + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.5.4.tgz", + "integrity": "sha512-57yF5yt8Xa3czSEW1jfQDE79Idk0+AkN/4KWad6tbdxUmAs3MvjxlWSWD4deYytcRfoZ9nhKyFl1kj5tBvidbw==", "requires": { "color-name": "^1.0.0", "simple-swizzle": "^0.2.2" @@ -8292,30 +6800,6 @@ "requires": { "color": "3.0.x", "text-hex": "1.0.x" - }, - "dependencies": { - "color": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/color/-/color-3.0.0.tgz", - "integrity": "sha512-jCpd5+s0s0t7p3pHQKpnJ0TpQKKdleP71LWcA0aqiljpiuAkOSUFN/dyH8ZwF0hRmFlrIuRhufds1QyEP9EB+w==", - "requires": { - "color-convert": "^1.9.1", - "color-string": "^1.5.2" - } - }, - "color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "requires": { - "color-name": "1.1.3" - } - }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" - } } }, "combined-stream": { @@ -8328,12 +6812,9 @@ } }, "commander": { - "version": "2.8.1", - "resolved": "https://registry.npm.taobao.org/commander/download/commander-2.8.1.tgz", - "integrity": "sha1-Br42f+v9oMMwqh4qBy09yXYkJdQ=", - "requires": { - "graceful-readlink": ">= 1.0.0" - } + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" }, "common-tags": { "version": "1.8.0", @@ -8343,19 +6824,25 @@ }, "commondir": { "version": "1.0.1", - "resolved": "https://registry.npm.taobao.org/commondir/download/commondir-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=", "dev": true }, + "compare-version": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/compare-version/-/compare-version-0.1.2.tgz", + "integrity": "sha1-AWLsLZNR9d3VmpICy6k1NmpyUIA=", + "dev": true + }, "component-emitter": { "version": "1.3.0", - "resolved": "https://registry.npm.taobao.org/component-emitter/download/component-emitter-1.3.0.tgz", - "integrity": "sha1-FuQHD7qK4ptnnyIVhT7hgasuq8A=", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", "dev": true }, "compose-function": { "version": "3.0.3", - "resolved": "https://registry.npm.taobao.org/compose-function/download/compose-function-3.0.3.tgz", + "resolved": "https://registry.npmjs.org/compose-function/-/compose-function-3.0.3.tgz", "integrity": "sha1-ntZ18TzFRQHTCVCkhv9qe6OrGF8=", "dev": true, "requires": { @@ -8388,7 +6875,7 @@ "dependencies": { "bytes": { "version": "3.0.0", - "resolved": "https://registry.npm.taobao.org/bytes/download/bytes-3.0.0.tgz", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=", "dev": true }, @@ -8403,65 +6890,27 @@ }, "ms": { "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", "dev": true - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true } } }, "concat-map": { "version": "0.0.1", - "resolved": "https://registry.npm.taobao.org/concat-map/download/concat-map-0.0.1.tgz", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" }, "concat-stream": { "version": "1.6.2", - "resolved": "https://registry.npm.taobao.org/concat-stream/download/concat-stream-1.6.2.tgz", - "integrity": "sha1-kEvfGUzTEi/Gdcd/xKw9T/D9GjQ=", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", "dev": true, "requires": { "buffer-from": "^1.0.0", "inherits": "^2.0.3", "readable-stream": "^2.2.2", "typedarray": "^0.0.6" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-2.3.7.tgz", - "integrity": "sha1-Hsoc9xGu+BTAT2IlKjamL2yyO1c=", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.1.2.tgz", - "integrity": "sha1-mR7GnSluAxN0fVm9/St0XDX4go0=", - "dev": true - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npm.taobao.org/string_decoder/download/string_decoder-1.1.1.tgz", - "integrity": "sha1-nPFhG6YmhdcDCunkujQUnDrwP8g=", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } } }, "concurrently": { @@ -8481,6 +6930,189 @@ "yargs": "^13.3.0" }, "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "cliui": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "dev": true, + "requires": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "dev": true + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "requires": { + "locate-path": "^3.0.0" + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "requires": { + "p-limit": "^2.0.0" + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true + }, + "parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "dev": true, + "requires": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + } + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "dev": true + }, + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true + }, + "read-pkg": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-4.0.1.tgz", + "integrity": "sha1-ljYlN48+HE1IyFhytabsfV0JMjc=", + "dev": true, + "requires": { + "normalize-package-data": "^2.3.2", + "parse-json": "^4.0.0", + "pify": "^3.0.0" + } + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + }, "supports-color": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", @@ -8489,6 +7121,51 @@ "requires": { "has-flag": "^3.0.0" } + }, + "wrap-ansi": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + } + }, + "y18n": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz", + "integrity": "sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==", + "dev": true + }, + "yargs": { + "version": "13.3.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", + "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", + "dev": true, + "requires": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + } + }, + "yargs-parser": { + "version": "13.1.2", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", + "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", + "dev": true, + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } } } }, @@ -8535,9 +7212,9 @@ } }, "confusing-browser-globals": { - "version": "1.0.9", - "resolved": "https://registry.npm.taobao.org/confusing-browser-globals/download/confusing-browser-globals-1.0.9.tgz", - "integrity": "sha1-crwTtIPAJ2gBaBhx1ImFFvj1T90=", + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.10.tgz", + "integrity": "sha512-gNld/3lySHwuhaVluJUKLePYirM3QNCKzVxqAdhJII9/WXKVX5PURzMVJspS1jTslSqjeuG4KMVTSouit5YPHA==", "dev": true }, "connect-history-api-fallback": { @@ -8552,31 +7229,30 @@ "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==", "dev": true }, + "console-control-strings": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", + "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=", + "dev": true + }, "constants-browserify": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/constants-browserify/download/constants-browserify-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=", "dev": true }, "contains-path": { "version": "0.1.0", - "resolved": "https://registry.npm.taobao.org/contains-path/download/contains-path-0.1.0.tgz", + "resolved": "https://registry.npmjs.org/contains-path/-/contains-path-0.1.0.tgz", "integrity": "sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo=", "dev": true }, "content-disposition": { "version": "0.5.3", - "resolved": "https://registry.npm.taobao.org/content-disposition/download/content-disposition-0.5.3.tgz", - "integrity": "sha1-4TDK9+cnkIfFYWwgB9BIVpiYT70=", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz", + "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==", "requires": { "safe-buffer": "5.1.2" - }, - "dependencies": { - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.1.2.tgz", - "integrity": "sha1-mR7GnSluAxN0fVm9/St0XDX4go0=" - } } }, "content-type": { @@ -8592,14 +7268,6 @@ "dev": true, "requires": { "safe-buffer": "~5.1.1" - }, - "dependencies": { - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - } } }, "cookie": { @@ -8610,7 +7278,7 @@ }, "cookie-signature": { "version": "1.0.6", - "resolved": "https://registry.npm.taobao.org/cookie-signature/download/cookie-signature-1.0.6.tgz", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=", "dev": true }, @@ -8641,56 +7309,39 @@ }, "copy-descriptor": { "version": "0.1.1", - "resolved": "https://registry.npm.taobao.org/copy-descriptor/download/copy-descriptor-0.1.1.tgz", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", "dev": true }, "core-js": { - "version": "2.6.11", - "resolved": "https://registry.npm.taobao.org/core-js/download/core-js-2.6.11.tgz", - "integrity": "sha1-OIMUafmSK97Y7iHJ3EaYXgOZMIw=", + "version": "2.6.12", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz", + "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==", "dev": true }, "core-js-compat": { - "version": "3.6.5", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.6.5.tgz", - "integrity": "sha512-7ItTKOhOZbznhXAQ2g/slGg1PJV5zDO/WdkTwi7UEOJmkvsE32PWvx6mKtDjiMpjnR2CNf6BAD6sSxIlv7ptng==", + "version": "3.8.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.8.1.tgz", + "integrity": "sha512-a16TLmy9NVD1rkjUGbwuyWkiDoN0FDpAwrfLONvHFQx0D9k7J9y0srwMT8QP/Z6HE3MIFaVynEeYwZwPX1o5RQ==", "dev": true, "requires": { - "browserslist": "^4.8.5", + "browserslist": "^4.15.0", "semver": "7.0.0" }, "dependencies": { "browserslist": { - "version": "4.14.0", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.14.0.tgz", - "integrity": "sha512-pUsXKAF2lVwhmtpeA3LJrZ76jXuusrNyhduuQs7CDFf9foT4Y38aQOserd2lMe5DSSrjf3fx34oHwryuvxAUgQ==", + "version": "4.16.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.16.0.tgz", + "integrity": "sha512-/j6k8R0p3nxOC6kx5JGAxsnhc9ixaWJfYc+TNTzxg6+ARaESAvQGV7h0uNOB4t+pLQJZWzcrMxXOxjgsCj3dqQ==", "dev": true, "requires": { - "caniuse-lite": "^1.0.30001111", - "electron-to-chromium": "^1.3.523", - "escalade": "^3.0.2", - "node-releases": "^1.1.60" + "caniuse-lite": "^1.0.30001165", + "colorette": "^1.2.1", + "electron-to-chromium": "^1.3.621", + "escalade": "^3.1.1", + "node-releases": "^1.1.67" } }, - "caniuse-lite": { - "version": "1.0.30001114", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001114.tgz", - "integrity": "sha512-ml/zTsfNBM+T1+mjglWRPgVsu2L76GAaADKX5f4t0pbhttEp0WMawJsHDYlFkVZkoA+89uvBRrVrEE4oqenzXQ==", - "dev": true - }, - "electron-to-chromium": { - "version": "1.3.533", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.533.tgz", - "integrity": "sha512-YqAL+NXOzjBnpY+dcOKDlZybJDCOzgsq4koW3fvyty/ldTmsb4QazZpOWmVvZ2m0t5jbBf7L0lIGU3BUipwG+A==", - "dev": true - }, - "node-releases": { - "version": "1.1.60", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.60.tgz", - "integrity": "sha512-gsO4vjEdQaTusZAEebUWp2a5d7dF5DYoIpDG7WySnk7BuZDW+GPpHXoXXuYawRBr/9t5q54tirPz79kFIWg4dA==", - "dev": true - }, "semver": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", @@ -8700,42 +7351,45 @@ } }, "core-js-pure": { - "version": "3.6.5", - "resolved": "https://registry.npm.taobao.org/core-js-pure/download/core-js-pure-3.6.5.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcore-js-pure%2Fdownload%2Fcore-js-pure-3.6.5.tgz", - "integrity": "sha1-x5519eONvIWmYtke6lK4JW1TuBM=", + "version": "3.8.1", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.8.1.tgz", + "integrity": "sha512-Se+LaxqXlVXGvmexKGPvnUIYC1jwXu1H6Pkyb3uBM5d8/NELMYCHs/4/roD7721NxrTLyv7e5nXd5/QLBO+10g==", "dev": true }, "core-util-is": { "version": "1.0.2", - "resolved": "https://registry.npm.taobao.org/core-util-is/download/core-util-is-1.0.2.tgz", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" }, "cosmiconfig": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", - "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", + "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", "dev": true, "requires": { - "import-fresh": "^2.0.0", - "is-directory": "^0.3.1", - "js-yaml": "^3.13.1", - "parse-json": "^4.0.0" + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.1.0", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.7.2" }, "dependencies": { - "import-fresh": { - "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/import-fresh/download/import-fresh-2.0.0.tgz", - "integrity": "sha1-2BNVwVYS04bGH53dOSLUMEgipUY=", + "parse-json": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.1.0.tgz", + "integrity": "sha512-+mi/lmVVNKFNVyLXV31ERiy2CY5E1/F6QtJFEzoChPRwwngMNXRDQ9GJ5WdE2Z2P4AujsOi0/+2qHID68KwfIQ==", "dev": true, "requires": { - "caller-path": "^2.0.0", - "resolve-from": "^3.0.0" + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" } }, - "resolve-from": { - "version": "3.0.0", - "resolved": "https://registry.npm.taobao.org/resolve-from/download/resolve-from-3.0.0.tgz", - "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", + "path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", "dev": true } } @@ -8787,8 +7441,8 @@ }, "cross-env": { "version": "7.0.2", - "resolved": "https://registry.npm.taobao.org/cross-env/download/cross-env-7.0.2.tgz", - "integrity": "sha1-vV7TEzmpOjQYrE88qco0Awgq5fk=", + "resolved": "https://registry.npmjs.org/cross-env/-/cross-env-7.0.2.tgz", + "integrity": "sha512-KZP/bMEOJEDCkDQAyRhu3RL2ZO/SUVrxQVI0G3YEQ+OLbRA3c6zgixe8Mq8a/z7+HKlNEjo8oiLUs8iRijY2Rw==", "dev": true, "requires": { "cross-spawn": "^7.0.1" @@ -8796,8 +7450,8 @@ }, "cross-spawn": { "version": "7.0.3", - "resolved": "https://registry.npm.taobao.org/cross-spawn/download/cross-spawn-7.0.3.tgz?cache=0&sync_timestamp=1590421014780&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcross-spawn%2Fdownload%2Fcross-spawn-7.0.3.tgz", - "integrity": "sha1-9zqFudXUHQRVUcF34ogtSshXKKY=", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", "dev": true, "requires": { "path-key": "^3.1.0", @@ -8805,11 +7459,14 @@ "which": "^2.0.1" } }, - "crypt": { - "version": "0.0.2", - "resolved": "https://registry.npm.taobao.org/crypt/download/crypt-0.0.2.tgz", - "integrity": "sha1-iNf/fsDfuG9xPch7u0LQRNPmxBs=", - "dev": true + "cross-zip": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cross-zip/-/cross-zip-3.1.0.tgz", + "integrity": "sha512-aX02l0SD3KE27pMl69gkxDdDM5D3u9Ic4Je+2b1B2fP0dWnlWWY6ns2Vk5DEgCXJRhL3GasSpicNQRNbDkq0+w==", + "dev": true, + "requires": { + "rimraf": "^3.0.0" + } }, "crypto-browserify": { "version": "3.12.0", @@ -8836,6 +7493,29 @@ "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", "dev": true }, + "csp-html-webpack-plugin": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/csp-html-webpack-plugin/-/csp-html-webpack-plugin-4.0.0.tgz", + "integrity": "sha512-1YqQefNG0SrZisysThlly2bgs4Ab/W91xOM17S8wd+6vTo3E0OdL+y4IAR0MKpthRluNGzFB3QhPqdOhkXAExg==", + "dev": true, + "requires": { + "cheerio": "^1.0.0-rc.3", + "lodash": "^4.17.15", + "memory-fs": "^0.5.0" + }, + "dependencies": { + "memory-fs": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz", + "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==", + "dev": true, + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + } + } + }, "css": { "version": "2.2.4", "resolved": "https://registry.npmjs.org/css/-/css-2.2.4.tgz", @@ -8859,13 +7539,13 @@ }, "css-color-keywords": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/css-color-keywords/download/css-color-keywords-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/css-color-keywords/-/css-color-keywords-1.0.0.tgz", "integrity": "sha1-/qJhbcZ2spYmhrOvjb2+GAskTgU=", "dev": true }, "css-color-names": { "version": "0.0.4", - "resolved": "https://registry.npm.taobao.org/css-color-names/download/css-color-names-0.0.4.tgz", + "resolved": "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz", "integrity": "sha1-gIrcLnnPhHOAabZGyyDsJ762KeA=", "dev": true }, @@ -8928,11 +7608,22 @@ "schema-utils": "^2.6.0" }, "dependencies": { - "normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", "dev": true + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + } } } }, @@ -8946,33 +7637,15 @@ } }, "css-select": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", - "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz", + "integrity": "sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg=", "dev": true, "requires": { - "boolbase": "^1.0.0", - "css-what": "^3.2.1", - "domutils": "^1.7.0", - "nth-check": "^1.0.2" - }, - "dependencies": { - "domelementtype": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", - "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==", - "dev": true - }, - "domutils": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", - "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", - "dev": true, - "requires": { - "dom-serializer": "0", - "domelementtype": "1" - } - } + "boolbase": "~1.0.0", + "css-what": "2.1", + "domutils": "1.5.1", + "nth-check": "~1.0.1" } }, "css-select-base-adapter": { @@ -9013,9 +7686,9 @@ } }, "css-what": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.3.0.tgz", - "integrity": "sha512-pv9JPyatiPaQ6pf4OvD/dbfm0o5LviWmwxNWzblYf/1u9QZd0ihV+PMwy5jdQWQ3349kZmKEx9WXuSka2dM4cg==", + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz", + "integrity": "sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg==", "dev": true }, "cssdb": { @@ -9040,6 +7713,46 @@ "cssnano-preset-default": "^4.0.7", "is-resolvable": "^1.0.0", "postcss": "^7.0.0" + }, + "dependencies": { + "cosmiconfig": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", + "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", + "dev": true, + "requires": { + "import-fresh": "^2.0.0", + "is-directory": "^0.3.1", + "js-yaml": "^3.13.1", + "parse-json": "^4.0.0" + } + }, + "import-fresh": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", + "integrity": "sha1-2BNVwVYS04bGH53dOSLUMEgipUY=", + "dev": true, + "requires": { + "caller-path": "^2.0.0", + "resolve-from": "^3.0.0" + } + }, + "parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "dev": true, + "requires": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + } + }, + "resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", + "dev": true + } } }, "cssnano-preset-default": { @@ -9082,13 +7795,13 @@ }, "cssnano-util-get-arguments": { "version": "4.0.0", - "resolved": "https://registry.npm.taobao.org/cssnano-util-get-arguments/download/cssnano-util-get-arguments-4.0.0.tgz", + "resolved": "https://registry.npmjs.org/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz", "integrity": "sha1-7ToIKZ8h11dBsg87gfGU7UnMFQ8=", "dev": true }, "cssnano-util-get-match": { "version": "4.0.0", - "resolved": "https://registry.npm.taobao.org/cssnano-util-get-match/download/cssnano-util-get-match-4.0.0.tgz", + "resolved": "https://registry.npmjs.org/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz", "integrity": "sha1-wOTKB/U4a7F+xeUiULT1lhNlFW0=", "dev": true }, @@ -9108,28 +7821,28 @@ "dev": true }, "csso": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/csso/-/csso-4.0.3.tgz", - "integrity": "sha512-NL3spysxUkcrOgnpsT4Xdl2aiEiBG6bXswAABQVHcMrfjjBisFOKwLDOmf4wf32aPdcJws1zds2B0Rg+jqMyHQ==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", + "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", "dev": true, "requires": { - "css-tree": "1.0.0-alpha.39" + "css-tree": "^1.1.2" }, "dependencies": { "css-tree": { - "version": "1.0.0-alpha.39", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.39.tgz", - "integrity": "sha512-7UvkEYgBAHRG9Nt980lYxjsTrCyHFN53ky3wVsDkiMdVqylqRt+Zc+jm5qw7/qyOvN2dHSYtX0e4MbCCExSvnA==", + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.2.tgz", + "integrity": "sha512-wCoWush5Aeo48GLhfHPbmvZs59Z+M7k5+B1xDnXbdWNcEF423DoFdqSWE0PM5aNk5nI5cp1q7ms36zGApY/sKQ==", "dev": true, "requires": { - "mdn-data": "2.0.6", + "mdn-data": "2.0.14", "source-map": "^0.6.1" } }, "mdn-data": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.6.tgz", - "integrity": "sha512-rQvjv71olwNHgiTbfPZFkJtjNMciWgswYeciZhtvWLO8bmX3TnhyA62I6sTWOyZssWHJJjY6/KiWwqQsWWsqOA==", + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==", "dev": true } } @@ -9150,14 +7863,30 @@ } }, "csstype": { - "version": "2.6.10", - "resolved": "https://registry.npm.taobao.org/csstype/download/csstype-2.6.10.tgz", - "integrity": "sha1-5jr1DmbXwmbttrMpCc/Qqr4Dkos=", + "version": "2.6.14", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.14.tgz", + "integrity": "sha512-2mSc+VEpGPblzAxyeR+vZhJKgYg0Og0nnRi7pmRXFYYxSfnOnW8A5wwQb4n4cE2nIOzqKOAzLCaEX6aBmNEv8A==", "dev": true }, + "cuint": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/cuint/-/cuint-0.2.2.tgz", + "integrity": "sha1-QICG1AlVDCYxFVYZ6fp7ytw7mRs=", + "dev": true, + "optional": true + }, + "currently-unhandled": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz", + "integrity": "sha1-mI3zP+qxke95mmE2nddsF635V+o=", + "dev": true, + "requires": { + "array-find-index": "^1.0.1" + } + }, "cyclist": { "version": "1.0.1", - "resolved": "https://registry.npm.taobao.org/cyclist/download/cyclist-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-1.0.1.tgz", "integrity": "sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk=", "dev": true }, @@ -9184,7 +7913,7 @@ }, "dashdash": { "version": "1.14.1", - "resolved": "https://registry.npm.taobao.org/dashdash/download/dashdash-1.14.1.tgz", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", "dev": true, "requires": { @@ -9227,28 +7956,28 @@ "dev": true }, "debug": { - "version": "4.2.0", - "resolved": "https://registry.npm.taobao.org/debug/download/debug-4.2.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fdebug%2Fdownload%2Fdebug-4.2.0.tgz", - "integrity": "sha1-fxUPk5IOlMWPVXTC/QGjEQ7/5/E=", + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", + "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", "requires": { "ms": "2.1.2" } }, "decamelize": { "version": "1.2.0", - "resolved": "https://registry.npm.taobao.org/decamelize/download/decamelize-1.2.0.tgz?cache=0&sync_timestamp=1580010393599&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fdecamelize%2Fdownload%2Fdecamelize-1.2.0.tgz", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", "dev": true }, "decode-uri-component": { "version": "0.2.0", - "resolved": "https://registry.npm.taobao.org/decode-uri-component/download/decode-uri-component-0.2.0.tgz", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=" }, "decompress": { "version": "4.2.1", - "resolved": "https://registry.npm.taobao.org/decompress/download/decompress-4.2.1.tgz?cache=0&sync_timestamp=1585749711186&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fdecompress%2Fdownload%2Fdecompress-4.2.1.tgz", - "integrity": "sha1-AH9VzGpiwFWvo3wH62pO4bdz8Rg=", + "resolved": "https://registry.npmjs.org/decompress/-/decompress-4.2.1.tgz", + "integrity": "sha512-e48kc2IjU+2Zw8cTb6VZcJQ3lgVbS4uuB1TfCHbiZIP/haNXm+SVyhu+87jts5/3ROpd82GSVCoNs/z8l4ZOaQ==", "requires": { "decompress-tar": "^4.0.0", "decompress-tarbz2": "^4.0.0", @@ -9262,29 +7991,29 @@ "dependencies": { "make-dir": { "version": "1.3.0", - "resolved": "https://registry.npm.taobao.org/make-dir/download/make-dir-1.3.0.tgz?cache=0&sync_timestamp=1587567875186&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fmake-dir%2Fdownload%2Fmake-dir-1.3.0.tgz", - "integrity": "sha1-ecEDO4BRW9bSTsmTPoYMp17ifww=", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", + "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", "requires": { "pify": "^3.0.0" }, "dependencies": { "pify": { "version": "3.0.0", - "resolved": "https://registry.npm.taobao.org/pify/download/pify-3.0.0.tgz", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=" } } }, "pify": { "version": "2.3.0", - "resolved": "https://registry.npm.taobao.org/pify/download/pify-2.3.0.tgz", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" } } }, "decompress-response": { "version": "3.3.0", - "resolved": "https://registry.npm.taobao.org/decompress-response/download/decompress-response-3.3.0.tgz?cache=0&sync_timestamp=1589512178920&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fdecompress-response%2Fdownload%2Fdecompress-response-3.3.0.tgz", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=", "requires": { "mimic-response": "^1.0.0" @@ -9292,8 +8021,8 @@ }, "decompress-tar": { "version": "4.1.1", - "resolved": "https://registry.npm.taobao.org/decompress-tar/download/decompress-tar-4.1.1.tgz", - "integrity": "sha1-cYy9P8sWIJcW5womuE57pFkuWvE=", + "resolved": "https://registry.npmjs.org/decompress-tar/-/decompress-tar-4.1.1.tgz", + "integrity": "sha512-JdJMaCrGpB5fESVyxwpCx4Jdj2AagLmv3y58Qy4GE6HMVjWz1FeVQk1Ct4Kye7PftcdOo/7U7UKzYBJgqnGeUQ==", "requires": { "file-type": "^5.2.0", "is-stream": "^1.1.0", @@ -9302,15 +8031,15 @@ "dependencies": { "file-type": { "version": "5.2.0", - "resolved": "https://registry.npm.taobao.org/file-type/download/file-type-5.2.0.tgz?cache=0&sync_timestamp=1591535671708&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffile-type%2Fdownload%2Ffile-type-5.2.0.tgz", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz", "integrity": "sha1-LdvqfHP/42No365J3DOMBYwritY=" } } }, "decompress-tarbz2": { "version": "4.1.1", - "resolved": "https://registry.npm.taobao.org/decompress-tarbz2/download/decompress-tarbz2-4.1.1.tgz", - "integrity": "sha1-MIKluIDqQEOBY0nzeLVsUWvho5s=", + "resolved": "https://registry.npmjs.org/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz", + "integrity": "sha512-s88xLzf1r81ICXLAVQVzaN6ZmX4A6U4z2nMbOwobxkLoIIfjVMBg7TeguTUXkKeXni795B6y5rnvDw7rxhAq9A==", "requires": { "decompress-tar": "^4.1.0", "file-type": "^6.1.0", @@ -9321,15 +8050,15 @@ "dependencies": { "file-type": { "version": "6.2.0", - "resolved": "https://registry.npm.taobao.org/file-type/download/file-type-6.2.0.tgz?cache=0&sync_timestamp=1591535671708&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffile-type%2Fdownload%2Ffile-type-6.2.0.tgz", - "integrity": "sha1-5QzXXTVv/tTjBtxPW89Sp5kDqRk=" + "resolved": "https://registry.npmjs.org/file-type/-/file-type-6.2.0.tgz", + "integrity": "sha512-YPcTBDV+2Tm0VqjybVd32MHdlEGAtuxS3VAYsumFokDSMG+ROT5wawGlnHDoz7bfMcMDt9hxuXvXwoKUx2fkOg==" } } }, "decompress-targz": { "version": "4.1.1", - "resolved": "https://registry.npm.taobao.org/decompress-targz/download/decompress-targz-4.1.1.tgz", - "integrity": "sha1-wJvDXE0R894J8tLaU+neI+fOHu4=", + "resolved": "https://registry.npmjs.org/decompress-targz/-/decompress-targz-4.1.1.tgz", + "integrity": "sha512-4z81Znfr6chWnRDNfFNqLwPvm4db3WuZkqV+UgXQzSngG3CEKdBkw5jrv3axjjL96glyiiKjsxJG3X6WBZwX3w==", "requires": { "decompress-tar": "^4.1.1", "file-type": "^5.2.0", @@ -9338,14 +8067,14 @@ "dependencies": { "file-type": { "version": "5.2.0", - "resolved": "https://registry.npm.taobao.org/file-type/download/file-type-5.2.0.tgz?cache=0&sync_timestamp=1591535671708&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffile-type%2Fdownload%2Ffile-type-5.2.0.tgz", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz", "integrity": "sha1-LdvqfHP/42No365J3DOMBYwritY=" } } }, "decompress-unzip": { "version": "4.0.1", - "resolved": "https://registry.npm.taobao.org/decompress-unzip/download/decompress-unzip-4.0.1.tgz", + "resolved": "https://registry.npmjs.org/decompress-unzip/-/decompress-unzip-4.0.1.tgz", "integrity": "sha1-3qrM39FK6vhVePczroIQ+bSEj2k=", "requires": { "file-type": "^3.8.0", @@ -9356,12 +8085,12 @@ "dependencies": { "file-type": { "version": "3.9.0", - "resolved": "https://registry.npm.taobao.org/file-type/download/file-type-3.9.0.tgz?cache=0&sync_timestamp=1591535671708&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffile-type%2Fdownload%2Ffile-type-3.9.0.tgz", + "resolved": "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz", "integrity": "sha1-JXoHg4TR24CHvESdEH1SpSZyuek=" }, "get-stream": { "version": "2.3.1", - "resolved": "https://registry.npm.taobao.org/get-stream/download/get-stream-2.3.1.tgz", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-2.3.1.tgz", "integrity": "sha1-Xzj5PzRgCWZu4BUKBUFn+Rvdld4=", "requires": { "object-assign": "^4.0.1", @@ -9370,7 +8099,7 @@ }, "pify": { "version": "2.3.0", - "resolved": "https://registry.npm.taobao.org/pify/download/pify-2.3.0.tgz", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" } } @@ -9397,9 +8126,15 @@ }, "deep-is": { "version": "0.1.3", - "resolved": "https://registry.npm.taobao.org/deep-is/download/deep-is-0.1.3.tgz", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=" }, + "deepmerge": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz", + "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==", + "dev": true + }, "default-gateway": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz", @@ -9410,15 +8145,24 @@ "ip-regex": "^2.1.0" } }, + "defaults": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz", + "integrity": "sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=", + "dev": true, + "requires": { + "clone": "^1.0.2" + } + }, "defer-to-connect": { "version": "1.1.3", - "resolved": "https://registry.npm.taobao.org/defer-to-connect/download/defer-to-connect-1.1.3.tgz", - "integrity": "sha1-MxrgUMCNz3ifjIOnuB8O2U9KxZE=" + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz", + "integrity": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==" }, "define-properties": { "version": "1.1.3", - "resolved": "https://registry.npm.taobao.org/define-properties/download/define-properties-1.1.3.tgz", - "integrity": "sha1-z4jabL7ib+bbcJT2HYcMvYTO6fE=", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", "dev": true, "requires": { "object-keys": "^1.0.12" @@ -9426,8 +8170,8 @@ }, "define-property": { "version": "2.0.2", - "resolved": "https://registry.npm.taobao.org/define-property/download/define-property-2.0.2.tgz", - "integrity": "sha1-1Flono1lS6d+AqgX+HENcCyxbp0=", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", "dev": true, "requires": { "is-descriptor": "^1.0.2", @@ -9436,8 +8180,8 @@ "dependencies": { "is-accessor-descriptor": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/is-accessor-descriptor/download/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha1-FpwvbT3x+ZJhgHI2XJsOofaHhlY=", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", "dev": true, "requires": { "kind-of": "^6.0.0" @@ -9445,8 +8189,8 @@ }, "is-data-descriptor": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/is-data-descriptor/download/is-data-descriptor-1.0.0.tgz", - "integrity": "sha1-2Eh2Mh0Oet0DmQQGq7u9NrqSaMc=", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", "dev": true, "requires": { "kind-of": "^6.0.0" @@ -9454,20 +8198,14 @@ }, "is-descriptor": { "version": "1.0.2", - "resolved": "https://registry.npm.taobao.org/is-descriptor/download/is-descriptor-1.0.2.tgz", - "integrity": "sha1-OxWXRqZmBLBPjIFSS6NlxfFNhuw=", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", "dev": true, "requires": { "is-accessor-descriptor": "^1.0.0", "is-data-descriptor": "^1.0.0", "kind-of": "^6.0.2" } - }, - "kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npm.taobao.org/kind-of/download/kind-of-6.0.3.tgz", - "integrity": "sha1-B8BQNKbDSfoG4k+jWqdttFgM5N0=", - "dev": true } } }, @@ -9498,7 +8236,7 @@ "dependencies": { "globby": { "version": "6.1.0", - "resolved": "https://registry.npm.taobao.org/globby/download/globby-6.1.0.tgz", + "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", "integrity": "sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=", "dev": true, "requires": { @@ -9511,7 +8249,7 @@ "dependencies": { "pify": { "version": "2.3.0", - "resolved": "https://registry.npm.taobao.org/pify/download/pify-2.3.0.tgz", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", "dev": true } @@ -9536,21 +8274,21 @@ }, "delayed-stream": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/delayed-stream/download/delayed-stream-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", "dev": true }, + "delegates": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", + "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=", + "dev": true + }, "depd": { "version": "1.1.2", - "resolved": "https://registry.npm.taobao.org/depd/download/depd-1.1.2.tgz", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" }, - "deprecation": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz", - "integrity": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==", - "dev": true - }, "dequal": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.2.tgz", @@ -9569,26 +8307,38 @@ }, "destroy": { "version": "1.0.4", - "resolved": "https://registry.npm.taobao.org/destroy/download/destroy-1.0.4.tgz", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=", "dev": true }, + "detect-indent": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.0.0.tgz", + "integrity": "sha512-oSyFlqaTHCItVRGK5RmrmjB+CmaMOW7IaNA/kdxqhoa6d17j/5ce9O9eWXmV/KEdRwqpQA+Vqe8a8Bsybu4YnA==", + "dev": true + }, + "detect-libc": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", + "integrity": "sha1-+hN8S9aY7fVc1c0CrFWfkaTEups=", + "dev": true + }, "detect-newline": { "version": "2.1.0", - "resolved": "https://registry.npm.taobao.org/detect-newline/download/detect-newline-2.1.0.tgz", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-2.1.0.tgz", "integrity": "sha1-9B8cEL5LAOh7XxPaaAdZ8sW/0+I=", "dev": true }, "detect-node": { "version": "2.0.4", - "resolved": "https://registry.npm.taobao.org/detect-node/download/detect-node-2.0.4.tgz", - "integrity": "sha1-AU7o+PZpxcWAI9pkuBecCDooxGw=", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.0.4.tgz", + "integrity": "sha512-ZIzRpLJrOj7jjP2miAtgqIfmzbxa4ZOr5jJc601zklsfEx9oTzmmj2nVpIPRpNlRTIh8lc1kyViIY7BWSGNmKw==", "dev": true }, "detect-port-alt": { "version": "1.1.6", - "resolved": "https://registry.npm.taobao.org/detect-port-alt/download/detect-port-alt-1.1.6.tgz", - "integrity": "sha1-JHB96r6TLUo89iEwICfCsmZWgnU=", + "resolved": "https://registry.npmjs.org/detect-port-alt/-/detect-port-alt-1.1.6.tgz", + "integrity": "sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==", "dev": true, "requires": { "address": "^1.0.1", @@ -9597,8 +8347,8 @@ "dependencies": { "debug": { "version": "2.6.9", - "resolved": "https://registry.npm.taobao.org/debug/download/debug-2.6.9.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fdebug%2Fdownload%2Fdebug-2.6.9.tgz", - "integrity": "sha1-XRKFFd8TT/Mn6QpMk/Tgd6U2NB8=", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, "requires": { "ms": "2.0.0" @@ -9606,7 +8356,7 @@ }, "ms": { "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", "dev": true } @@ -9645,8 +8395,8 @@ }, "dir-glob": { "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/dir-glob/download/dir-glob-2.0.0.tgz", - "integrity": "sha1-CyBdK2rvmCOMooZZioIE0p0KADQ=", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-2.0.0.tgz", + "integrity": "sha512-37qirFDz8cA5fimp9feo43fSuRo2gHwaIn6dXL8Ber1dGwUosDrGZeCCXq57WnIqE4aQ+u3eQZzsk1yOzhdwag==", "dev": true, "requires": { "arrify": "^1.0.1", @@ -9655,8 +8405,8 @@ "dependencies": { "path-type": { "version": "3.0.0", - "resolved": "https://registry.npm.taobao.org/path-type/download/path-type-3.0.0.tgz", - "integrity": "sha1-zvMdyOCho7sNEFwM2Xzzv0f0428=", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", "dev": true, "requires": { "pify": "^3.0.0" @@ -9664,7 +8414,7 @@ }, "pify": { "version": "3.0.0", - "resolved": "https://registry.npm.taobao.org/pify/download/pify-3.0.0.tgz", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", "dev": true } @@ -9697,7 +8447,7 @@ }, "dns-equal": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/dns-equal/download/dns-equal-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", "integrity": "sha1-s55/HabrCnW6nBcySzR1PEfgZU0=", "dev": true }, @@ -9713,7 +8463,7 @@ }, "dns-txt": { "version": "2.0.2", - "resolved": "https://registry.npm.taobao.org/dns-txt/download/dns-txt-2.0.2.tgz", + "resolved": "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz", "integrity": "sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=", "dev": true, "requires": { @@ -9739,13 +8489,21 @@ } }, "dom-helpers": { - "version": "5.1.4", - "resolved": "https://registry.npm.taobao.org/dom-helpers/download/dom-helpers-5.1.4.tgz", - "integrity": "sha1-RgloCrXHmkXyUxRB8ZSbedZYf0s=", + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.0.tgz", + "integrity": "sha512-Ru5o9+V8CpunKnz5LGgWXkmrH/20cGKwcHwS4m73zIvs54CN9epEmT/HLqFJW3kXpakAFkEdzgy1hzlJe3E4OQ==", "dev": true, "requires": { "@babel/runtime": "^7.8.7", - "csstype": "^2.6.7" + "csstype": "^3.0.2" + }, + "dependencies": { + "csstype": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.5.tgz", + "integrity": "sha512-uVDi8LpBUKQj6sdxNaTetL6FpeCqTjOvAQuQUa/qAqq8oOd4ivkbhgnqayl0dnPal8Tb/yB1tF+gOvCBiicaiQ==", + "dev": true + } } }, "dom-serializer": { @@ -9756,6 +8514,14 @@ "requires": { "domelementtype": "^2.0.1", "entities": "^2.0.0" + }, + "dependencies": { + "domelementtype": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.1.0.tgz", + "integrity": "sha512-LsTgx/L5VpD+Q8lmsXSHW2WpA+eBlZ9HPf3erD1IoPF00/3JKHZ3BknUVA2QGDNu69ZNmyFmCWBSO45XjYKC5w==", + "dev": true + } } }, "dom-walk": { @@ -9770,9 +8536,9 @@ "dev": true }, "domelementtype": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.0.1.tgz", - "integrity": "sha512-5HOHUDsYZWV8FGWN0Njbr/Rn7f/eWSQi1v7+HsUVwXgn8nWWlL64zKDkS0n8ZmQ3mlWOMuXOnR+7Nx/5tMO5AQ==", + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==", "dev": true }, "domexception": { @@ -9785,52 +8551,38 @@ } }, "domhandler": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-3.0.0.tgz", - "integrity": "sha512-eKLdI5v9m67kbXQbJSNn1zjh0SDzvzWVWtX+qEI3eMjZw8daH9k8rlj1FZY9memPwjiskQFbe7vHVVJIAqoEhw==", + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz", + "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==", "dev": true, "requires": { - "domelementtype": "^2.0.1" + "domelementtype": "1" } }, "domutils": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.2.0.tgz", - "integrity": "sha512-0haAxVr1PR0SqYwCH7mxMpHZUwjih9oPPedqpR/KufsnxPyZ9dyVw1R5093qnJF3WXSbjBkdzRWLw/knJV/fAg==", + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz", + "integrity": "sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8=", "dev": true, "requires": { - "dom-serializer": "^1.0.1", - "domelementtype": "^2.0.1", - "domhandler": "^3.0.0" - }, - "dependencies": { - "dom-serializer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.0.1.tgz", - "integrity": "sha512-1Aj1Qy3YLbdslkI75QEOfdp9TkQ3o8LRISAzxOibjBs/xWwr1WxZFOQphFkZuepHFGo+kB8e5FVJSS0faAJ4Rw==", - "dev": true, - "requires": { - "domelementtype": "^2.0.1", - "domhandler": "^3.0.0", - "entities": "^2.0.0" - } - } + "dom-serializer": "0", + "domelementtype": "1" } }, "dot-case": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.3.tgz", - "integrity": "sha512-7hwEmg6RiSQfm/GwPL4AAWXKy3YNNZA3oFv2Pdiey0mwkRCPZ9x6SZbkLcn8Ma5PYeVokzoD4Twv2n7LKp5WeA==", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", "dev": true, "requires": { - "no-case": "^3.0.3", - "tslib": "^1.10.0" + "no-case": "^3.0.4", + "tslib": "^2.0.3" } }, "dot-prop": { - "version": "5.2.0", - "resolved": "https://registry.npm.taobao.org/dot-prop/download/dot-prop-5.2.0.tgz", - "integrity": "sha1-w07MKVVtxF8fTCJpe29JBODMT8s=", + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", "dev": true, "requires": { "is-obj": "^2.0.0" @@ -9838,20 +8590,20 @@ }, "dotenv": { "version": "8.2.0", - "resolved": "https://registry.npm.taobao.org/dotenv/download/dotenv-8.2.0.tgz?cache=0&sync_timestamp=1571191401007&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fdotenv%2Fdownload%2Fdotenv-8.2.0.tgz", - "integrity": "sha1-l+YZJZradQ7qPk6j4mvO6lQksWo=", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.2.0.tgz", + "integrity": "sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==", "dev": true }, "dotenv-expand": { "version": "5.1.0", - "resolved": "https://registry.npm.taobao.org/dotenv-expand/download/dotenv-expand-5.1.0.tgz", - "integrity": "sha1-P7rwIL/XlIhAcuomsel5HUWmKfA=", + "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz", + "integrity": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==", "dev": true }, "download": { "version": "8.0.0", - "resolved": "https://registry.npm.taobao.org/download/download/download-8.0.0.tgz", - "integrity": "sha1-r8CzCXMIEXMarp9Tccn0a+c+UbE=", + "resolved": "https://registry.npmjs.org/download/-/download-8.0.0.tgz", + "integrity": "sha512-ASRY5QhDk7FK+XrQtQyvhpDKanLluEEQtWl/J7Lxuf/b+i8RYh997QeXvL85xitrmRKVlx9c7eTrcRdq2GS4eA==", "requires": { "archive-type": "^4.0.0", "content-disposition": "^0.5.2", @@ -9899,9 +8651,9 @@ }, "dependencies": { "get-stream": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.1.0.tgz", - "integrity": "sha512-EXr1FOzrzTfGeL0gQdeFEvOMm2mzMOglyiOXSTpPC+iAjAKftbr3jpCMWynogwYnM+eSj9sHGc6wjIcDvYiygw==", + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", "requires": { "pump": "^3.0.0" } @@ -9957,55 +8709,14 @@ } }, "duplexer": { - "version": "0.1.1", - "resolved": "https://registry.npm.taobao.org/duplexer/download/duplexer-0.1.1.tgz", - "integrity": "sha1-rOb/gIwc5mtX0ev5eXessCM0z8E=", + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", "dev": true }, - "duplexer2": { - "version": "0.1.4", - "resolved": "https://registry.npm.taobao.org/duplexer2/download/duplexer2-0.1.4.tgz", - "integrity": "sha1-ixLauHjA1p4+eJEFFmKjL8a93ME=", - "dev": true, - "requires": { - "readable-stream": "^2.0.2" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, "duplexer3": { "version": "0.1.4", - "resolved": "https://registry.npm.taobao.org/duplexer3/download/duplexer3-0.1.4.tgz", + "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=" }, "duplexify": { @@ -10018,43 +8729,11 @@ "inherits": "^2.0.1", "readable-stream": "^2.0.0", "stream-shift": "^1.0.0" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } } }, "ecc-jsbn": { "version": "0.1.2", - "resolved": "https://registry.npm.taobao.org/ecc-jsbn/download/ecc-jsbn-0.1.2.tgz", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", "dev": true, "requires": { @@ -10064,7 +8743,7 @@ }, "ee-first": { "version": "1.1.1", - "resolved": "https://registry.npm.taobao.org/ee-first/download/ee-first-1.1.1.tgz", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=", "dev": true }, @@ -10078,9 +8757,9 @@ } }, "electron": { - "version": "12.0.0-beta.10", - "resolved": "https://registry.npmjs.org/electron/-/electron-12.0.0-beta.10.tgz", - "integrity": "sha512-msWSKkIWMDZPg7JKIJrnlcVGd6yYu1kWJF2wXthupwR7Sf6YQuKSNIJ5bcKlCxih7xo0vgs/MQENqYZQgFi1kA==", + "version": "12.0.0-beta.11", + "resolved": "https://registry.npmjs.org/electron/-/electron-12.0.0-beta.11.tgz", + "integrity": "sha512-q9OvMVgP0iDLiFpg1HO0xLgw03/VNnxFyPnEplX9sw51vKKnIwCwmQI3q8vX+AllViYNDmaQu9ytwoU7/mWx/w==", "dev": true, "requires": { "@electron/get": "^1.0.1", @@ -10088,10 +8767,31 @@ "extract-zip": "^1.0.3" }, "dependencies": { - "@types/node": { - "version": "14.14.14", - "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.14.tgz", - "integrity": "sha512-UHnOPWVWV1z+VV8k6L1HhG7UbGBgIdghqF3l9Ny9ApPghbjICXkUJSd/b9gOgQfjM1r+37cipdw/HJ3F6ICEnQ==", + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "extract-zip": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-1.7.0.tgz", + "integrity": "sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==", + "dev": true, + "requires": { + "concat-stream": "^1.6.2", + "debug": "^2.6.9", + "mkdirp": "^0.5.4", + "yauzl": "^2.10.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", "dev": true } } @@ -10118,15 +8818,11 @@ "yargs": "^15.4.1" }, "dependencies": { - "chalk": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", - "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true }, "cliui": { "version": "6.0.0", @@ -10149,12 +8845,6 @@ "path-exists": "^4.0.0" } }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, "locate-path": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", @@ -10164,6 +8854,15 @@ "p-locate": "^4.1.0" } }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, "p-locate": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", @@ -10173,14 +8872,11 @@ "p-limit": "^2.2.0" } }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true }, "wrap-ansi": { "version": "6.2.0", @@ -10193,6 +8889,12 @@ "strip-ansi": "^6.0.0" } }, + "y18n": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz", + "integrity": "sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==", + "dev": true + }, "yargs": { "version": "15.4.1", "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", @@ -10244,10 +8946,300 @@ "unused-filename": "^2.1.0" } }, + "electron-installer-common": { + "version": "0.10.3", + "resolved": "https://registry.npmjs.org/electron-installer-common/-/electron-installer-common-0.10.3.tgz", + "integrity": "sha512-mYbP+6i+nHMIm0WZHXgGdmmXMe+KXncl6jZYQNcCF9C1WsNA9C5SZ2VP4TLQMSIoFO+X4ugkMEA5uld1bmyEvA==", + "dev": true, + "optional": true, + "requires": { + "@malept/cross-spawn-promise": "^1.0.0", + "@types/fs-extra": "^9.0.1", + "asar": "^3.0.0", + "debug": "^4.1.1", + "fs-extra": "^9.0.0", + "glob": "^7.1.4", + "lodash": "^4.17.15", + "parse-author": "^2.0.0", + "semver": "^7.1.1", + "tmp-promise": "^3.0.2" + } + }, + "electron-installer-debian": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/electron-installer-debian/-/electron-installer-debian-3.1.0.tgz", + "integrity": "sha512-k6KChvx0Fw8XTlCqwwbBfh19yGQaKjGdbugokmr1IpzINOm4QFyACKMTHAYFHW5LCBUZQShZD96hwxUZ+8Kx+w==", + "dev": true, + "optional": true, + "requires": { + "@malept/cross-spawn-promise": "^1.0.0", + "debug": "^4.1.1", + "electron-installer-common": "^0.10.2", + "fs-extra": "^9.0.0", + "get-folder-size": "^2.0.1", + "lodash": "^4.17.4", + "word-wrap": "^1.2.3", + "yargs": "^15.0.1" + }, + "dependencies": { + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true, + "optional": true + }, + "cliui": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", + "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", + "dev": true, + "optional": true, + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^6.2.0" + } + }, + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "optional": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "optional": true, + "requires": { + "p-locate": "^4.1.0" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "optional": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "optional": true, + "requires": { + "p-limit": "^2.2.0" + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true, + "optional": true + }, + "wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "dev": true, + "optional": true, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + }, + "y18n": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz", + "integrity": "sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==", + "dev": true, + "optional": true + }, + "yargs": { + "version": "15.4.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", + "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", + "dev": true, + "optional": true, + "requires": { + "cliui": "^6.0.0", + "decamelize": "^1.2.0", + "find-up": "^4.1.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^4.2.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^18.1.2" + } + }, + "yargs-parser": { + "version": "18.1.3", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", + "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "dev": true, + "optional": true, + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + } + } + }, + "electron-installer-redhat": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/electron-installer-redhat/-/electron-installer-redhat-3.2.0.tgz", + "integrity": "sha512-XMA+fQj3ULNVMl4eG+hIvrYITEqP1pfpERvx6kRwuPd06vdtB4KucL9241DAHT0NR5E9gnyJHM9Y6N24kk0mcA==", + "dev": true, + "optional": true, + "requires": { + "@malept/cross-spawn-promise": "^1.0.0", + "debug": "^4.1.1", + "electron-installer-common": "^0.10.2", + "fs-extra": "^9.0.0", + "lodash": "^4.17.15", + "word-wrap": "^1.2.3", + "yargs": "^15.1.0" + }, + "dependencies": { + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true, + "optional": true + }, + "cliui": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", + "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", + "dev": true, + "optional": true, + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^6.2.0" + } + }, + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "optional": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "optional": true, + "requires": { + "p-locate": "^4.1.0" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "optional": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "optional": true, + "requires": { + "p-limit": "^2.2.0" + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true, + "optional": true + }, + "wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "dev": true, + "optional": true, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + }, + "y18n": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz", + "integrity": "sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==", + "dev": true, + "optional": true + }, + "yargs": { + "version": "15.4.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", + "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", + "dev": true, + "optional": true, + "requires": { + "cliui": "^6.0.0", + "decamelize": "^1.2.0", + "find-up": "^4.1.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^4.2.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^18.1.2" + } + }, + "yargs-parser": { + "version": "18.1.3", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", + "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "dev": true, + "optional": true, + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + } + } + }, "electron-is-dev": { "version": "1.2.0", - "resolved": "https://registry.npm.taobao.org/electron-is-dev/download/electron-is-dev-1.2.0.tgz", - "integrity": "sha1-LlzqChs8zxyG9XfO53Nj71XesF4=" + "resolved": "https://registry.npmjs.org/electron-is-dev/-/electron-is-dev-1.2.0.tgz", + "integrity": "sha512-R1oD5gMBPS7PVU8gJwH6CtT0e6VSoD0+SzSnYpNm+dBkcijgA+K7VAMHDfnRq/lkKPZArpzplTW6jfiMYosdzw==" }, "electron-notarize": { "version": "1.0.0", @@ -10259,10 +9251,79 @@ "fs-extra": "^9.0.1" } }, + "electron-osx-sign": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/electron-osx-sign/-/electron-osx-sign-0.5.0.tgz", + "integrity": "sha512-icoRLHzFz/qxzDh/N4Pi2z4yVHurlsCAYQvsCSG7fCedJ4UJXBS6PoQyGH71IfcqKupcKeK7HX/NkyfG+v6vlQ==", + "dev": true, + "requires": { + "bluebird": "^3.5.0", + "compare-version": "^0.1.2", + "debug": "^2.6.8", + "isbinaryfile": "^3.0.2", + "minimist": "^1.2.0", + "plist": "^3.0.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "electron-packager": { + "version": "15.2.0", + "resolved": "https://registry.npmjs.org/electron-packager/-/electron-packager-15.2.0.tgz", + "integrity": "sha512-BaklTBRQy1JTijR3hi8XxHf/uo76rHbDCNM/eQHSblzE9C0NoNfOe86nPxB7y1u2jwlqoEJ4zFiHpTFioKGGRA==", + "dev": true, + "requires": { + "@electron/get": "^1.6.0", + "asar": "^3.0.0", + "debug": "^4.0.1", + "electron-notarize": "^1.0.0", + "electron-osx-sign": "^0.5.0", + "extract-zip": "^2.0.0", + "filenamify": "^4.1.0", + "fs-extra": "^9.0.0", + "galactus": "^0.2.1", + "get-package-info": "^1.0.0", + "junk": "^3.1.0", + "parse-author": "^2.0.0", + "plist": "^3.0.0", + "rcedit": "^2.0.0", + "resolve": "^1.1.6", + "semver": "^7.1.3", + "yargs-parser": "^20.0.0" + }, + "dependencies": { + "filenamify": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/filenamify/-/filenamify-4.2.0.tgz", + "integrity": "sha512-pkgE+4p7N1n7QieOopmn3TqJaefjdWXwEkj2XLZJLKfOgcQKkn11ahvGNgTD8mLggexLiDFQxeTs14xVU22XPA==", + "dev": true, + "requires": { + "filename-reserved-regex": "^2.0.0", + "strip-outer": "^1.0.1", + "trim-repeated": "^1.0.0" + } + } + } + }, "electron-positioner": { "version": "4.1.0", - "resolved": "https://registry.npm.taobao.org/electron-positioner/download/electron-positioner-4.1.0.tgz", - "integrity": "sha1-4Vj49qq9ZyWoqbTyJ5uVBLy+obA=" + "resolved": "https://registry.npmjs.org/electron-positioner/-/electron-positioner-4.1.0.tgz", + "integrity": "sha512-726DfbI9ZNoCg+Fcu6XLuTKTnzf+6nFqv7h+K/V6Ug7IbaPMI7s9S8URnGtWFCy5N5PL4HSzRFF2mXuinftDdg==" }, "electron-publish": { "version": "22.8.1", @@ -10280,36 +9341,220 @@ "mime": "^2.4.6" }, "dependencies": { - "chalk": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", - "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, "mime": { - "version": "2.4.6", - "resolved": "https://registry.npmjs.org/mime/-/mime-2.4.6.tgz", - "integrity": "sha512-RZKhC3EmpBchfTGBVb8fb+RL2cWyw/32lshnsETttkBAyAUXSGHxbEJWWRXc751DrIxG1q04b8QwMbAwkRPpUA==", + "version": "2.4.7", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.4.7.tgz", + "integrity": "sha512-dhNd1uA2u397uQk3Nv5LM4lm93WYDUXFn3Fu291FJerns4jyTudqhIWe4W04YLy7Uk1tm1Ore04NpjRvQp/NPA==", + "dev": true + } + } + }, + "electron-rebuild": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/electron-rebuild/-/electron-rebuild-2.3.4.tgz", + "integrity": "sha512-EHr1bkqXTN/jQJuh2/IunF9QGa9yOgpE9KdQ9A7VHshd7ycWvoXjWzaXaimfa1nu1l7vKqLLu7N2COe3Jn9NuA==", + "dev": true, + "requires": { + "@malept/cross-spawn-promise": "^1.1.0", + "colors": "^1.3.3", + "debug": "^4.1.1", + "detect-libc": "^1.0.3", + "fs-extra": "^9.0.1", + "got": "^11.7.0", + "lzma-native": "^6.0.1", + "node-abi": "^2.19.2", + "node-gyp": "^7.1.0", + "ora": "^5.1.0", + "tar": "^6.0.5", + "yargs": "^16.0.0" + }, + "dependencies": { + "@sindresorhus/is": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.0.0.tgz", + "integrity": "sha512-FyD2meJpDPjyNQejSjvnhpgI/azsQkA4lGbuu5BQZfjvJ9cbRZXzeWL2HceCekW4lixO9JPesIIQkSoLjeJHNQ==", "dev": true }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "@szmarczak/http-timer": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.5.tgz", + "integrity": "sha512-PyRA9sm1Yayuj5OIoJ1hGt2YISX45w9WcFbh6ddT0Z/0yaFxOtGLInr4jUfU1EAFVs0Yfyfev4RNwBlUaHdlDQ==", "dev": true, "requires": { - "has-flag": "^4.0.0" + "defer-to-connect": "^2.0.0" } + }, + "cacheable-request": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.1.tgz", + "integrity": "sha512-lt0mJ6YAnsrBErpTMWeu5kl/tg9xMAWjavYTN6VQXM1A/teBITuNcccXsCxF0tDQQJf9DfAaX5O4e0zp0KlfZw==", + "dev": true, + "requires": { + "clone-response": "^1.0.2", + "get-stream": "^5.1.0", + "http-cache-semantics": "^4.0.0", + "keyv": "^4.0.0", + "lowercase-keys": "^2.0.0", + "normalize-url": "^4.1.0", + "responselike": "^2.0.0" + } + }, + "chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "dev": true + }, + "decompress-response": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", + "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", + "dev": true, + "requires": { + "mimic-response": "^3.1.0" + } + }, + "defer-to-connect": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.0.tgz", + "integrity": "sha512-bYL2d05vOSf1JEZNx5vSAtPuBMkX8K9EUutg7zlKvTqKXHt7RhWJFbmd7qakVuf13i+IkGmp6FwSsONOf6VYIg==", + "dev": true + }, + "fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "dev": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dev": true, + "requires": { + "pump": "^3.0.0" + } + }, + "got": { + "version": "11.8.1", + "resolved": "https://registry.npmjs.org/got/-/got-11.8.1.tgz", + "integrity": "sha512-9aYdZL+6nHmvJwHALLwKSUZ0hMwGaJGYv3hoPLPgnT8BoBXm1SjnZeky+91tfwJaDzun2s4RsBRy48IEYv2q2Q==", + "dev": true, + "requires": { + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.1", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" + } + }, + "http-cache-semantics": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz", + "integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==", + "dev": true + }, + "json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true + }, + "keyv": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.0.3.tgz", + "integrity": "sha512-zdGa2TOpSZPq5mU6iowDARnMBZgtCqJ11dJROFi6tg6kTn4nuUdU09lFyLFSaHrWqpIJ+EBq4E8/Dc0Vx5vLdA==", + "dev": true, + "requires": { + "json-buffer": "3.0.1" + } + }, + "lowercase-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", + "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", + "dev": true + }, + "mimic-response": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", + "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", + "dev": true + }, + "minipass": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.3.tgz", + "integrity": "sha512-Mgd2GdMVzY+x3IJ+oHnVM+KG3lA5c8tnabyJKmHSaG2kAGpudxuOf8ToDkhumF7UzME7DecbQE9uOZhNm7PuJg==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "dev": true, + "requires": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + } + }, + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true + }, + "normalize-url": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.0.tgz", + "integrity": "sha512-2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ==", + "dev": true + }, + "p-cancelable": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.0.0.tgz", + "integrity": "sha512-wvPXDmbMmu2ksjkB4Z3nZWTSkJEb9lqVdMaCKpZUGJG9TMiNp9XcbG3fn9fPKjem04fJMJnXoyFPk2FmgiaiNg==", + "dev": true + }, + "responselike": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.0.tgz", + "integrity": "sha512-xH48u3FTB9VsZw7R+vvgaKeLKzT6jOogbQhEe/jewwnZgzPcnyWui2Av6JpoYZF/91uueC+lqhWqeURw5/qhCw==", + "dev": true, + "requires": { + "lowercase-keys": "^2.0.0" + } + }, + "tar": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.0.5.tgz", + "integrity": "sha512-0b4HOimQHj9nXNEAA7zWwMM91Zhhba3pspja6sQbgTpynOJf+bkjBnfybNYzbpLbnwXnbyB4LOREvlyXLkCHSg==", + "dev": true, + "requires": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^3.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true } } }, @@ -10334,9 +9579,9 @@ } }, "electron-to-chromium": { - "version": "1.3.468", - "resolved": "https://registry.npm.taobao.org/electron-to-chromium/download/electron-to-chromium-1.3.468.tgz", - "integrity": "sha1-f/PhYuTKkf2XLGfdUbAOfkIc66I=", + "version": "1.3.629", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.629.tgz", + "integrity": "sha512-iSPPJtPvHrMAvYOt+9cdbDmTasPqwnwz4lkP8Dn200gDNUBQOLQ96xUsWXBwXslAo5XxdoXAoQQ3RAy4uao9IQ==", "dev": true }, "electron-updater": { @@ -10351,15 +9596,125 @@ "lazy-val": "^1.0.4", "lodash.isequal": "^4.5.0", "semver": "^7.3.2" + }, + "dependencies": { + "@types/semver": { + "version": "7.3.4", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.4.tgz", + "integrity": "sha512-+nVsLKlcUCeMzD2ufHEYuJ9a2ovstb6Dp52A5VsoKxDXgvE051XgHI/33I1EymwkRGQkwnA0LkhnUzituGs4EQ==" + } } }, "electron-window-state": { "version": "5.0.3", - "resolved": "https://registry.npm.taobao.org/electron-window-state/download/electron-window-state-5.0.3.tgz", - "integrity": "sha1-TzbQnj+VPYev8QO/AQ9GAFYFCqg=", + "resolved": "https://registry.npmjs.org/electron-window-state/-/electron-window-state-5.0.3.tgz", + "integrity": "sha512-1mNTwCfkolXl3kMf50yW3vE2lZj0y92P/HYWFBrb+v2S/pCka5mdwN3cagKm458A7NjndSwijynXgcLWRodsVg==", "requires": { "jsonfile": "^4.0.0", "mkdirp": "^0.5.1" + }, + "dependencies": { + "jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "requires": { + "graceful-fs": "^4.1.6" + } + } + } + }, + "electron-winstaller": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/electron-winstaller/-/electron-winstaller-4.0.1.tgz", + "integrity": "sha512-wgdABzcMFpREjFCHZKQ5g5JF5jGqa8YCAsVD5Tb3sJhdj63AtuCu/2o++nVESlZZugKDv6Hxo6Wi8c3knEkbgA==", + "dev": true, + "optional": true, + "requires": { + "asar": "^2.0.1", + "debug": "^4.1.1", + "fs-extra": "^7.0.1", + "lodash.template": "^4.2.2", + "temp": "^0.9.0" + }, + "dependencies": { + "asar": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/asar/-/asar-2.1.0.tgz", + "integrity": "sha512-d2Ovma+bfqNpvBzY/KU8oPY67ZworixTpkjSx0PCXnQi67c2cXmssaTxpFDUM0ttopXoGx/KRxNg/GDThYbXQA==", + "dev": true, + "optional": true, + "requires": { + "@types/glob": "^7.1.1", + "chromium-pickle-js": "^0.2.0", + "commander": "^2.20.0", + "cuint": "^0.2.2", + "glob": "^7.1.3", + "minimatch": "^3.0.4", + "mkdirp": "^0.5.1", + "tmp-promise": "^1.0.5" + } + }, + "fs-extra": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz", + "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", + "dev": true, + "optional": true, + "requires": { + "graceful-fs": "^4.1.2", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "dev": true, + "optional": true, + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dev": true, + "optional": true, + "requires": { + "glob": "^7.1.3" + } + }, + "tmp": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.1.0.tgz", + "integrity": "sha512-J7Z2K08jbGcdA1kkQpJSqLF6T0tdQqpR2pnSUXsIchbPdTI9v3e85cLW0d6WDhwuAleOV71j2xWs8qMPfK7nKw==", + "dev": true, + "optional": true, + "requires": { + "rimraf": "^2.6.3" + } + }, + "tmp-promise": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/tmp-promise/-/tmp-promise-1.1.0.tgz", + "integrity": "sha512-8+Ah9aB1IRXCnIOxXZ0uFozV1nMU5xiu7hhFVUSxZ3bYu+psD4TzagCzVbexUCgNNGJnsmNDQlS4nG3mTyoNkw==", + "dev": true, + "optional": true, + "requires": { + "bluebird": "^3.5.0", + "tmp": "0.1.0" + } + }, + "universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true, + "optional": true + } } }, "elliptic": { @@ -10387,8 +9742,8 @@ }, "emoji-regex": { "version": "8.0.0", - "resolved": "https://registry.npm.taobao.org/emoji-regex/download/emoji-regex-8.0.0.tgz", - "integrity": "sha1-6Bj9ac5cz8tARZT4QpY79TFkzDc=" + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" }, "emojis-list": { "version": "3.0.0", @@ -10403,14 +9758,14 @@ }, "encodeurl": { "version": "1.0.2", - "resolved": "https://registry.npm.taobao.org/encodeurl/download/encodeurl-1.0.2.tgz", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=", "dev": true }, "end-of-stream": { "version": "1.4.4", - "resolved": "https://registry.npm.taobao.org/end-of-stream/download/end-of-stream-1.4.4.tgz", - "integrity": "sha1-WuZKX0UFe682JuwU2gyl5LJDHrA=", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", "requires": { "once": "^1.4.0" } @@ -10435,36 +9790,6 @@ "errno": "^0.1.3", "readable-stream": "^2.0.1" } - }, - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } } } }, @@ -10486,9 +9811,9 @@ } }, "entities": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.0.3.tgz", - "integrity": "sha512-MyoZ0jgnLvB2X3Lg5HqpFmn1kybDiIfEQmKzTb5apr51Rb+T3KdmMiqa70T+bhGnyv7bQ6WMj2QMHpGMmlrUYQ==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.1.0.tgz", + "integrity": "sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w==", "dev": true }, "env-paths": { @@ -10498,9 +9823,9 @@ "dev": true }, "errno": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.7.tgz", - "integrity": "sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg==", + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", + "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", "dev": true, "requires": { "prr": "~1.0.1" @@ -10508,36 +9833,45 @@ }, "error-ex": { "version": "1.3.2", - "resolved": "https://registry.npm.taobao.org/error-ex/download/error-ex-1.3.2.tgz", - "integrity": "sha1-tKxAZIEH/c3PriQvQovqihTU8b8=", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", "dev": true, "requires": { "is-arrayish": "^0.2.1" + }, + "dependencies": { + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", + "dev": true + } } }, "es-abstract": { - "version": "1.17.5", - "resolved": "https://registry.npm.taobao.org/es-abstract/download/es-abstract-1.17.5.tgz", - "integrity": "sha1-2MnR1myJgfuSAOIlHXme7pJ3Suk=", + "version": "1.18.0-next.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0-next.1.tgz", + "integrity": "sha512-I4UGspA0wpZXWENrdA0uHbnhte683t3qT/1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA==", "dev": true, "requires": { "es-to-primitive": "^1.2.1", "function-bind": "^1.1.1", "has": "^1.0.3", "has-symbols": "^1.0.1", - "is-callable": "^1.1.5", - "is-regex": "^1.0.5", - "object-inspect": "^1.7.0", + "is-callable": "^1.2.2", + "is-negative-zero": "^2.0.0", + "is-regex": "^1.1.1", + "object-inspect": "^1.8.0", "object-keys": "^1.1.1", - "object.assign": "^4.1.0", - "string.prototype.trimleft": "^2.1.1", - "string.prototype.trimright": "^2.1.1" + "object.assign": "^4.1.1", + "string.prototype.trimend": "^1.0.1", + "string.prototype.trimstart": "^1.0.1" } }, "es-to-primitive": { "version": "1.2.1", - "resolved": "https://registry.npm.taobao.org/es-to-primitive/download/es-to-primitive-1.2.1.tgz", - "integrity": "sha1-5VzUyc3BiLzvsDs2bHNjI/xciYo=", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", "dev": true, "requires": { "is-callable": "^1.1.4", @@ -10565,7 +9899,7 @@ }, "es6-iterator": { "version": "2.0.3", - "resolved": "https://registry.npm.taobao.org/es6-iterator/download/es6-iterator-2.0.3.tgz", + "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", "integrity": "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=", "dev": true, "requires": { @@ -10585,31 +9919,31 @@ } }, "escalade": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.0.2.tgz", - "integrity": "sha512-gPYAU37hYCUhW5euPeR+Y74F7BL+IBsV93j5cvGriSaD1aG6MGsqsV1yamRdrWrb2j3aiZvb0X+UBOWpx3JWtQ==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", "dev": true }, "escape-goat": { "version": "2.1.1", - "resolved": "https://registry.npm.taobao.org/escape-goat/download/escape-goat-2.1.1.tgz", - "integrity": "sha1-Gy3HcANnbEV+x2Cy3GjttkgYhnU=" + "resolved": "https://registry.npmjs.org/escape-goat/-/escape-goat-2.1.1.tgz", + "integrity": "sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==" }, "escape-html": { "version": "1.0.3", - "resolved": "https://registry.npm.taobao.org/escape-html/download/escape-html-1.0.3.tgz", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=", "dev": true }, "escape-string-regexp": { "version": "1.0.5", - "resolved": "https://registry.npm.taobao.org/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz?cache=0&sync_timestamp=1587627107924&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fescape-string-regexp%2Fdownload%2Fescape-string-regexp-1.0.5.tgz", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" }, "escodegen": { - "version": "1.14.2", - "resolved": "https://registry.npm.taobao.org/escodegen/download/escodegen-1.14.2.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fescodegen%2Fdownload%2Fescodegen-1.14.2.tgz", - "integrity": "sha1-FKtxv1AmwqoIFzr7oixvMXMoSoQ=", + "version": "1.14.3", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz", + "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==", "requires": { "esprima": "^4.0.1", "estraverse": "^4.2.0", @@ -10619,13 +9953,13 @@ } }, "eslint": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.11.0.tgz", - "integrity": "sha512-G9+qtYVCHaDi1ZuWzBsOWo2wSwd70TXnU6UHA3cTYHp7gCTXZcpggWFoUVAMRarg68qtPoNfFbzPh+VdOgmwmw==", + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.15.0.tgz", + "integrity": "sha512-Vr64xFDT8w30wFll643e7cGrIkPEU50yIiI36OdSIDoSGguIeaLzBo0vpGvzo9RECUqq7htURfwEtKqwytkqzA==", "dev": true, "requires": { "@babel/code-frame": "^7.0.0", - "@eslint/eslintrc": "^0.1.3", + "@eslint/eslintrc": "^0.2.2", "ajv": "^6.10.0", "chalk": "^4.0.0", "cross-spawn": "^7.0.2", @@ -10635,10 +9969,10 @@ "eslint-scope": "^5.1.1", "eslint-utils": "^2.1.0", "eslint-visitor-keys": "^2.0.0", - "espree": "^7.3.0", + "espree": "^7.3.1", "esquery": "^1.2.0", "esutils": "^2.0.2", - "file-entry-cache": "^5.0.1", + "file-entry-cache": "^6.0.0", "functional-red-black-tree": "^1.0.1", "glob-parent": "^5.0.0", "globals": "^12.1.0", @@ -10663,16 +9997,6 @@ "v8-compile-cache": "^2.0.3" }, "dependencies": { - "chalk": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", - "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, "eslint-scope": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", @@ -10683,42 +10007,10 @@ "estraverse": "^4.1.1" } }, - "eslint-visitor-keys": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz", - "integrity": "sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ==", - "dev": true - }, - "esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", - "dev": true, - "requires": { - "estraverse": "^5.2.0" - }, - "dependencies": { - "estraverse": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", - "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", - "dev": true - } - } - }, - "globals": { - "version": "12.4.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz", - "integrity": "sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==", - "dev": true, - "requires": { - "type-fest": "^0.8.1" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", "dev": true }, "levn": { @@ -10757,15 +10049,6 @@ "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", "dev": true }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, "type-check": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", @@ -10774,12 +10057,6 @@ "requires": { "prelude-ls": "^1.2.1" } - }, - "type-fest": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", - "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", - "dev": true } } }, @@ -10793,36 +10070,11 @@ "lodash.zip": "^4.2.0" } }, - "eslint-config-airbnb": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/eslint-config-airbnb/-/eslint-config-airbnb-18.2.0.tgz", - "integrity": "sha512-Fz4JIUKkrhO0du2cg5opdyPKQXOI2MvF8KUvN2710nJMT6jaRUpRE2swrJftAjVGL7T1otLM5ieo5RqS1v9Udg==", - "dev": true, - "requires": { - "eslint-config-airbnb-base": "^14.2.0", - "object.assign": "^4.1.0", - "object.entries": "^1.1.2" - } - }, - "eslint-config-airbnb-base": { - "version": "14.2.0", - "resolved": "https://registry.npmjs.org/eslint-config-airbnb-base/-/eslint-config-airbnb-base-14.2.0.tgz", - "integrity": "sha512-Snswd5oC6nJaevs3nZoLSTvGJBvzTfnBqOIArkf3cbyTyq9UD79wOk8s+RiL6bhca0p/eRO6veczhf6A/7Jy8Q==", - "dev": true, - "requires": { - "confusing-browser-globals": "^1.0.9", - "object.assign": "^4.1.0", - "object.entries": "^1.1.2" - } - }, "eslint-config-prettier": { - "version": "6.12.0", - "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-6.12.0.tgz", - "integrity": "sha512-9jWPlFlgNwRUYVoujvWTQ1aMO8o6648r+K7qU7K5Jmkbyqav1fuEZC0COYpGBxyiAJb65Ra9hrmFx19xRGwXWw==", - "dev": true, - "requires": { - "get-stdin": "^6.0.0" - } + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-7.0.0.tgz", + "integrity": "sha512-8Y8lGLVPPZdaNA7JXqnvETVC7IiVRgAP6afQu9gOQRn90YY3otMNh+x7Vr2vMePQntF+5erdSUBqSzCmU/AxaQ==", + "dev": true }, "eslint-config-react-app": { "version": "5.2.1", @@ -10834,15 +10086,39 @@ } }, "eslint-config-standard": { - "version": "14.1.1", - "resolved": "https://registry.npm.taobao.org/eslint-config-standard/download/eslint-config-standard-14.1.1.tgz", - "integrity": "sha1-gwqOROeu995nRkl5rQa0BgJsVuo=", + "version": "16.0.2", + "resolved": "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-16.0.2.tgz", + "integrity": "sha512-fx3f1rJDsl9bY7qzyX8SAtP8GBSk6MfXFaTfaGgk12aAYW4gJSyRm7dM790L6cbXv63fvjY4XeSzXnb4WM+SKw==", + "dev": true + }, + "eslint-config-standard-with-typescript": { + "version": "19.0.1", + "resolved": "https://registry.npmjs.org/eslint-config-standard-with-typescript/-/eslint-config-standard-with-typescript-19.0.1.tgz", + "integrity": "sha512-hAKj81+f4a+9lnvpHwZ4XSL672CbwSe5UJ7fTdL/RsQdqs4IjHudMETZuNQwwU7NlYpBTF9se7FRf5Pp7CVdag==", + "dev": true, + "requires": { + "@typescript-eslint/parser": "^4.0.0", + "eslint-config-standard": "^14.1.1" + }, + "dependencies": { + "eslint-config-standard": { + "version": "14.1.1", + "resolved": "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-14.1.1.tgz", + "integrity": "sha512-Z9B+VR+JIXRxz21udPTL9HpFMyoMUEeX1G251EQ6e05WD9aPVtVBn09XUmZ259wCMlCDmYDSZG62Hhm+ZTJcUg==", + "dev": true + } + } + }, + "eslint-import-resolver-alias": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-alias/-/eslint-import-resolver-alias-1.1.2.tgz", + "integrity": "sha512-WdviM1Eu834zsfjHtcGHtGfcu+F30Od3V7I9Fi57uhBEwPkjDcii7/yW8jAT+gOhn4P/vOxxNAXbFAKsrrc15w==", "dev": true }, "eslint-import-resolver-node": { - "version": "0.3.3", - "resolved": "https://registry.npm.taobao.org/eslint-import-resolver-node/download/eslint-import-resolver-node-0.3.3.tgz?cache=0&sync_timestamp=1578753906598&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Feslint-import-resolver-node%2Fdownload%2Feslint-import-resolver-node-0.3.3.tgz", - "integrity": "sha1-26pStrKBa1C8ZxGvdUIt6AjphAQ=", + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.4.tgz", + "integrity": "sha512-ogtf+5AB/O+nM6DIeBUNr2fuT7ot9Qg/1harBfBtaP13ekEWFQEEMP94BCB7zaNW3gyY+8SHYF00rnqYwXKWOA==", "dev": true, "requires": { "debug": "^2.6.9", @@ -10851,8 +10127,8 @@ "dependencies": { "debug": { "version": "2.6.9", - "resolved": "https://registry.npm.taobao.org/debug/download/debug-2.6.9.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fdebug%2Fdownload%2Fdebug-2.6.9.tgz", - "integrity": "sha1-XRKFFd8TT/Mn6QpMk/Tgd6U2NB8=", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, "requires": { "ms": "2.0.0" @@ -10860,12 +10136,25 @@ }, "ms": { "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", "dev": true } } }, + "eslint-import-resolver-typescript": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-2.3.0.tgz", + "integrity": "sha512-MHSXvmj5e0SGOOBhBbt7C+fWj1bJbtSYFAD85Xeg8nvUtuooTod2HQb8bfhE9f5QyyNxEfgzqOYFCvmdDIcCuw==", + "dev": true, + "requires": { + "debug": "^4.1.1", + "glob": "^7.1.6", + "is-glob": "^4.0.1", + "resolve": "^1.17.0", + "tsconfig-paths": "^3.9.0" + } + }, "eslint-loader": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/eslint-loader/-/eslint-loader-3.0.3.tgz", @@ -10890,6 +10179,26 @@ "universalify": "^0.1.0" } }, + "jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + } + }, "universalify": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", @@ -10900,8 +10209,8 @@ }, "eslint-module-utils": { "version": "2.6.0", - "resolved": "https://registry.npm.taobao.org/eslint-module-utils/download/eslint-module-utils-2.6.0.tgz", - "integrity": "sha1-V569CU9Wr3eX0ZyYZsnJSGYpv6Y=", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.6.0.tgz", + "integrity": "sha512-6j9xxegbqe8/kZY8cYpcp0xhbK0EgJlg3g9mib3/miLaExuuwc3n5UEfSnU6hWMbT0FAYVvDbL9RrRgpUeQIvA==", "dev": true, "requires": { "debug": "^2.6.9", @@ -10910,65 +10219,147 @@ "dependencies": { "debug": { "version": "2.6.9", - "resolved": "https://registry.npm.taobao.org/debug/download/debug-2.6.9.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fdebug%2Fdownload%2Fdebug-2.6.9.tgz", - "integrity": "sha1-XRKFFd8TT/Mn6QpMk/Tgd6U2NB8=", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, "requires": { "ms": "2.0.0" } }, + "find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", + "dev": true, + "requires": { + "locate-path": "^2.0.0" + } + }, "ms": { "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", "dev": true + }, + "pkg-dir": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz", + "integrity": "sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=", + "dev": true, + "requires": { + "find-up": "^2.1.0" + } } } }, + "eslint-plugin-babel": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-babel/-/eslint-plugin-babel-5.3.1.tgz", + "integrity": "sha512-VsQEr6NH3dj664+EyxJwO4FCYm/00JhYb3Sk3ft8o+fpKuIfQ9TaW6uVUfvwMXHcf/lsnRIoyFPsLMyiWCSL/g==", + "dev": true, + "requires": { + "eslint-rule-composer": "^0.3.0" + } + }, "eslint-plugin-es": { "version": "3.0.1", - "resolved": "https://registry.npm.taobao.org/eslint-plugin-es/download/eslint-plugin-es-3.0.1.tgz", - "integrity": "sha1-dafN/czdwFiZNK7rOEF18iHFeJM=", + "resolved": "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-3.0.1.tgz", + "integrity": "sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==", "dev": true, "requires": { "eslint-utils": "^2.0.0", "regexpp": "^3.0.0" - }, - "dependencies": { - "eslint-utils": { - "version": "2.1.0", - "resolved": "https://registry.npm.taobao.org/eslint-utils/download/eslint-utils-2.1.0.tgz?cache=0&sync_timestamp=1592222029130&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Feslint-utils%2Fdownload%2Feslint-utils-2.1.0.tgz", - "integrity": "sha1-0t5eA0JOcH3BDHQGjd7a5wh0Gyc=", - "dev": true, - "requires": { - "eslint-visitor-keys": "^1.1.0" - } - }, - "regexpp": { - "version": "3.1.0", - "resolved": "https://registry.npm.taobao.org/regexpp/download/regexpp-3.1.0.tgz", - "integrity": "sha1-IG0K0KVkjP+9uK5GQ489xRyfeOI=", - "dev": true - } } }, "eslint-plugin-flowtype": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-5.2.0.tgz", - "integrity": "sha512-z7ULdTxuhlRJcEe1MVljePXricuPOrsWfScRXFhNzVD5dmTHWjIF57AxD0e7AbEoLSbjSsaA5S+hCg43WvpXJQ==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-4.6.0.tgz", + "integrity": "sha512-W5hLjpFfZyZsXfo5anlu7HM970JBDqbEshAJUkeczP6BFCIfJXuiIBQXyberLRtOStT0OGPF8efeTbxlHk4LpQ==", "dev": true, "requires": { - "lodash": "^4.17.15", - "string-natural-compare": "^3.0.1" + "lodash": "^4.17.15" } }, "eslint-plugin-html": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-html/-/eslint-plugin-html-6.1.0.tgz", - "integrity": "sha512-xcqithhnjUxoEDRL0hYci4RSS8EZ1NGr3/H8x3BxJvxgbu4R3YaEUea9i93j95NuAgoAbOUfNmybta8fqi4UbA==", + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-html/-/eslint-plugin-html-6.1.1.tgz", + "integrity": "sha512-JSe3ZDb7feKMnQM27XWGeoIjvP4oWQMJD9GZ6wW67J7/plVL87NK72RBwlvfc3tTZiYUchHhxAwtgEd1GdofDA==", "dev": true, "requires": { - "htmlparser2": "^4.1.0" + "htmlparser2": "^5.0.1" + }, + "dependencies": { + "dom-serializer": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.2.0.tgz", + "integrity": "sha512-n6kZFH/KlCrqs/1GHMOd5i2fd/beQHuehKdWvNNffbGHTr/almdhuVvTVFb3V7fglz+nC50fFusu3lY33h12pA==", + "dev": true, + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "entities": "^2.0.0" + }, + "dependencies": { + "domhandler": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.0.0.tgz", + "integrity": "sha512-KPTbnGQ1JeEMQyO1iYXoagsI6so/C96HZiFyByU3T6iAzpXn8EGEvct6unm1ZGoed8ByO2oirxgwxBmqKF9haA==", + "dev": true, + "requires": { + "domelementtype": "^2.1.0" + } + } + } + }, + "domelementtype": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.1.0.tgz", + "integrity": "sha512-LsTgx/L5VpD+Q8lmsXSHW2WpA+eBlZ9HPf3erD1IoPF00/3JKHZ3BknUVA2QGDNu69ZNmyFmCWBSO45XjYKC5w==", + "dev": true + }, + "domhandler": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-3.3.0.tgz", + "integrity": "sha512-J1C5rIANUbuYK+FuFL98650rihynUOEzRLxW+90bKZRWB6A1X1Tf82GxR1qAWLyfNPRvjqfip3Q5tdYlmAa9lA==", + "dev": true, + "requires": { + "domelementtype": "^2.0.1" + } + }, + "domutils": { + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.4.4.tgz", + "integrity": "sha512-jBC0vOsECI4OMdD0GC9mGn7NXPLb+Qt6KW1YDQzeQYRUFKmNG8lh7mO5HiELfr+lLQE7loDVI4QcAxV80HS+RA==", + "dev": true, + "requires": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0" + }, + "dependencies": { + "domhandler": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.0.0.tgz", + "integrity": "sha512-KPTbnGQ1JeEMQyO1iYXoagsI6so/C96HZiFyByU3T6iAzpXn8EGEvct6unm1ZGoed8ByO2oirxgwxBmqKF9haA==", + "dev": true, + "requires": { + "domelementtype": "^2.1.0" + } + } + } + }, + "htmlparser2": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-5.0.1.tgz", + "integrity": "sha512-vKZZra6CSe9qsJzh0BjBGXo8dvzNsq/oGvsjfRdOrrryfeD9UOBEEQdeoqCRmKZchF5h2zOBMQ6YuQ0uRUmdbQ==", + "dev": true, + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^3.3.0", + "domutils": "^2.4.2", + "entities": "^2.0.0" + } + } } }, "eslint-plugin-import": { @@ -11011,16 +10402,6 @@ "isarray": "^1.0.0" } }, - "eslint-import-resolver-node": { - "version": "0.3.4", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.4.tgz", - "integrity": "sha512-ogtf+5AB/O+nM6DIeBUNr2fuT7ot9Qg/1harBfBtaP13ekEWFQEEMP94BCB7zaNW3gyY+8SHYF00rnqYwXKWOA==", - "dev": true, - "requires": { - "debug": "^2.6.9", - "resolve": "^1.13.1" - } - }, "ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", @@ -11030,36 +10411,44 @@ } }, "eslint-plugin-jsx-a11y": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.3.1.tgz", - "integrity": "sha512-i1S+P+c3HOlBJzMFORRbC58tHa65Kbo8b52/TwCwSKLohwvpfT5rm2GjGWzOHTEuq4xxf2aRlHHTtmExDQOP+g==", + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.2.3.tgz", + "integrity": "sha512-CawzfGt9w83tyuVekn0GDPU9ytYtxyxyFZ3aSWROmnRRFQFT2BiPJd7jvRdzNDi6oLWaS2asMeYSNMjWTV4eNg==", "dev": true, "requires": { - "@babel/runtime": "^7.10.2", - "aria-query": "^4.2.2", - "array-includes": "^3.1.1", + "@babel/runtime": "^7.4.5", + "aria-query": "^3.0.0", + "array-includes": "^3.0.3", "ast-types-flow": "^0.0.7", - "axe-core": "^3.5.4", - "axobject-query": "^2.1.2", - "damerau-levenshtein": "^1.0.6", - "emoji-regex": "^9.0.0", + "axobject-query": "^2.0.2", + "damerau-levenshtein": "^1.0.4", + "emoji-regex": "^7.0.2", "has": "^1.0.3", - "jsx-ast-utils": "^2.4.1", - "language-tags": "^1.0.5" + "jsx-ast-utils": "^2.2.1" }, "dependencies": { "emoji-regex": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.0.0.tgz", - "integrity": "sha512-6p1NII1Vm62wni/VR/cUMauVQoxmLVb9csqQlvLz+hO2gk8U2UYDfXHQSUYIBKmZwAKz867IDqG7B+u0mj+M6w==", + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", "dev": true + }, + "jsx-ast-utils": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-2.4.1.tgz", + "integrity": "sha512-z1xSldJ6imESSzOjd3NNkieVJKRlKYSOtMG8SFyCj2FIrvSaSuli/WjpBkEzCBoR9bYYYFgqJw61Xhu7Lcgk+w==", + "dev": true, + "requires": { + "array-includes": "^3.1.1", + "object.assign": "^4.1.0" + } } } }, "eslint-plugin-node": { "version": "11.1.0", - "resolved": "https://registry.npm.taobao.org/eslint-plugin-node/download/eslint-plugin-node-11.1.0.tgz", - "integrity": "sha1-yVVEQW7kraJnQKMEdO78VALcZx0=", + "resolved": "https://registry.npmjs.org/eslint-plugin-node/-/eslint-plugin-node-11.1.0.tgz", + "integrity": "sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==", "dev": true, "requires": { "eslint-plugin-es": "^3.0.0", @@ -11070,33 +10459,24 @@ "semver": "^6.1.0" }, "dependencies": { - "eslint-utils": { - "version": "2.1.0", - "resolved": "https://registry.npm.taobao.org/eslint-utils/download/eslint-utils-2.1.0.tgz?cache=0&sync_timestamp=1592222029130&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Feslint-utils%2Fdownload%2Feslint-utils-2.1.0.tgz", - "integrity": "sha1-0t5eA0JOcH3BDHQGjd7a5wh0Gyc=", - "dev": true, - "requires": { - "eslint-visitor-keys": "^1.1.0" - } - }, "ignore": { "version": "5.1.8", - "resolved": "https://registry.npm.taobao.org/ignore/download/ignore-5.1.8.tgz", - "integrity": "sha1-8VCotQo0KJsz4i9YiavU2AFvDlc=", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz", + "integrity": "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==", "dev": true }, "semver": { "version": "6.3.0", - "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1586886301819&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz", - "integrity": "sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0=", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true } } }, "eslint-plugin-prettier": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-3.1.4.tgz", - "integrity": "sha512-jZDa8z76klRqo+TdGDTFJSavwbnWK2ZpqGKNZ+VvweMW516pDUMmQ2koXvxEE4JhzNvTv+radye/bWGBmA6jmg==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-3.2.0.tgz", + "integrity": "sha512-kOUSJnFjAUFKwVxuzy6sA5yyMx6+o9ino4gCdShzBNx4eyFRudWRYKCFolKjoM40PEiuU6Cn7wBLfq3WsGg7qg==", "dev": true, "requires": { "prettier-linter-helpers": "^1.0.0" @@ -11104,14 +10484,14 @@ }, "eslint-plugin-promise": { "version": "4.2.1", - "resolved": "https://registry.npm.taobao.org/eslint-plugin-promise/download/eslint-plugin-promise-4.2.1.tgz", - "integrity": "sha1-hF/YsiYK2PglZMEiL85ErXHZQYo=", + "resolved": "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-4.2.1.tgz", + "integrity": "sha512-VoM09vT7bfA7D+upt+FjeBO5eHIJQBUWki1aPvB+vbNiHS3+oGIJGIeyBtKQTME6UPXXy3vV07OL1tHd3ANuDw==", "dev": true }, "eslint-plugin-react": { - "version": "7.21.4", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.21.4.tgz", - "integrity": "sha512-uHeQ8A0hg0ltNDXFu3qSfFqTNPXm1XithH6/SY318UX76CMj7Q599qWpgmMhVQyvhq36pm7qvoN3pb6/3jsTFg==", + "version": "7.21.5", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.21.5.tgz", + "integrity": "sha512-8MaEggC2et0wSF6bUeywF7qQ46ER81irOdWS4QWxnnlAEsnzeBevk1sWh7fhpCghPpXb+8Ks7hvaft6L/xsR6g==", "dev": true, "requires": { "array-includes": "^3.1.1", @@ -11123,7 +10503,7 @@ "object.fromentries": "^2.0.2", "object.values": "^1.1.1", "prop-types": "^15.7.2", - "resolve": "^1.17.0", + "resolve": "^1.18.1", "string.prototype.matchall": "^4.0.2" }, "dependencies": { @@ -11139,27 +10519,21 @@ } }, "eslint-plugin-react-hooks": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.1.2.tgz", - "integrity": "sha512-ykUeqkGyUGgwTtk78C0o8UG2fzwmgJ0qxBGPp2WqRKsTwcLuVf01kTDRAtOsd4u6whX2XOC8749n2vPydP82fg==", - "dev": true - }, - "eslint-plugin-sonarjs": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-sonarjs/-/eslint-plugin-sonarjs-0.5.0.tgz", - "integrity": "sha512-XW5MnzlRjhXpIdbULC/qAdJYHWw3rRLws/DyawdlPU/IdVr9AmRK1r2LaCvabwKOAW2XYYSo3kDX58E4MrB7PQ==", + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-1.7.0.tgz", + "integrity": "sha512-iXTCFcOmlWvw4+TOE8CLWj6yX1GwzT0Y6cUfHHZqWnSk144VmVIRcVGtUAzrLES7C798lmvnt02C7rxaOX1HNA==", "dev": true }, "eslint-plugin-standard": { - "version": "4.0.1", - "resolved": "https://registry.npm.taobao.org/eslint-plugin-standard/download/eslint-plugin-standard-4.0.1.tgz", - "integrity": "sha1-/wUZ9/+v8RT3bRvXw5lu7w9uILQ=", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-standard/-/eslint-plugin-standard-5.0.0.tgz", + "integrity": "sha512-eSIXPc9wBM4BrniMzJRBm2uoVuXz2EPa+NXPk2+itrVt+r5SbKFERx/IgrK/HmfjddyKVz2f+j+7gBRvu19xLg==", "dev": true }, "eslint-plugin-unicorn": { - "version": "22.0.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-unicorn/-/eslint-plugin-unicorn-22.0.0.tgz", - "integrity": "sha512-jXPOauNiVFYLr+AeU3l21Ao+iDl/G08vUWui21RCI2L1TJIIoJvAMjMR6I+QPKr8FgIumzuR6gzDKCtEx2IkzA==", + "version": "23.0.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-unicorn/-/eslint-plugin-unicorn-23.0.0.tgz", + "integrity": "sha512-Vabo3cjl6cjyhcf+76CdQEY6suOFzK0Xh3xo0uL9VDYrDJP5+B6PjV0tHTYm82WZmFWniugFJM3ywHSNYTi/ZQ==", "dev": true, "requires": { "ci-info": "^2.0.0", @@ -11196,6 +10570,15 @@ "p-locate": "^4.1.0" } }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, "p-locate": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", @@ -11205,6 +10588,12 @@ "p-limit": "^2.2.0" } }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true + }, "parse-json": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.1.0.tgz", @@ -11265,10 +10654,16 @@ } } }, + "eslint-rule-composer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/eslint-rule-composer/-/eslint-rule-composer-0.3.0.tgz", + "integrity": "sha512-bt+Sh8CtDmn2OajxvNO+BX7Wn4CIWMpTRm3MaiKPCQcnnlm0CS2mhui6QaoeQugs+3Kj2ESKEEGJUdVafwhiCg==", + "dev": true + }, "eslint-scope": { - "version": "5.1.0", - "resolved": "https://registry.npm.taobao.org/eslint-scope/download/eslint-scope-5.1.0.tgz", - "integrity": "sha1-0Plx3+WcaeDK2mhLI9Sdv4JgDOU=", + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz", + "integrity": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==", "dev": true, "requires": { "esrecurse": "^4.1.0", @@ -11302,22 +10697,30 @@ "dev": true, "requires": { "eslint-visitor-keys": "^1.1.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true + } } }, "eslint-visitor-keys": { - "version": "1.2.0", - "resolved": "https://registry.npm.taobao.org/eslint-visitor-keys/download/eslint-visitor-keys-1.2.0.tgz", - "integrity": "sha1-dEFayISHRJX3jsKpc0lSU0TJgfo=", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz", + "integrity": "sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ==", "dev": true }, "espree": { - "version": "7.3.0", - "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.0.tgz", - "integrity": "sha512-dksIWsvKCixn1yrEXO8UosNSxaDoSYpq9reEjZSbHLpT5hpaCAKTLBwq0RHtLrIr+c0ByiYzWT8KTMRzoRCNlw==", + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", + "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==", "dev": true, "requires": { "acorn": "^7.4.0", - "acorn-jsx": "^5.2.0", + "acorn-jsx": "^5.3.1", "eslint-visitor-keys": "^1.3.0" }, "dependencies": { @@ -11337,8 +10740,8 @@ }, "esprima": { "version": "4.0.1", - "resolved": "https://registry.npm.taobao.org/esprima/download/esprima-4.0.1.tgz", - "integrity": "sha1-E7BM2z5sXRnfkatph6hpVhmwqnE=" + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" }, "esquery": { "version": "1.3.1", @@ -11350,35 +10753,43 @@ }, "dependencies": { "estraverse": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.1.0.tgz", - "integrity": "sha512-FyohXK+R0vE+y1nHLoBM7ZTyqRpqAlhdZHCWIWEviFLiGB8b04H6bQs8G+XTthacvT8VuwvteiP7RJSxMs8UEw==", + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", + "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", "dev": true } } }, "esrecurse": { - "version": "4.2.1", - "resolved": "https://registry.npm.taobao.org/esrecurse/download/esrecurse-4.2.1.tgz", - "integrity": "sha1-AHo7n9vCs7uH5IeeoZyS/b05Qs8=", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", "dev": true, "requires": { - "estraverse": "^4.1.0" + "estraverse": "^5.2.0" + }, + "dependencies": { + "estraverse": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", + "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", + "dev": true + } } }, "estraverse": { "version": "4.3.0", - "resolved": "https://registry.npm.taobao.org/estraverse/download/estraverse-4.3.0.tgz", - "integrity": "sha1-OYrT88WiSUi+dyXoPRGn3ijNvR0=" + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" }, "esutils": { "version": "2.0.3", - "resolved": "https://registry.npm.taobao.org/esutils/download/esutils-2.0.3.tgz", - "integrity": "sha1-dNLrTeC42hKTcRkQ1Qd1ubcQ72Q=" + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" }, "etag": { "version": "1.8.1", - "resolved": "https://registry.npm.taobao.org/etag/download/etag-1.8.1.tgz", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=", "dev": true }, @@ -11398,9 +10809,9 @@ } }, "eventemitter3": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.4.tgz", - "integrity": "sha512-rlaVLnVxtxvoyLsQQFBx53YmXHDxRIzzTLbdfxqi4yocpSjAxXwkU0cScM5JgSKMqEhrZpnvQ2D9gjylR0AimQ==", + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", "dev": true }, "events": { @@ -11411,8 +10822,8 @@ }, "eventsource": { "version": "1.0.7", - "resolved": "https://registry.npm.taobao.org/eventsource/download/eventsource-1.0.7.tgz", - "integrity": "sha1-j7xyyT/NNAiAkLwKTmT0tc7m2NA=", + "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-1.0.7.tgz", + "integrity": "sha512-4Ln17+vVT0k8aWq+t/bF5arcS3EpT9gYtW66EPacdj/mAFevznsnyoHLPy2BA8gbIQeIHoPsvwmfBftfcG//BQ==", "dev": true, "requires": { "original": "^1.0.0" @@ -11436,8 +10847,8 @@ }, "execa": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/execa/download/execa-1.0.0.tgz?cache=0&sync_timestamp=1590156579845&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fexeca%2Fdownload%2Fexeca-1.0.0.tgz", - "integrity": "sha1-xiNqW7TfbW8V6I5/AXeYIWdJ3dg=", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", "dev": true, "requires": { "cross-spawn": "^6.0.0", @@ -11451,8 +10862,8 @@ "dependencies": { "cross-spawn": { "version": "6.0.5", - "resolved": "https://registry.npm.taobao.org/cross-spawn/download/cross-spawn-6.0.5.tgz?cache=0&sync_timestamp=1590421014780&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcross-spawn%2Fdownload%2Fcross-spawn-6.0.5.tgz", - "integrity": "sha1-Sl7Hxk364iw6FBJNus3uhG2Ay8Q=", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", "dev": true, "requires": { "nice-try": "^1.0.4", @@ -11464,19 +10875,19 @@ }, "path-key": { "version": "2.0.1", - "resolved": "https://registry.npm.taobao.org/path-key/download/path-key-2.0.1.tgz?cache=0&sync_timestamp=1574445307008&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fpath-key%2Fdownload%2Fpath-key-2.0.1.tgz", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", "dev": true }, "semver": { "version": "5.7.1", - "resolved": "https://registry.npm.taobao.org/semver/download/semver-5.7.1.tgz?cache=0&sync_timestamp=1586886301819&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-5.7.1.tgz", - "integrity": "sha1-qVT5Ma66UI0we78Gnv8MAclhFvc=", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", "dev": true }, "shebang-command": { "version": "1.2.0", - "resolved": "https://registry.npm.taobao.org/shebang-command/download/shebang-command-1.2.0.tgz", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", "dev": true, "requires": { @@ -11485,14 +10896,14 @@ }, "shebang-regex": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/shebang-regex/download/shebang-regex-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", "dev": true }, "which": { "version": "1.3.1", - "resolved": "https://registry.npm.taobao.org/which/download/which-1.3.1.tgz", - "integrity": "sha1-pFBD1U9YBTFtqNYvn1CRjT2nCwo=", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", "dev": true, "requires": { "isexe": "^2.0.0" @@ -11502,18 +10913,18 @@ }, "exif-parser": { "version": "0.1.12", - "resolved": "https://registry.npm.taobao.org/exif-parser/download/exif-parser-0.1.12.tgz", + "resolved": "https://registry.npmjs.org/exif-parser/-/exif-parser-0.1.12.tgz", "integrity": "sha1-WKnS1ywCwfbwKg70qRZicrd2CSI=" }, "exit": { "version": "0.1.2", - "resolved": "https://registry.npm.taobao.org/exit/download/exit-0.1.2.tgz", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=", "dev": true }, "expand-brackets": { "version": "2.1.4", - "resolved": "https://registry.npm.taobao.org/expand-brackets/download/expand-brackets-2.1.4.tgz", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", "dev": true, "requires": { @@ -11528,8 +10939,8 @@ "dependencies": { "debug": { "version": "2.6.9", - "resolved": "https://registry.npm.taobao.org/debug/download/debug-2.6.9.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fdebug%2Fdownload%2Fdebug-2.6.9.tgz", - "integrity": "sha1-XRKFFd8TT/Mn6QpMk/Tgd6U2NB8=", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, "requires": { "ms": "2.0.0" @@ -11537,7 +10948,7 @@ }, "define-property": { "version": "0.2.5", - "resolved": "https://registry.npm.taobao.org/define-property/download/define-property-0.2.5.tgz", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", "dev": true, "requires": { @@ -11546,7 +10957,7 @@ }, "extend-shallow": { "version": "2.0.1", - "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-2.0.1.tgz", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", "dev": true, "requires": { @@ -11555,12 +10966,21 @@ }, "ms": { "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", "dev": true } } }, + "expand-tilde": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", + "integrity": "sha1-l+gBqgUt8CRU3kawK/YhZCzchQI=", + "dev": true, + "requires": { + "homedir-polyfill": "^1.0.1" + } + }, "expect": { "version": "24.9.0", "resolved": "https://registry.npmjs.org/expect/-/expect-24.9.0.tgz", @@ -11595,7 +11015,7 @@ }, "color-name": { "version": "1.1.3", - "resolved": "https://registry.npm.taobao.org/color-name/download/color-name-1.1.3.tgz", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", "dev": true } @@ -11638,213 +11058,6 @@ "utils-merge": "1.0.1", "vary": "~1.1.2" }, - "dependencies": { - "array-flatten": { - "version": "1.1.1", - "resolved": "https://registry.npm.taobao.org/array-flatten/download/array-flatten-1.1.1.tgz", - "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=", - "dev": true - }, - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", - "dev": true - }, - "qs": { - "version": "6.7.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", - "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==", - "dev": true - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - } - } - }, - "ext": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/ext/-/ext-1.4.0.tgz", - "integrity": "sha512-Key5NIsUxdqKg3vIsdw9dSuXpPCQ297y6wBjL30edxwPgt2E44WcWBZey/ZvUc6sERLTxKdyCu4gZFmUbk1Q7A==", - "dev": true, - "requires": { - "type": "^2.0.0" - }, - "dependencies": { - "type": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/type/-/type-2.0.0.tgz", - "integrity": "sha512-KBt58xCHry4Cejnc2ISQAF7QY+ORngsWfxezO68+12hKV6lQY8P/psIkcbjeHWn7MqcgciWJyCCevFMJdIXpow==", - "dev": true - } - } - }, - "ext-list": { - "version": "2.2.2", - "resolved": "https://registry.npm.taobao.org/ext-list/download/ext-list-2.2.2.tgz", - "integrity": "sha1-C5jmTtgvWs8PKTG6v2khLvUt3Tc=", - "requires": { - "mime-db": "^1.28.0" - } - }, - "ext-name": { - "version": "5.0.0", - "resolved": "https://registry.npm.taobao.org/ext-name/download/ext-name-5.0.0.tgz", - "integrity": "sha1-cHgZgdGD7hXROZPIgiBFxQbI8KY=", - "requires": { - "ext-list": "^2.0.0", - "sort-keys-length": "^1.0.0" - } - }, - "extend": { - "version": "3.0.2", - "resolved": "https://registry.npm.taobao.org/extend/download/extend-3.0.2.tgz", - "integrity": "sha1-+LETa0Bx+9jrFAr/hYsQGewpFfo=", - "dev": true - }, - "extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-3.0.2.tgz", - "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", - "dev": true, - "requires": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - }, - "dependencies": { - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npm.taobao.org/is-extendable/download/is-extendable-1.0.1.tgz", - "integrity": "sha1-p0cPnkJnM9gb2B4RVSZOOjUHyrQ=", - "dev": true, - "requires": { - "is-plain-object": "^2.0.4" - } - } - } - }, - "external-editor": { - "version": "3.1.0", - "resolved": "https://registry.npm.taobao.org/external-editor/download/external-editor-3.1.0.tgz", - "integrity": "sha1-ywP3QL764D6k0oPK7SdBqD8zVJU=", - "dev": true, - "requires": { - "chardet": "^0.7.0", - "iconv-lite": "^0.4.24", - "tmp": "^0.0.33" - }, - "dependencies": { - "tmp": { - "version": "0.0.33", - "resolved": "https://registry.npm.taobao.org/tmp/download/tmp-0.0.33.tgz", - "integrity": "sha1-bTQzWIl2jSGyvNoKonfO07G/rfk=", - "dev": true, - "requires": { - "os-tmpdir": "~1.0.2" - } - } - } - }, - "extglob": { - "version": "2.0.4", - "resolved": "https://registry.npm.taobao.org/extglob/download/extglob-2.0.4.tgz", - "integrity": "sha1-rQD+TcYSqSMuhxhxHcXLWrAoVUM=", - "dev": true, - "requires": { - "array-unique": "^0.3.2", - "define-property": "^1.0.0", - "expand-brackets": "^2.1.4", - "extend-shallow": "^2.0.1", - "fragment-cache": "^0.2.1", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/define-property/download/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "dev": true, - "requires": { - "is-descriptor": "^1.0.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/is-accessor-descriptor/download/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha1-FpwvbT3x+ZJhgHI2XJsOofaHhlY=", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/is-data-descriptor/download/is-data-descriptor-1.0.0.tgz", - "integrity": "sha1-2Eh2Mh0Oet0DmQQGq7u9NrqSaMc=", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npm.taobao.org/is-descriptor/download/is-descriptor-1.0.2.tgz", - "integrity": "sha1-OxWXRqZmBLBPjIFSS6NlxfFNhuw=", - "dev": true, - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - }, - "kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npm.taobao.org/kind-of/download/kind-of-6.0.3.tgz", - "integrity": "sha1-B8BQNKbDSfoG4k+jWqdttFgM5N0=", - "dev": true - } - } - }, - "extract-files": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/extract-files/-/extract-files-9.0.0.tgz", - "integrity": "sha512-CvdFfHkC95B4bBBk36hcEmvdR2awOdhhVUYH6S/zrVj3477zven/fJMYg7121h4T1xHZC+tetUpubpAhxwI7hQ==", - "dev": true - }, - "extract-zip": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-1.7.0.tgz", - "integrity": "sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==", - "dev": true, - "requires": { - "concat-stream": "^1.6.2", - "debug": "^2.6.9", - "mkdirp": "^0.5.4", - "yauzl": "^2.10.0" - }, "dependencies": { "debug": { "version": "2.6.9", @@ -11860,19 +11073,211 @@ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", "dev": true + }, + "qs": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", + "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==", + "dev": true + } + } + }, + "express-ws": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/express-ws/-/express-ws-4.0.0.tgz", + "integrity": "sha512-KEyUw8AwRET2iFjFsI1EJQrJ/fHeGiJtgpYgEWG3yDv4l/To/m3a2GaYfeGyB3lsWdvbesjF5XCMx+SVBgAAYw==", + "dev": true, + "requires": { + "ws": "^5.2.0" + } + }, + "ext": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/ext/-/ext-1.4.0.tgz", + "integrity": "sha512-Key5NIsUxdqKg3vIsdw9dSuXpPCQ297y6wBjL30edxwPgt2E44WcWBZey/ZvUc6sERLTxKdyCu4gZFmUbk1Q7A==", + "dev": true, + "requires": { + "type": "^2.0.0" + }, + "dependencies": { + "type": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/type/-/type-2.1.0.tgz", + "integrity": "sha512-G9absDWvhAWCV2gmF1zKud3OyC61nZDwWvBL2DApaVFogI07CprggiQAOOjvp2NRjYWFzPyu7vwtDrQFq8jeSA==", + "dev": true + } + } + }, + "ext-list": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/ext-list/-/ext-list-2.2.2.tgz", + "integrity": "sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==", + "requires": { + "mime-db": "^1.28.0" + } + }, + "ext-name": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ext-name/-/ext-name-5.0.0.tgz", + "integrity": "sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==", + "requires": { + "ext-list": "^2.0.0", + "sort-keys-length": "^1.0.0" + } + }, + "extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "dev": true + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "external-editor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", + "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", + "dev": true, + "requires": { + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", + "tmp": "^0.0.33" + }, + "dependencies": { + "tmp": { + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "dev": true, + "requires": { + "os-tmpdir": "~1.0.2" + } + } + } + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "dev": true, + "requires": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "extract-files": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/extract-files/-/extract-files-9.0.0.tgz", + "integrity": "sha512-CvdFfHkC95B4bBBk36hcEmvdR2awOdhhVUYH6S/zrVj3477zven/fJMYg7121h4T1xHZC+tetUpubpAhxwI7hQ==", + "dev": true + }, + "extract-zip": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz", + "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==", + "dev": true, + "requires": { + "@types/yauzl": "^2.9.1", + "debug": "^4.1.1", + "get-stream": "^5.1.0", + "yauzl": "^2.10.0" + }, + "dependencies": { + "get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dev": true, + "requires": { + "pump": "^3.0.0" + } } } }, "extsprintf": { "version": "1.3.0", - "resolved": "https://registry.npm.taobao.org/extsprintf/download/extsprintf-1.3.0.tgz", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=", "dev": true }, "fast-deep-equal": { "version": "3.1.3", - "resolved": "https://registry.npm.taobao.org/fast-deep-equal/download/fast-deep-equal-3.1.3.tgz?cache=0&sync_timestamp=1591599604098&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffast-deep-equal%2Fdownload%2Ffast-deep-equal-3.1.3.tgz", - "integrity": "sha1-On1WtVnWy8PrUSMlJE5hmmXGxSU=", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", "dev": true }, "fast-diff": { @@ -11883,8 +11288,8 @@ }, "fast-glob": { "version": "2.2.7", - "resolved": "https://registry.npm.taobao.org/fast-glob/download/fast-glob-2.2.7.tgz", - "integrity": "sha1-aVOFfDr6R1//ku5gFdUtpwpM050=", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-2.2.7.tgz", + "integrity": "sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==", "dev": true, "requires": { "@mrmlnc/readdir-enhanced": "^2.2.1", @@ -11897,7 +11302,7 @@ "dependencies": { "glob-parent": { "version": "3.1.0", - "resolved": "https://registry.npm.taobao.org/glob-parent/download/glob-parent-3.1.0.tgz", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", "dev": true, "requires": { @@ -11907,7 +11312,7 @@ "dependencies": { "is-glob": { "version": "3.1.0", - "resolved": "https://registry.npm.taobao.org/is-glob/download/is-glob-3.1.0.tgz", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", "dev": true, "requires": { @@ -11920,13 +11325,13 @@ }, "fast-json-stable-stringify": { "version": "2.1.0", - "resolved": "https://registry.npm.taobao.org/fast-json-stable-stringify/download/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha1-h0v2nG9ATCtdmcSBNBOZ/VWJJjM=", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", "dev": true }, "fast-levenshtein": { "version": "2.0.6", - "resolved": "https://registry.npm.taobao.org/fast-levenshtein/download/fast-levenshtein-2.0.6.tgz", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=" }, "fast-safe-stringify": { @@ -11934,10 +11339,19 @@ "resolved": "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.0.7.tgz", "integrity": "sha512-Utm6CdzT+6xsDk2m8S6uL8VHxNwI6Jub+e9NYTcAms28T84pTa25GJQV9j0CY0N1rM8hK4x6grpF2BQf+2qwVA==" }, + "fastq": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.9.0.tgz", + "integrity": "sha512-i7FVWL8HhVY+CTkwFxkN2mk3h+787ixS5S63eb78diVRc1MCssarHq3W5cj0av7YDSwmaV928RNag+U1etRQ7w==", + "dev": true, + "requires": { + "reusify": "^1.0.4" + } + }, "faye-websocket": { - "version": "0.10.0", - "resolved": "https://registry.npm.taobao.org/faye-websocket/download/faye-websocket-0.10.0.tgz", - "integrity": "sha1-TkkvjQTftviQA1B/btvy1QHnxvQ=", + "version": "0.11.3", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.3.tgz", + "integrity": "sha512-D2y4bovYpzziGgbHYtGCMjlJM36vAl/y+xUyn1C+FVx8szd1E+86KwVw6XvYSzOP8iMpm1X0I4xJD+QtUb36OA==", "dev": true, "requires": { "websocket-driver": ">=0.5.1" @@ -11954,7 +11368,7 @@ }, "fd-slicer": { "version": "1.1.0", - "resolved": "https://registry.npm.taobao.org/fd-slicer/download/fd-slicer-1.1.0.tgz", + "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", "integrity": "sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4=", "requires": { "pend": "~1.2.0" @@ -11981,12 +11395,12 @@ } }, "file-entry-cache": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-5.0.1.tgz", - "integrity": "sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g==", + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.0.tgz", + "integrity": "sha512-fqoO76jZ3ZnYrXLDRxBR1YvOvc0k844kcOg40bgsPrE25LAb/PDqTY+ho64Xh2c8ZXgIKldchCFHczG2UVRcWA==", "dev": true, "requires": { - "flat-cache": "^2.0.1" + "flat-cache": "^3.0.4" } }, "file-loader": { @@ -11997,6 +11411,19 @@ "requires": { "loader-utils": "^1.2.3", "schema-utils": "^2.5.0" + }, + "dependencies": { + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + } + } } }, "file-stream-rotator": { @@ -12009,15 +11436,13 @@ }, "file-type": { "version": "11.1.0", - "resolved": "https://registry.npm.taobao.org/file-type/download/file-type-11.1.0.tgz?cache=0&sync_timestamp=1591535671708&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffile-type%2Fdownload%2Ffile-type-11.1.0.tgz", - "integrity": "sha1-k3gPP+2YtZl1XYRrmaFheirQY7g=" + "resolved": "https://registry.npmjs.org/file-type/-/file-type-11.1.0.tgz", + "integrity": "sha512-rM0UO7Qm9K7TWTtA6AShI/t7H5BPjDeGVDaNyg9BjHAj3PysKy7+8C8D137R88jnR3rFJZQB/tFgydl5sN5m7g==" }, "file-uri-to-path": { - "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/file-uri-to-path/download/file-uri-to-path-1.0.0.tgz", - "integrity": "sha1-VTp7hEb/b2hDWcRF8eN6BdrMM90=", - "dev": true, - "optional": true + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-2.0.0.tgz", + "integrity": "sha512-hjPFI8oE/2iQPVe4gbrJ73Pp+Xfub2+WI2LlXDbsaJBwT5wuMh35WNWVYYTpnz895shtwfyutMFLFywpQAFdLg==" }, "filelist": { "version": "1.0.1", @@ -12030,13 +11455,13 @@ }, "filename-reserved-regex": { "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/filename-reserved-regex/download/filename-reserved-regex-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz", "integrity": "sha1-q/c9+rc10EVECr/qLZHzieu/oik=" }, "filenamify": { "version": "3.0.0", - "resolved": "https://registry.npm.taobao.org/filenamify/download/filenamify-3.0.0.tgz", - "integrity": "sha1-lgPraIF5+MXUDYKGJty7ksOkZyw=", + "resolved": "https://registry.npmjs.org/filenamify/-/filenamify-3.0.0.tgz", + "integrity": "sha512-5EFZ//MsvJgXjBAFJ+Bh2YaCTRF/VP1YOmGrgt+KJ4SFRLjI87EIdwLLuT6wQX0I4F9W41xutobzczjsOKlI/g==", "requires": { "filename-reserved-regex": "^2.0.0", "strip-outer": "^1.0.0", @@ -12044,32 +11469,17 @@ } }, "filesize": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/filesize/-/filesize-6.0.1.tgz", - "integrity": "sha512-u4AYWPgbI5GBhs6id1KdImZWn5yfyFrrQ8OWZdN7ZMfA8Bf4HcO0BGo9bmUIEV8yrp8I1xVfJ/dn90GtFNNJcg==", + "version": "3.6.1", + "resolved": "https://registry.npmjs.org/filesize/-/filesize-3.6.1.tgz", + "integrity": "sha512-7KjR1vv6qnicaPMi1iiTcI85CyYwRO/PSFCu6SvqL8jN2Wjt/NIYQTFtFs7fSDCYOstUkEWIQGFUg5YZQfjlcg==", "dev": true }, "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npm.taobao.org/fill-range/download/fill-range-4.0.0.tgz", - "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", - "dev": true, + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", "requires": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } + "to-regex-range": "^5.0.1" } }, "finalhandler": { @@ -12098,7 +11508,7 @@ }, "ms": { "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", "dev": true } @@ -12115,6 +11525,55 @@ "pkg-dir": "^3.0.0" }, "dependencies": { + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "requires": { + "locate-path": "^3.0.0" + } + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "requires": { + "p-limit": "^2.0.0" + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "dev": true + }, "pkg-dir": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", @@ -12127,40 +11586,58 @@ } }, "find-up": { - "version": "3.0.0", - "resolved": "https://registry.npm.taobao.org/find-up/download/find-up-3.0.0.tgz", - "integrity": "sha1-SRafHXmTQwZG2mHsxa41XCHJe3M=", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", "dev": true, "requires": { - "locate-path": "^3.0.0" - } - }, - "flat-cache": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz", - "integrity": "sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA==", - "dev": true, - "requires": { - "flatted": "^2.0.0", - "rimraf": "2.6.3", - "write": "1.0.3" + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" }, "dependencies": { - "rimraf": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", - "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", + "locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", "dev": true, "requires": { - "glob": "^7.1.3" + "p-locate": "^5.0.0" + } + }, + "p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "requires": { + "p-limit": "^3.0.2" } } } }, + "flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "dev": true, + "requires": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + } + }, "flatted": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz", - "integrity": "sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.1.0.tgz", + "integrity": "sha512-tW+UkmtNg/jv9CSofAKvgVcO7c2URjhTdW1ZTkcAritblu8tajiYy7YisnIflEwtKssCtOxpnBRoCB7iap0/TA==", "dev": true }, "flatten": { @@ -12169,328 +11646,41 @@ "integrity": "sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg==", "dev": true }, - "flow-bin": { - "version": "0.135.0", - "resolved": "https://registry.npmjs.org/flow-bin/-/flow-bin-0.135.0.tgz", - "integrity": "sha512-E0JIKWopjULE/fl1X+j7rh0zgcgD5nubLs3HWYeYPo+nWFy8dALvrQbFcCFoPePrkhY/fffhN28t8P1zBxB2Yg==", - "dev": true - }, - "flow-typed": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/flow-typed/-/flow-typed-3.2.1.tgz", - "integrity": "sha512-vWQLZmndgdEHdy1TKTeI1DkLLa4078p6vhcKz/IZ6fcpaWLElTSG7rZi3BxlcSWfEQPxsymuSBNwAT7dCpXm6g==", + "flora-colossus": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/flora-colossus/-/flora-colossus-1.0.1.tgz", + "integrity": "sha512-d+9na7t9FyH8gBJoNDSi28mE4NgQVGGvxQ4aHtFRetjyh5SXjuus+V5EZaxFmFdXVemSOrx0lsgEl/ZMjnOWJA==", "dev": true, "requires": { - "@octokit/rest": "^16.43.1", - "colors": "^1.4.0", - "flowgen": "^1.10.0", - "fs-extra": "^8.1.0", - "glob": "^7.1.6", - "got": "^10.5.7", - "md5": "^2.2.1", - "mkdirp": "^1.0.3", - "prettier": "^1.19.1", - "rimraf": "^3.0.2", - "semver": "^7.3.2", - "table": "^5.4.6", - "through": "^2.3.8", - "unzipper": "^0.10.8", - "which": "^2.0.2", - "yargs": "^15.1.0" + "debug": "^4.1.1", + "fs-extra": "^7.0.0" }, "dependencies": { - "@sindresorhus/is": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-2.1.1.tgz", - "integrity": "sha512-/aPsuoj/1Dw/kzhkgz+ES6TxG0zfTMGLwuK2ZG00k/iJzYHTLCE8mVU8EPqEOp/lmxPoq1C1C9RYToRKb2KEfg==", - "dev": true - }, - "@szmarczak/http-timer": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.5.tgz", - "integrity": "sha512-PyRA9sm1Yayuj5OIoJ1hGt2YISX45w9WcFbh6ddT0Z/0yaFxOtGLInr4jUfU1EAFVs0Yfyfev4RNwBlUaHdlDQ==", - "dev": true, - "requires": { - "defer-to-connect": "^2.0.0" - } - }, - "cacheable-request": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.1.tgz", - "integrity": "sha512-lt0mJ6YAnsrBErpTMWeu5kl/tg9xMAWjavYTN6VQXM1A/teBITuNcccXsCxF0tDQQJf9DfAaX5O4e0zp0KlfZw==", - "dev": true, - "requires": { - "clone-response": "^1.0.2", - "get-stream": "^5.1.0", - "http-cache-semantics": "^4.0.0", - "keyv": "^4.0.0", - "lowercase-keys": "^2.0.0", - "normalize-url": "^4.1.0", - "responselike": "^2.0.0" - } - }, - "cliui": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", - "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", - "dev": true, - "requires": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^6.2.0" - } - }, - "decompress-response": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-5.0.0.tgz", - "integrity": "sha512-TLZWWybuxWgoW7Lykv+gq9xvzOsUjQ9tF09Tj6NSTYGMTCHNXzrPnD6Hi+TgZq19PyTAGH4Ll/NIM/eTGglnMw==", - "dev": true, - "requires": { - "mimic-response": "^2.0.0" - } - }, - "defer-to-connect": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.0.tgz", - "integrity": "sha512-bYL2d05vOSf1JEZNx5vSAtPuBMkX8K9EUutg7zlKvTqKXHt7RhWJFbmd7qakVuf13i+IkGmp6FwSsONOf6VYIg==", - "dev": true - }, - "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - }, "fs-extra": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", - "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz", + "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", "dev": true, "requires": { - "graceful-fs": "^4.2.0", + "graceful-fs": "^4.1.2", "jsonfile": "^4.0.0", "universalify": "^0.1.0" } }, - "get-stream": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", "dev": true, "requires": { - "pump": "^3.0.0" + "graceful-fs": "^4.1.6" } }, - "got": { - "version": "10.7.0", - "resolved": "https://registry.npmjs.org/got/-/got-10.7.0.tgz", - "integrity": "sha512-aWTDeNw9g+XqEZNcTjMMZSy7B7yE9toWOFYip7ofFTLleJhvZwUxxTxkTpKvF+p1SAA4VHmuEy7PiHTHyq8tJg==", - "dev": true, - "requires": { - "@sindresorhus/is": "^2.0.0", - "@szmarczak/http-timer": "^4.0.0", - "@types/cacheable-request": "^6.0.1", - "cacheable-lookup": "^2.0.0", - "cacheable-request": "^7.0.1", - "decompress-response": "^5.0.0", - "duplexer3": "^0.1.4", - "get-stream": "^5.0.0", - "lowercase-keys": "^2.0.0", - "mimic-response": "^2.1.0", - "p-cancelable": "^2.0.0", - "p-event": "^4.0.0", - "responselike": "^2.0.0", - "to-readable-stream": "^2.0.0", - "type-fest": "^0.10.0" - } - }, - "http-cache-semantics": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz", - "integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==", - "dev": true - }, - "json-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", - "dev": true - }, - "keyv": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.0.3.tgz", - "integrity": "sha512-zdGa2TOpSZPq5mU6iowDARnMBZgtCqJ11dJROFi6tg6kTn4nuUdU09lFyLFSaHrWqpIJ+EBq4E8/Dc0Vx5vLdA==", - "dev": true, - "requires": { - "json-buffer": "3.0.1" - } - }, - "locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "requires": { - "p-locate": "^4.1.0" - } - }, - "lowercase-keys": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", - "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", - "dev": true - }, - "mimic-response": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-2.1.0.tgz", - "integrity": "sha512-wXqjST+SLt7R009ySCglWBCFpjUygmCIfD790/kVbiGmUgfYGuB14PiTd5DwVxSV4NcYHjzMkoj5LjQZwTQLEA==", - "dev": true - }, - "mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "dev": true - }, - "normalize-url": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.0.tgz", - "integrity": "sha512-2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ==", - "dev": true - }, - "p-cancelable": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.0.0.tgz", - "integrity": "sha512-wvPXDmbMmu2ksjkB4Z3nZWTSkJEb9lqVdMaCKpZUGJG9TMiNp9XcbG3fn9fPKjem04fJMJnXoyFPk2FmgiaiNg==", - "dev": true - }, - "p-event": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/p-event/-/p-event-4.2.0.tgz", - "integrity": "sha512-KXatOjCRXXkSePPb1Nbi0p0m+gQAwdlbhi4wQKJPI1HsMQS9g+Sqp2o+QHziPr7eYJyOZet836KoHEVM1mwOrQ==", - "dev": true, - "requires": { - "p-timeout": "^3.1.0" - } - }, - "p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "requires": { - "p-limit": "^2.2.0" - } - }, - "p-timeout": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-3.2.0.tgz", - "integrity": "sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==", - "dev": true, - "requires": { - "p-finally": "^1.0.0" - } - }, - "responselike": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.0.tgz", - "integrity": "sha512-xH48u3FTB9VsZw7R+vvgaKeLKzT6jOogbQhEe/jewwnZgzPcnyWui2Av6JpoYZF/91uueC+lqhWqeURw5/qhCw==", - "dev": true, - "requires": { - "lowercase-keys": "^2.0.0" - } - }, - "to-readable-stream": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-2.1.0.tgz", - "integrity": "sha512-o3Qa6DGg1CEXshSdvWNX2sN4QHqg03SPq7U6jPXRahlQdl5dK8oXjkU/2/sGrnOZKeGV1zLSO8qPwyKklPPE7w==", - "dev": true - }, - "type-fest": { - "version": "0.10.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.10.0.tgz", - "integrity": "sha512-EUV9jo4sffrwlg8s0zDhP0T2WD3pru5Xi0+HTE3zTUmBaZNhfkite9PdSJwdXLwPVW0jnAHT56pZHIOYckPEiw==", - "dev": true - }, "universalify": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", "dev": true - }, - "wrap-ansi": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", - "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", - "dev": true, - "requires": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - } - }, - "yargs": { - "version": "15.4.1", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", - "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", - "dev": true, - "requires": { - "cliui": "^6.0.0", - "decamelize": "^1.2.0", - "find-up": "^4.1.0", - "get-caller-file": "^2.0.1", - "require-directory": "^2.1.1", - "require-main-filename": "^2.0.0", - "set-blocking": "^2.0.0", - "string-width": "^4.2.0", - "which-module": "^2.0.0", - "y18n": "^4.0.0", - "yargs-parser": "^18.1.2" - } - }, - "yargs-parser": { - "version": "18.1.3", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", - "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", - "dev": true, - "requires": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" - } - } - } - }, - "flowgen": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/flowgen/-/flowgen-1.11.0.tgz", - "integrity": "sha512-WpoBjzcZadnAw5FatlUbvFWUWXkI2/LjrwTl5fl3MVDh+KdvYgFzgRXDDKH/O2uUlwjfpveiJJJx8TwL7Se84A==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.8.3", - "@babel/highlight": "^7.9.0", - "commander": "^5.1.0", - "lodash": "^4.17.15", - "prettier": "^2.0.5", - "shelljs": "^0.8.4", - "typescript": "^3.4", - "typescript-compiler": "^1.4.1-2" - }, - "dependencies": { - "commander": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", - "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==", - "dev": true - }, - "prettier": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.1.2.tgz", - "integrity": "sha512-16c7K+x4qVlJg9rEbXl7HEGmQyZlG4R9AgP+oHKRMsMsuk8s+ATStlf1NpDqyBI1HpVyfjLOeMhH2LvuNvV5Vg==", - "dev": true } } }, @@ -12502,38 +11692,6 @@ "requires": { "inherits": "^2.0.3", "readable-stream": "^2.3.6" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } } }, "fn.name": { @@ -12542,20 +11700,40 @@ "integrity": "sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==" }, "follow-redirects": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.13.0.tgz", - "integrity": "sha512-aq6gF1BEKje4a9i9+5jimNFIpq4Q1WiwBToeRK5NvZBd/TRsmW8BsJfOEGkr76TbOyPVD3OVDN910EcUNtRYEA==", - "dev": true + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.5.10.tgz", + "integrity": "sha512-0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ==", + "dev": true, + "requires": { + "debug": "=3.1.0" + }, + "dependencies": { + "debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } }, "for-in": { "version": "1.0.2", - "resolved": "https://registry.npm.taobao.org/for-in/download/for-in-1.0.2.tgz?cache=0&sync_timestamp=1573184298867&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffor-in%2Fdownload%2Ffor-in-1.0.2.tgz", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", "dev": true }, "for-own": { "version": "0.1.5", - "resolved": "https://registry.npm.taobao.org/for-own/download/for-own-0.1.5.tgz", + "resolved": "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz", "integrity": "sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4=", "dev": true, "requires": { @@ -12564,31 +11742,49 @@ }, "forever-agent": { "version": "0.6.1", - "resolved": "https://registry.npm.taobao.org/forever-agent/download/forever-agent-0.6.1.tgz", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", "dev": true }, "fork-ts-checker-webpack-plugin": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-3.1.1.tgz", - "integrity": "sha512-DuVkPNrM12jR41KM2e+N+styka0EgLkTnXmNcXdgOM37vtGeY+oCBK/Jx0hzSeEU6memFCtWb4htrHPMDfwwUQ==", + "version": "6.0.7", + "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.0.7.tgz", + "integrity": "sha512-8M9q76SFQFNruI2L5Z/WmDWZsbkzAjEtUcL8QXKSuTLC+8A4MriNNIiXR9yRcKvGxaBTFzygAmUYb3huTiPraw==", "dev": true, "requires": { - "babel-code-frame": "^6.22.0", - "chalk": "^2.4.1", - "chokidar": "^3.3.0", - "micromatch": "^3.1.10", + "@babel/code-frame": "^7.8.3", + "@types/json-schema": "^7.0.5", + "chalk": "^4.1.0", + "chokidar": "^3.4.2", + "cosmiconfig": "^6.0.0", + "deepmerge": "^4.2.2", + "fs-extra": "^9.0.0", + "memfs": "^3.1.2", "minimatch": "^3.0.4", - "semver": "^5.6.0", - "tapable": "^1.0.0", - "worker-rpc": "^0.1.0" + "schema-utils": "2.7.0", + "semver": "^7.3.2", + "tapable": "^1.0.0" }, "dependencies": { - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true + "@babel/code-frame": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", + "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", + "dev": true, + "requires": { + "@babel/highlight": "^7.10.4" + } + }, + "schema-utils": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz", + "integrity": "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.4", + "ajv": "^6.12.2", + "ajv-keywords": "^3.4.1" + } } } }, @@ -12605,13 +11801,13 @@ }, "forwarded": { "version": "0.1.2", - "resolved": "https://registry.npm.taobao.org/forwarded/download/forwarded-0.1.2.tgz", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz", "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=", "dev": true }, "fragment-cache": { "version": "0.2.1", - "resolved": "https://registry.npm.taobao.org/fragment-cache/download/fragment-cache-0.2.1.tgz", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", "dev": true, "requires": { @@ -12620,7 +11816,7 @@ }, "fresh": { "version": "0.5.2", - "resolved": "https://registry.npm.taobao.org/fresh/download/fresh-0.5.2.tgz", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=", "dev": true }, @@ -12632,81 +11828,46 @@ }, "from2": { "version": "2.3.0", - "resolved": "https://registry.npm.taobao.org/from2/download/from2-2.3.0.tgz", + "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", "integrity": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=", "requires": { "inherits": "^2.0.1", "readable-stream": "^2.0.0" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-2.3.7.tgz", - "integrity": "sha1-Hsoc9xGu+BTAT2IlKjamL2yyO1c=", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.1.2.tgz", - "integrity": "sha1-mR7GnSluAxN0fVm9/St0XDX4go0=" - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npm.taobao.org/string_decoder/download/string_decoder-1.1.1.tgz", - "integrity": "sha1-nPFhG6YmhdcDCunkujQUnDrwP8g=", - "requires": { - "safe-buffer": "~5.1.0" - } - } } }, "fs-constants": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/fs-constants/download/fs-constants-1.0.0.tgz", - "integrity": "sha1-a+Dem+mYzhavivwkSXue6bfM2a0=" + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" }, "fs-extra": { "version": "9.0.1", - "resolved": "https://registry.npm.taobao.org/fs-extra/download/fs-extra-9.0.1.tgz", - "integrity": "sha1-kQ2gBiQ3ukw5/t2GPxZ1zP78ufw=", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.0.1.tgz", + "integrity": "sha512-h2iAoN838FqAFJY2/qVpzFXy+EBxfVE220PalAqQLDVsFOHLJrZvut5puAbCdNv6WJk+B8ihI+k0c7JK5erwqQ==", "requires": { "at-least-node": "^1.0.0", "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", "universalify": "^1.0.0" - }, - "dependencies": { - "jsonfile": { - "version": "6.0.1", - "resolved": "https://registry.npm.taobao.org/jsonfile/download/jsonfile-6.0.1.tgz?cache=0&sync_timestamp=1583593992319&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fjsonfile%2Fdownload%2Fjsonfile-6.0.1.tgz", - "integrity": "sha1-mJZsuiFDeMjIS4LghZB7QL9hQXk=", - "requires": { - "graceful-fs": "^4.1.6", - "universalify": "^1.0.0" - } - } } }, "fs-minipass": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", - "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", - "dev": true, + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.7.tgz", + "integrity": "sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA==", "requires": { - "minipass": "^3.0.0" + "minipass": "^2.6.0" } }, + "fs-monkey": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.1.tgz", + "integrity": "sha512-fcSa+wyTqZa46iWweI7/ZiUfegOZl0SG8+dltIwFXo7+zYU9J9kpS3NB6pZcSlJdhvIwp81Adx2XhZorncxiaA==", + "dev": true + }, "fs-write-stream-atomic": { "version": "1.0.10", - "resolved": "https://registry.npm.taobao.org/fs-write-stream-atomic/download/fs-write-stream-atomic-1.0.10.tgz", + "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz", "integrity": "sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=", "dev": true, "requires": { @@ -12714,43 +11875,11 @@ "iferr": "^0.1.5", "imurmurhash": "^0.1.4", "readable-stream": "1 || 2" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } } }, "fs.realpath": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/fs.realpath/download/fs.realpath-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" }, "fsevents": { @@ -12759,32 +11888,9 @@ "integrity": "sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==", "optional": true }, - "fstream": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/fstream/-/fstream-1.0.12.tgz", - "integrity": "sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "inherits": "~2.0.0", - "mkdirp": ">=0.5 0", - "rimraf": "2" - }, - "dependencies": { - "rimraf": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", - "dev": true, - "requires": { - "glob": "^7.1.3" - } - } - } - }, "ftp": { "version": "0.3.10", - "resolved": "https://registry.npm.taobao.org/ftp/download/ftp-0.3.10.tgz", + "resolved": "https://registry.npmjs.org/ftp/-/ftp-0.3.10.tgz", "integrity": "sha1-kZfYYa2BQvPmPVqDv+TFn3MwiF0=", "requires": { "readable-stream": "1.1.x", @@ -12793,12 +11899,12 @@ "dependencies": { "isarray": { "version": "0.0.1", - "resolved": "https://registry.npm.taobao.org/isarray/download/isarray-0.0.1.tgz", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" }, "readable-stream": { "version": "1.1.14", - "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-1.1.14.tgz", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=", "requires": { "core-util-is": "~1.0.0", @@ -12809,51 +11915,219 @@ }, "string_decoder": { "version": "0.10.31", - "resolved": "https://registry.npm.taobao.org/string_decoder/download/string_decoder-0.10.31.tgz", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" } } }, "function-bind": { "version": "1.1.1", - "resolved": "https://registry.npm.taobao.org/function-bind/download/function-bind-1.1.1.tgz", - "integrity": "sha1-pWiZ0+o8m6uHS7l3O3xe3pL0iV0=", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", "dev": true }, "functional-red-black-tree": { "version": "1.0.1", - "resolved": "https://registry.npm.taobao.org/functional-red-black-tree/download/functional-red-black-tree-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=", "dev": true }, + "galactus": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/galactus/-/galactus-0.2.1.tgz", + "integrity": "sha1-y+0tIKQMH1Z5o1kI4rlBVzPnjbk=", + "dev": true, + "requires": { + "debug": "^3.1.0", + "flora-colossus": "^1.0.0", + "fs-extra": "^4.0.0" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + }, + "fs-extra": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-4.0.3.tgz", + "integrity": "sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true + } + } + }, + "gar": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/gar/-/gar-1.0.4.tgz", + "integrity": "sha512-w4n9cPWyP7aHxKxYHFQMegj7WIAsL/YX/C4Bs5Rr8s1H9M1rNtRWRsw+ovYMkXDQ5S4ZbYHsHAPmevPjPgw44w==", + "dev": true, + "optional": true + }, + "gauge": { + "version": "2.7.4", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz", + "integrity": "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=", + "dev": true, + "requires": { + "aproba": "^1.0.3", + "console-control-strings": "^1.0.0", + "has-unicode": "^2.0.0", + "object-assign": "^4.1.0", + "signal-exit": "^3.0.0", + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1", + "wide-align": "^1.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "dev": true, + "requires": { + "number-is-nan": "^1.0.0" + } + }, + "string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "dev": true, + "requires": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + } + } + }, "gensync": { - "version": "1.0.0-beta.1", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.1.tgz", - "integrity": "sha512-r8EC6NO1sngH/zdD9fiRDLdcgnbayXah+mLgManTaIZJqEC1MZstmnox8KpnI2/fxQwrp5OpCOYWLp4rBl4Jcg==", + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", "dev": true }, "get-caller-file": { "version": "2.0.5", - "resolved": "https://registry.npm.taobao.org/get-caller-file/download/get-caller-file-2.0.5.tgz", - "integrity": "sha1-T5RBKoLbMvNuOwuXQfipf+sDH34=", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", "dev": true }, + "get-folder-size": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/get-folder-size/-/get-folder-size-2.0.1.tgz", + "integrity": "sha512-+CEb+GDCM7tkOS2wdMKTn9vU7DgnKUTuDlehkNJKNSovdCOVxs14OfKCk4cvSaR3za4gj+OBdl9opPN9xrJ0zA==", + "dev": true, + "optional": true, + "requires": { + "gar": "^1.0.4", + "tiny-each-async": "2.0.3" + } + }, + "get-installed-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/get-installed-path/-/get-installed-path-2.1.1.tgz", + "integrity": "sha512-Qkn9eq6tW5/q9BDVdMpB8tOHljX9OSP0jRC5TRNVA4qRc839t4g8KQaR8t0Uv0EFVL0MlyG7m/ofjEgAROtYsA==", + "dev": true, + "requires": { + "global-modules": "1.0.0" + } + }, + "get-intrinsic": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.0.2.tgz", + "integrity": "sha512-aeX0vrFm21ILl3+JpFFRNe9aUvp6VFZb2/CTbgLb8j75kOhvoNYjt9d8KA/tJG4gSo8nzEDedRl0h7vDmBYRVg==", + "dev": true, + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + } + }, "get-own-enumerable-property-symbols": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz", "integrity": "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==", "dev": true }, + "get-package-info": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-package-info/-/get-package-info-1.0.0.tgz", + "integrity": "sha1-ZDJ5ZWPigRPNlHTbvQAFKYWkmZw=", + "dev": true, + "requires": { + "bluebird": "^3.1.1", + "debug": "^2.2.0", + "lodash.get": "^4.0.0", + "read-pkg-up": "^2.0.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, "get-stdin": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-6.0.0.tgz", - "integrity": "sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g==", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", + "integrity": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=", "dev": true }, "get-stream": { "version": "4.1.0", - "resolved": "https://registry.npm.taobao.org/get-stream/download/get-stream-4.1.0.tgz", - "integrity": "sha1-wbJVV189wh1Zv8ec09K0axw6VLU=", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", "requires": { "pump": "^3.0.0" } @@ -12871,11 +12145,6 @@ "ftp": "^0.3.10" }, "dependencies": { - "file-uri-to-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-2.0.0.tgz", - "integrity": "sha512-hjPFI8oE/2iQPVe4gbrJ73Pp+Xfub2+WI2LlXDbsaJBwT5wuMh35WNWVYYTpnz895shtwfyutMFLFywpQAFdLg==" - }, "fs-extra": { "version": "8.1.0", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", @@ -12886,6 +12155,14 @@ "universalify": "^0.1.0" } }, + "jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "requires": { + "graceful-fs": "^4.1.6" + } + }, "universalify": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", @@ -12895,13 +12172,13 @@ }, "get-value": { "version": "2.0.6", - "resolved": "https://registry.npm.taobao.org/get-value/download/get-value-2.0.6.tgz", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=", "dev": true }, "getpass": { "version": "0.1.7", - "resolved": "https://registry.npm.taobao.org/getpass/download/getpass-0.1.7.tgz", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", "dev": true, "requires": { @@ -12919,8 +12196,8 @@ }, "glob": { "version": "7.1.6", - "resolved": "https://registry.npm.taobao.org/glob/download/glob-7.1.6.tgz", - "integrity": "sha1-FB8zuBp8JJLhJVlDB0gMRmeSeKY=", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", + "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", "requires": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", @@ -12932,25 +12209,25 @@ }, "glob-parent": { "version": "5.1.1", - "resolved": "https://registry.npm.taobao.org/glob-parent/download/glob-parent-5.1.1.tgz", - "integrity": "sha1-tsHvQXxOVmPqSY8cRa+saRa7wik=", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz", + "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==", "requires": { "is-glob": "^4.0.1" } }, "glob-to-regexp": { "version": "0.3.0", - "resolved": "https://registry.npm.taobao.org/glob-to-regexp/download/glob-to-regexp-0.3.0.tgz", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz", "integrity": "sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs=", "dev": true }, "global": { - "version": "4.3.2", - "resolved": "https://registry.npm.taobao.org/global/download/global-4.3.2.tgz", - "integrity": "sha1-52mJJopsdMOJCLEwWxD8DjlOnQ8=", + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/global/-/global-4.4.0.tgz", + "integrity": "sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==", "requires": { "min-document": "^2.19.0", - "process": "~0.5.1" + "process": "^0.11.10" } }, "global-agent": { @@ -12970,53 +12247,59 @@ }, "dependencies": { "core-js": { - "version": "3.6.5", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.6.5.tgz", - "integrity": "sha512-vZVEEwZoIsI+vPEuoF9Iqf5H7/M3eeQqWlQnYa8FSKKePuYTf5MWnxb5SDAzCa60b3JBRS5g9b+Dq7b1y/RCrA==", + "version": "3.8.1", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.8.1.tgz", + "integrity": "sha512-9Id2xHY1W7m8hCl8NkhQn5CufmF/WuR30BTRewvCXc1aZd3kMECwNZ69ndLbekKfakw9Rf2Xyc+QR6E7Gg+obg==", "dev": true, "optional": true } } }, "global-dirs": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-2.0.1.tgz", - "integrity": "sha512-5HqUqdhkEovj2Of/ms3IeS/EekcO54ytHRLV4PEY2rhRwrHXLQjeVEES0Lhka0xwNDtGYn58wyC4s5+MHsOO6A==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-2.1.0.tgz", + "integrity": "sha512-MG6kdOUh/xBnyo9cJFeIKkLEc1AyFq42QTU4XiX51i2NEdxLxLWXIjEjmqKeSuKR7pAZjTqUVoT2b2huxVLgYQ==", "dev": true, "requires": { - "ini": "^1.3.5" + "ini": "1.3.7" + }, + "dependencies": { + "ini": { + "version": "1.3.7", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.7.tgz", + "integrity": "sha512-iKpRpXP+CrP2jyrxvg1kMUpXDyRUFDWurxbnVT1vQPx+Wz9uCYsMIqYuSBLV+PAaZG/d7kRLKRFc9oDMsH+mFQ==", + "dev": true + } } }, "global-modules": { - "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/global-modules/download/global-modules-2.0.0.tgz", - "integrity": "sha1-mXYFrSNF8n9RU5vqJldEISFcd4A=", + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", + "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", "dev": true, "requires": { - "global-prefix": "^3.0.0" + "global-prefix": "^1.0.1", + "is-windows": "^1.0.1", + "resolve-dir": "^1.0.0" } }, "global-prefix": { - "version": "3.0.0", - "resolved": "https://registry.npm.taobao.org/global-prefix/download/global-prefix-3.0.0.tgz", - "integrity": "sha1-/IX3MGTfafUEIfR/iD/luRO6m5c=", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", + "integrity": "sha1-2/dDxsFJklk8ZVVoy2btMsASLr4=", "dev": true, "requires": { - "ini": "^1.3.5", - "kind-of": "^6.0.2", - "which": "^1.3.1" + "expand-tilde": "^2.0.2", + "homedir-polyfill": "^1.0.1", + "ini": "^1.3.4", + "is-windows": "^1.0.1", + "which": "^1.2.14" }, "dependencies": { - "kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npm.taobao.org/kind-of/download/kind-of-6.0.3.tgz", - "integrity": "sha1-B8BQNKbDSfoG4k+jWqdttFgM5N0=", - "dev": true - }, "which": { "version": "1.3.1", - "resolved": "https://registry.npm.taobao.org/which/download/which-1.3.1.tgz", - "integrity": "sha1-pFBD1U9YBTFtqNYvn1CRjT2nCwo=", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", "dev": true, "requires": { "isexe": "^2.0.0" @@ -13038,10 +12321,21 @@ } }, "globals": { - "version": "11.12.0", - "resolved": "https://registry.npm.taobao.org/globals/download/globals-11.12.0.tgz", - "integrity": "sha1-q4eVM4hooLq9hSV1gBjCp+uVxC4=", - "dev": true + "version": "12.4.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz", + "integrity": "sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==", + "dev": true, + "requires": { + "type-fest": "^0.8.1" + }, + "dependencies": { + "type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "dev": true + } + } }, "globalthis": { "version": "1.0.1", @@ -13055,8 +12349,8 @@ }, "globby": { "version": "8.0.2", - "resolved": "https://registry.npm.taobao.org/globby/download/globby-8.0.2.tgz", - "integrity": "sha1-VpdhnM2VxSdduy1vqkIIfBqUHY0=", + "resolved": "https://registry.npmjs.org/globby/-/globby-8.0.2.tgz", + "integrity": "sha512-yTzMmKygLp8RUpG1Ymu2VXPSJQZjNAZPD4ywgYEaG7e4tBJeUQBO8OpXrf1RCNcEs5alsoJYPAMiIHP0cmeC7w==", "dev": true, "requires": { "array-union": "^1.0.1", @@ -13068,30 +12362,18 @@ "slash": "^1.0.0" }, "dependencies": { - "ignore": { - "version": "3.3.10", - "resolved": "https://registry.npm.taobao.org/ignore/download/ignore-3.3.10.tgz", - "integrity": "sha1-Cpf7h2mG6AgcYxFg+PnziRV/AEM=", - "dev": true - }, "pify": { "version": "3.0.0", - "resolved": "https://registry.npm.taobao.org/pify/download/pify-3.0.0.tgz", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", "dev": true - }, - "slash": { - "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/slash/download/slash-1.0.0.tgz", - "integrity": "sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=", - "dev": true } } }, "got": { "version": "8.3.2", - "resolved": "https://registry.npm.taobao.org/got/download/got-8.3.2.tgz?cache=0&sync_timestamp=1591374807159&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fgot%2Fdownload%2Fgot-8.3.2.tgz", - "integrity": "sha1-HSP2Q5Dpf3dsrFLluTbl9RTS6Tc=", + "resolved": "https://registry.npmjs.org/got/-/got-8.3.2.tgz", + "integrity": "sha512-qjUJ5U/hawxosMryILofZCkm3C84PLJS/0grRIpjAwu+Lkxxj5cxeCU25BG0/3mDSpXKTyZr8oh8wIgLaH0QCw==", "requires": { "@sindresorhus/is": "^0.7.0", "cacheable-request": "^2.1.1", @@ -13114,25 +12396,20 @@ "dependencies": { "get-stream": { "version": "3.0.0", - "resolved": "https://registry.npm.taobao.org/get-stream/download/get-stream-3.0.0.tgz", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=" }, "pify": { "version": "3.0.0", - "resolved": "https://registry.npm.taobao.org/pify/download/pify-3.0.0.tgz", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=" } } }, "graceful-fs": { "version": "4.2.4", - "resolved": "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.4.tgz?cache=0&sync_timestamp=1588086924019&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fgraceful-fs%2Fdownload%2Fgraceful-fs-4.2.4.tgz", - "integrity": "sha1-Ila94U02MpWMRl68ltxGfKB6Kfs=" - }, - "graceful-readlink": { - "version": "1.0.1", - "resolved": "https://registry.npm.taobao.org/graceful-readlink/download/graceful-readlink-1.0.1.tgz", - "integrity": "sha1-TK+tdrxi8C+gObL5Tpo906ORpyU=" + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz", + "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==" }, "graphql-hooks": { "version": "5.0.0", @@ -13146,18 +12423,26 @@ }, "growly": { "version": "1.3.0", - "resolved": "https://registry.npm.taobao.org/growly/download/growly-1.3.0.tgz", + "resolved": "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz", "integrity": "sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=", "dev": true }, "gzip-size": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-5.1.1.tgz", - "integrity": "sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-5.0.0.tgz", + "integrity": "sha512-5iI7omclyqrnWw4XbXAmGhPsABkSIDQonv2K0h61lybgofWa6iZyvrI3r2zsJH4P8Nb64fFVzlvfhs0g7BBxAA==", "dev": true, "requires": { "duplexer": "^0.1.1", - "pify": "^4.0.1" + "pify": "^3.0.0" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true + } } }, "handle-thing": { @@ -13168,7 +12453,7 @@ }, "har-schema": { "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/har-schema/download/har-schema-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=", "dev": true }, @@ -13180,20 +12465,6 @@ "requires": { "ajv": "^6.12.3", "har-schema": "^2.0.0" - }, - "dependencies": { - "ajv": { - "version": "6.12.4", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.4.tgz", - "integrity": "sha512-eienB2c9qVQs2KWexhkrdMLVDoIQCz5KSeLxwg9Lzk4DOfBtIK9PQwwufcsn1jjGuf9WZmqPMbGxOzfcuphJCQ==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - } } }, "harmony-reflect": { @@ -13204,8 +12475,8 @@ }, "has": { "version": "1.0.3", - "resolved": "https://registry.npm.taobao.org/has/download/has-1.0.3.tgz", - "integrity": "sha1-ci18v8H2qoJB8W3YFOAR4fQeh5Y=", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", "dev": true, "requires": { "function-bind": "^1.1.1" @@ -13213,7 +12484,7 @@ }, "has-ansi": { "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/has-ansi/download/has-ansi-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", "dev": true, "requires": { @@ -13222,40 +12493,46 @@ "dependencies": { "ansi-regex": { "version": "2.1.1", - "resolved": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-2.1.1.tgz", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", "dev": true } } }, "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npm.taobao.org/has-flag/download/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true }, "has-symbol-support-x": { "version": "1.4.2", - "resolved": "https://registry.npm.taobao.org/has-symbol-support-x/download/has-symbol-support-x-1.4.2.tgz", - "integrity": "sha1-FAn5i8ACR9pF2mfO4KNvKC/yZFU=" + "resolved": "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz", + "integrity": "sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw==" }, "has-symbols": { "version": "1.0.1", - "resolved": "https://registry.npm.taobao.org/has-symbols/download/has-symbols-1.0.1.tgz", - "integrity": "sha1-n1IUdYpEGWxAbZvXbOv4HsLdMeg=", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz", + "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==", "dev": true }, "has-to-string-tag-x": { "version": "1.4.1", - "resolved": "https://registry.npm.taobao.org/has-to-string-tag-x/download/has-to-string-tag-x-1.4.1.tgz", - "integrity": "sha1-oEWrOD17SyASoAFIqwql8pAETU0=", + "resolved": "https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz", + "integrity": "sha512-vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw==", "requires": { "has-symbol-support-x": "^1.4.1" } }, + "has-unicode": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", + "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=", + "dev": true + }, "has-value": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/has-value/download/has-value-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", "dev": true, "requires": { @@ -13266,7 +12543,7 @@ }, "has-values": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/has-values/download/has-values-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", "dev": true, "requires": { @@ -13274,9 +12551,29 @@ "kind-of": "^4.0.0" }, "dependencies": { + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, "kind-of": { "version": "4.0.0", - "resolved": "https://registry.npm.taobao.org/kind-of/download/kind-of-4.0.0.tgz", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", "dev": true, "requires": { @@ -13300,6 +12597,25 @@ "inherits": "^2.0.4", "readable-stream": "^3.6.0", "safe-buffer": "^5.2.0" + }, + "dependencies": { + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true + } } }, "hash.js": { @@ -13326,7 +12642,7 @@ }, "hmac-drbg": { "version": "1.0.1", - "resolved": "https://registry.npm.taobao.org/hmac-drbg/download/hmac-drbg-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=", "dev": true, "requires": { @@ -13337,22 +12653,31 @@ }, "hoist-non-react-statics": { "version": "3.3.2", - "resolved": "https://registry.npm.taobao.org/hoist-non-react-statics/download/hoist-non-react-statics-3.3.2.tgz?cache=0&sync_timestamp=1579737660183&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fhoist-non-react-statics%2Fdownload%2Fhoist-non-react-statics-3.3.2.tgz", - "integrity": "sha1-7OCsr3HWLClpwuxZ/v9CpLGoW0U=", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", "dev": true, "requires": { "react-is": "^16.7.0" } }, + "homedir-polyfill": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", + "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", + "dev": true, + "requires": { + "parse-passwd": "^1.0.0" + } + }, "hosted-git-info": { "version": "2.8.8", - "resolved": "https://registry.npm.taobao.org/hosted-git-info/download/hosted-git-info-2.8.8.tgz?cache=0&sync_timestamp=1583017392137&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fhosted-git-info%2Fdownload%2Fhosted-git-info-2.8.8.tgz", - "integrity": "sha1-dTm9S8Hg4KiVgVouAmJCCxKFhIg=", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8.tgz", + "integrity": "sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==", "dev": true }, "hpack.js": { "version": "2.1.6", - "resolved": "https://registry.npm.taobao.org/hpack.js/download/hpack.js-2.1.6.tgz", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", "integrity": "sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=", "dev": true, "requires": { @@ -13360,49 +12685,17 @@ "obuf": "^1.0.0", "readable-stream": "^2.0.1", "wbuf": "^1.1.0" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } } }, "hsl-regex": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/hsl-regex/download/hsl-regex-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/hsl-regex/-/hsl-regex-1.0.0.tgz", "integrity": "sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4=", "dev": true }, "hsla-regex": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/hsla-regex/download/hsla-regex-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/hsla-regex/-/hsla-regex-1.0.0.tgz", "integrity": "sha1-wc56MWjIxmFAM6S194d/OyJfnDg=", "dev": true }, @@ -13422,9 +12715,9 @@ } }, "html-entities": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.3.1.tgz", - "integrity": "sha512-rhE/4Z3hIhzHAUKbW8jVcCyuT5oJCXXqhN/6mXXVCpzTmvJnoH2HL/bt3EZ6p55jbFJBeAe1ZNpL5BugLujxNA==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.4.0.tgz", + "integrity": "sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==", "dev": true }, "html-escaper": { @@ -13466,58 +12759,70 @@ } }, "html-webpack-plugin": { - "version": "4.0.0-beta.11", - "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-4.0.0-beta.11.tgz", - "integrity": "sha512-4Xzepf0qWxf8CGg7/WQM5qBB2Lc/NFI7MhU59eUDTkuQp3skZczH4UA1d6oQyDEIoMDgERVhRyTdtUPZ5s5HBg==", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-4.5.0.tgz", + "integrity": "sha512-MouoXEYSjTzCrjIxWwg8gxL5fE2X2WZJLmBYXlaJhQUH5K/b5OrqmV7T4dB7iu0xkmJ6JlUuV6fFVtnqbPopZw==", "dev": true, "requires": { + "@types/html-minifier-terser": "^5.0.0", + "@types/tapable": "^1.0.5", + "@types/webpack": "^4.41.8", "html-minifier-terser": "^5.0.1", "loader-utils": "^1.2.3", "lodash": "^4.17.15", "pretty-error": "^2.1.1", "tapable": "^1.1.3", "util.promisify": "1.0.0" + } + }, + "htmlparser2": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz", + "integrity": "sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==", + "dev": true, + "requires": { + "domelementtype": "^1.3.1", + "domhandler": "^2.3.0", + "domutils": "^1.5.1", + "entities": "^1.1.1", + "inherits": "^2.0.1", + "readable-stream": "^3.1.1" }, "dependencies": { - "util.promisify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz", - "integrity": "sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==", + "entities": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz", + "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==", + "dev": true + }, + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", "dev": true, "requires": { - "define-properties": "^1.1.2", - "object.getownpropertydescriptors": "^2.0.3" + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" } } } }, - "htmlparser2": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-4.1.0.tgz", - "integrity": "sha512-4zDq1a1zhE4gQso/c5LP1OtrhYTncXNSpvJYtWJBtXAETPlMfi3IFNjGuQbYLuVY4ZR0QMqRVvo4Pdy9KLyP8Q==", - "dev": true, - "requires": { - "domelementtype": "^2.0.1", - "domhandler": "^3.0.0", - "domutils": "^2.0.0", - "entities": "^2.0.0" - } - }, "http-cache-semantics": { "version": "3.8.1", - "resolved": "https://registry.npm.taobao.org/http-cache-semantics/download/http-cache-semantics-3.8.1.tgz?cache=0&sync_timestamp=1583107049902&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fhttp-cache-semantics%2Fdownload%2Fhttp-cache-semantics-3.8.1.tgz", - "integrity": "sha1-ObDhat2bYFvwqe89nar0hDtMrNI=" + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz", + "integrity": "sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w==" }, "http-deceiver": { "version": "1.2.7", - "resolved": "https://registry.npm.taobao.org/http-deceiver/download/http-deceiver-1.2.7.tgz", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", "integrity": "sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=", "dev": true }, "http-errors": { "version": "1.7.3", - "resolved": "https://registry.npm.taobao.org/http-errors/download/http-errors-1.7.3.tgz", - "integrity": "sha1-bGGeT5xgMIw4UZSYwU+7EKrOuwY=", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.3.tgz", + "integrity": "sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw==", "requires": { "depd": "~1.1.2", "inherits": "2.0.4", @@ -13528,8 +12833,8 @@ }, "http-parser-js": { "version": "0.5.2", - "resolved": "https://registry.npm.taobao.org/http-parser-js/download/http-parser-js-0.5.2.tgz", - "integrity": "sha1-2i4x0jezk6rnKs5DiC3X4nCo/3c=", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.2.tgz", + "integrity": "sha512-opCO9ASqg5Wy2FNo7A0sxy71yGbbkJJXLdgMK04Tcypw9jr2MgWbyubb0+WdmDmGnFflO7fRbqbaihh/ENDlRQ==", "dev": true }, "http-proxy": { @@ -13567,7 +12872,7 @@ }, "http-signature": { "version": "1.2.0", - "resolved": "https://registry.npm.taobao.org/http-signature/download/http-signature-1.2.0.tgz", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", "dev": true, "requires": { @@ -13576,9 +12881,19 @@ "sshpk": "^1.7.0" } }, + "http2-wrapper": { + "version": "1.0.0-beta.5.2", + "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.0-beta.5.2.tgz", + "integrity": "sha512-xYz9goEyBnC8XwXDTuC/MZ6t+MrKVQZOk4s7+PaDkwIsQd8IwqvM+0M6bA/2lvG8GHXcPdf+MejTUeO2LCPCeQ==", + "dev": true, + "requires": { + "quick-lru": "^5.1.1", + "resolve-alpn": "^1.0.0" + } + }, "https-browserify": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/https-browserify/download/https-browserify-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=", "dev": true }, @@ -13592,17 +12907,17 @@ } }, "hyphenate-style-name": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/hyphenate-style-name/-/hyphenate-style-name-1.0.3.tgz", - "integrity": "sha512-EcuixamT82oplpoJ2XU4pDtKGWQ7b00CD9f1ug9IaQ3p1bkHMiKCZ9ut9QDI6qsa6cpUuB+A/I+zLtdNK4n2DQ==", + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/hyphenate-style-name/-/hyphenate-style-name-1.0.4.tgz", + "integrity": "sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ==", "dev": true }, "i18next": { - "version": "19.8.2", - "resolved": "https://registry.npmjs.org/i18next/-/i18next-19.8.2.tgz", - "integrity": "sha512-YWqkUpwnmeZxbNxhQ4BENC27BlXnq4kD6NlqMUwX7T6ZN3alNnBXsWrh/8mJ37BL5cKMZaqA0k/YUo4o6rLfpA==", + "version": "19.8.4", + "resolved": "https://registry.npmjs.org/i18next/-/i18next-19.8.4.tgz", + "integrity": "sha512-FfVPNWv+felJObeZ6DSXZkj9QM1Ivvh7NcFCgA8XPtJWHz0iXVa9BUy+QY8EPrCLE+vWgDfV/sc96BgXVo6HAA==", "requires": { - "@babel/runtime": "^7.10.1" + "@babel/runtime": "^7.12.0" } }, "i18next-electron-fs-backend": { @@ -13621,8 +12936,8 @@ }, "iconv-lite": { "version": "0.4.24", - "resolved": "https://registry.npm.taobao.org/iconv-lite/download/iconv-lite-0.4.24.tgz", - "integrity": "sha1-ICK0sl+93CHS9SSXSkdKr+czkIs=", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", "requires": { "safer-buffer": ">= 2.1.2 < 3" } @@ -13638,7 +12953,7 @@ }, "identity-obj-proxy": { "version": "3.0.0", - "resolved": "https://registry.npm.taobao.org/identity-obj-proxy/download/identity-obj-proxy-3.0.0.tgz", + "resolved": "https://registry.npmjs.org/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz", "integrity": "sha1-lNK9qWCERT7zb7xarsN+D3nx/BQ=", "dev": true, "requires": { @@ -13646,13 +12961,13 @@ } }, "ieee754": { - "version": "1.1.13", - "resolved": "https://registry.npm.taobao.org/ieee754/download/ieee754-1.1.13.tgz", - "integrity": "sha1-7BaFWOlaoYH9h9N/VcMrvLZwi4Q=" + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" }, "if-async": { "version": "3.7.4", - "resolved": "https://registry.npm.taobao.org/if-async/download/if-async-3.7.4.tgz", + "resolved": "https://registry.npmjs.org/if-async/-/if-async-3.7.4.tgz", "integrity": "sha1-VYaN6wCT08Z79xZudFNT+5vLIaI=" }, "if-env": { @@ -13666,30 +12981,39 @@ }, "iferr": { "version": "0.1.5", - "resolved": "https://registry.npm.taobao.org/iferr/download/iferr-0.1.5.tgz", + "resolved": "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz", "integrity": "sha1-xg7taebY/bazEEofy8ocGS3FtQE=", "dev": true }, "ignore": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", - "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "version": "3.3.10", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz", + "integrity": "sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==", "dev": true }, + "ignore-walk": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.3.tgz", + "integrity": "sha512-m7o6xuOaT1aqheYHKf8W6J5pYH85ZI9w077erOzLje3JsB1gkafkAhHHY19dqjulgIZHFm32Cp5uNZgcQqdJKw==", + "dev": true, + "requires": { + "minimatch": "^3.0.4" + } + }, "image-q": { "version": "1.1.1", - "resolved": "https://registry.npm.taobao.org/image-q/download/image-q-1.1.1.tgz", + "resolved": "https://registry.npmjs.org/image-q/-/image-q-1.1.1.tgz", "integrity": "sha1-/IQJlmRGC5DKhi2TALa/u7+/gFY=" }, "immer": { "version": "1.10.0", - "resolved": "https://registry.npm.taobao.org/immer/download/immer-1.10.0.tgz", - "integrity": "sha1-utZ2BbqcgQJ12R4cKkfUWC6YKG0=", + "resolved": "https://registry.npmjs.org/immer/-/immer-1.10.0.tgz", + "integrity": "sha512-O3sR1/opvCDGLEVcvrGTMtLac8GJ5IwZC4puPrLuRj3l7ICKvkmA0vGuU9OW8mV9WIBRnaxp5GJh9IEAaNOoYg==", "dev": true }, "import-cwd": { "version": "2.1.0", - "resolved": "https://registry.npm.taobao.org/import-cwd/download/import-cwd-2.1.0.tgz", + "resolved": "https://registry.npmjs.org/import-cwd/-/import-cwd-2.1.0.tgz", "integrity": "sha1-qmzzbnInYShcs3HsZRn1PiQ1sKk=", "dev": true, "requires": { @@ -13697,9 +13021,9 @@ } }, "import-fresh": { - "version": "3.2.1", - "resolved": "https://registry.npm.taobao.org/import-fresh/download/import-fresh-3.2.1.tgz", - "integrity": "sha1-Yz/2GFBueTr1rJG/SLcmd+FcvmY=", + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.2.2.tgz", + "integrity": "sha512-cTPNrlvJT6twpYy+YmKUKrTSjWFs3bjYjAhCwm+z4EOCubZxAuO+hHpRN64TqjEaYSHs7tJAE0w1CKMGmsG/lw==", "dev": true, "requires": { "parent-module": "^1.0.0", @@ -13708,7 +13032,7 @@ }, "import-from": { "version": "2.1.0", - "resolved": "https://registry.npm.taobao.org/import-from/download/import-from-2.1.0.tgz", + "resolved": "https://registry.npmjs.org/import-from/-/import-from-2.1.0.tgz", "integrity": "sha1-M1238qev/VOqpHHUuAId7ja387E=", "dev": true, "requires": { @@ -13717,7 +13041,7 @@ "dependencies": { "resolve-from": { "version": "3.0.0", - "resolved": "https://registry.npm.taobao.org/resolve-from/download/resolve-from-3.0.0.tgz", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", "dev": true } @@ -13725,7 +13049,7 @@ }, "import-lazy": { "version": "2.1.0", - "resolved": "https://registry.npm.taobao.org/import-lazy/download/import-lazy-2.1.0.tgz", + "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz", "integrity": "sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=", "dev": true }, @@ -13739,6 +13063,55 @@ "resolve-cwd": "^2.0.0" }, "dependencies": { + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "requires": { + "locate-path": "^3.0.0" + } + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "requires": { + "p-limit": "^2.0.0" + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "dev": true + }, "pkg-dir": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", @@ -13758,18 +13131,30 @@ }, "imurmurhash": { "version": "0.1.4", - "resolved": "https://registry.npm.taobao.org/imurmurhash/download/imurmurhash-0.1.4.tgz", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=" }, + "indefinite-observable": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/indefinite-observable/-/indefinite-observable-2.0.1.tgz", + "integrity": "sha512-G8vgmork+6H9S8lUAg1gtXEj2JxIQTo0g2PbFiYOdjkziSI0F7UYBiVwhZRuixhBCNGczAls34+5HJPyZysvxQ==", + "dev": true, + "requires": { + "symbol-observable": "1.2.0" + } + }, "indent-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", - "dev": true + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz", + "integrity": "sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=", + "dev": true, + "requires": { + "repeating": "^2.0.0" + } }, "indexes-of": { "version": "1.0.1", - "resolved": "https://registry.npm.taobao.org/indexes-of/download/indexes-of-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz", "integrity": "sha1-8w9xbI4r00bHtn0985FVZqfAVgc=", "dev": true }, @@ -13781,7 +13166,7 @@ }, "inflight": { "version": "1.0.6", - "resolved": "https://registry.npm.taobao.org/inflight/download/inflight-1.0.6.tgz", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", "requires": { "once": "^1.3.0", @@ -13790,13 +13175,13 @@ }, "inherits": { "version": "2.0.4", - "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.4.tgz", - "integrity": "sha1-D6LGT5MpF8NDOg3tVTY6rjdBa3w=" + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" }, "ini": { - "version": "1.3.5", - "resolved": "https://registry.npm.taobao.org/ini/download/ini-1.3.5.tgz", - "integrity": "sha1-7uJfVtscnsYIXgwid4CD9Zar+Sc=", + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", "dev": true }, "inquirer": { @@ -13818,48 +13203,6 @@ "string-width": "^4.1.0", "strip-ansi": "^6.0.0", "through": "^2.3.6" - }, - "dependencies": { - "chalk": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", - "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "cli-width": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", - "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "rxjs": { - "version": "6.6.2", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.2.tgz", - "integrity": "sha512-BHdBMVoWC2sL26w//BCu3YzKT4s2jip/WhwsGEDmeKYBhKDZeYezVUnHatYB7L85v5xs0BAQmg6BEYJEKxBabg==", - "dev": true, - "requires": { - "tslib": "^1.9.0" - } - }, - "supports-color": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz", - "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } } }, "internal-ip": { @@ -13881,17 +13224,32 @@ "es-abstract": "^1.17.0-next.1", "has": "^1.0.3", "side-channel": "^1.0.2" + }, + "dependencies": { + "es-abstract": { + "version": "1.17.7", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.7.tgz", + "integrity": "sha512-VBl/gnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt/Dw8ezpcOHYZXa/J96O8vx+g4x65YKhxOwDUh63aS5g==", + "dev": true, + "requires": { + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1", + "is-callable": "^1.2.2", + "is-regex": "^1.1.1", + "object-inspect": "^1.8.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.1", + "string.prototype.trimend": "^1.0.1", + "string.prototype.trimstart": "^1.0.1" + } + } } }, - "interpret": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", - "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", - "dev": true - }, "into-stream": { "version": "3.1.0", - "resolved": "https://registry.npm.taobao.org/into-stream/download/into-stream-3.1.0.tgz", + "resolved": "https://registry.npmjs.org/into-stream/-/into-stream-3.1.0.tgz", "integrity": "sha1-lvsKk2wSur1v8XUqF9BWFqvQlMY=", "requires": { "from2": "^2.1.1", @@ -13900,8 +13258,8 @@ }, "invariant": { "version": "2.2.4", - "resolved": "https://registry.npm.taobao.org/invariant/download/invariant-2.2.4.tgz", - "integrity": "sha1-YQ88ksk1nOHbYW5TgAjSP/NRWOY=", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", + "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", "dev": true, "requires": { "loose-envify": "^1.0.0" @@ -13909,12 +13267,12 @@ }, "ip": { "version": "1.1.5", - "resolved": "https://registry.npm.taobao.org/ip/download/ip-1.1.5.tgz", + "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=" }, "ip-regex": { "version": "2.1.0", - "resolved": "https://registry.npm.taobao.org/ip-regex/download/ip-regex-2.1.0.tgz", + "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz", "integrity": "sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=", "dev": true }, @@ -13926,30 +13284,43 @@ }, "is-absolute-url": { "version": "2.1.0", - "resolved": "https://registry.npm.taobao.org/is-absolute-url/download/is-absolute-url-2.1.0.tgz", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz", "integrity": "sha1-UFMN+4T8yap9vnhS6Do3uTufKqY=", "dev": true }, "is-accessor-descriptor": { "version": "0.1.6", - "resolved": "https://registry.npm.taobao.org/is-accessor-descriptor/download/is-accessor-descriptor-0.1.6.tgz", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", "dev": true, "requires": { "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } } }, "is-arguments": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.0.4.tgz", - "integrity": "sha512-xPh0Rmt8NE65sNzvyUmWgI1tz3mKq74lGA0mL8LYZcoIzKOzDh6HmrYm3d18k60nHerC8A9Km8kYu87zfSFnLA==", - "dev": true + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.0.tgz", + "integrity": "sha512-1Ij4lOMPl/xB5kBDn7I+b2ttPMKa8szhEIrXDuXQD/oe3HJLTLhqhgGspwgyGd6MOywBUqVvYicF72lkgDnIHg==", + "dev": true, + "requires": { + "call-bind": "^1.0.0" + } }, "is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npm.taobao.org/is-arrayish/download/is-arrayish-0.2.1.tgz", - "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", - "dev": true + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" }, "is-binary-path": { "version": "2.1.0", @@ -13961,20 +13332,20 @@ }, "is-buffer": { "version": "1.1.6", - "resolved": "https://registry.npm.taobao.org/is-buffer/download/is-buffer-1.1.6.tgz", - "integrity": "sha1-76ouqdqg16suoTqXsritUf776L4=", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", "dev": true }, "is-callable": { - "version": "1.2.0", - "resolved": "https://registry.npm.taobao.org/is-callable/download/is-callable-1.2.0.tgz", - "integrity": "sha1-gzNlYLVKOONeOi33r9BFTWkUaLs=", + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.2.tgz", + "integrity": "sha512-dnMqspv5nU3LoewK2N/y7KLtxtakvTuaCsU9FU50/QDmdbHNy/4/JuRtMHqRU22o3q+W89YQndQEeCVwK+3qrA==", "dev": true }, "is-ci": { "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/is-ci/download/is-ci-2.0.0.tgz", - "integrity": "sha1-a8YzQYGBDgS1wis9WJ/cpVAmQEw=", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", "dev": true, "requires": { "ci-info": "^2.0.0" @@ -13982,7 +13353,7 @@ }, "is-color-stop": { "version": "1.1.0", - "resolved": "https://registry.npm.taobao.org/is-color-stop/download/is-color-stop-1.1.0.tgz", + "resolved": "https://registry.npmjs.org/is-color-stop/-/is-color-stop-1.1.0.tgz", "integrity": "sha1-z/9HGu5N1cnhWFmPvhKWe1za00U=", "dev": true, "requires": { @@ -13994,25 +13365,45 @@ "rgba-regex": "^1.0.0" } }, + "is-core-module": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.2.0.tgz", + "integrity": "sha512-XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ==", + "dev": true, + "requires": { + "has": "^1.0.3" + } + }, "is-data-descriptor": { "version": "0.1.4", - "resolved": "https://registry.npm.taobao.org/is-data-descriptor/download/is-data-descriptor-0.1.4.tgz", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", "dev": true, "requires": { "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } } }, "is-date-object": { "version": "1.0.2", - "resolved": "https://registry.npm.taobao.org/is-date-object/download/is-date-object-1.0.2.tgz?cache=0&sync_timestamp=1576730971871&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fis-date-object%2Fdownload%2Fis-date-object-1.0.2.tgz", - "integrity": "sha1-vac28s2P0G0yhE53Q7+nSUw7/X4=", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz", + "integrity": "sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==", "dev": true }, "is-descriptor": { "version": "0.1.6", - "resolved": "https://registry.npm.taobao.org/is-descriptor/download/is-descriptor-0.1.6.tgz", - "integrity": "sha1-Nm2CQN3kh8pRgjsaufB6EKeCUco=", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", "dev": true, "requires": { "is-accessor-descriptor": "^0.1.6", @@ -14022,15 +13413,15 @@ "dependencies": { "kind-of": { "version": "5.1.0", - "resolved": "https://registry.npm.taobao.org/kind-of/download/kind-of-5.1.0.tgz", - "integrity": "sha1-cpyR4thXt6QZofmqZWhcTDP1hF0=", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", "dev": true } } }, "is-directory": { "version": "0.3.1", - "resolved": "https://registry.npm.taobao.org/is-directory/download/is-directory-0.3.1.tgz", + "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz", "integrity": "sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=", "dev": true }, @@ -14042,19 +13433,25 @@ }, "is-extendable": { "version": "0.1.1", - "resolved": "https://registry.npm.taobao.org/is-extendable/download/is-extendable-0.1.1.tgz", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", "dev": true }, "is-extglob": { "version": "2.1.1", - "resolved": "https://registry.npm.taobao.org/is-extglob/download/is-extglob-2.1.1.tgz", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" }, + "is-finite": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.1.0.tgz", + "integrity": "sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==", + "dev": true + }, "is-fullwidth-code-point": { "version": "3.0.0", - "resolved": "https://registry.npm.taobao.org/is-fullwidth-code-point/download/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha1-8Rb4Bk/pCz94RKOJl8C3UFEmnx0=" + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" }, "is-function": { "version": "1.0.2", @@ -14069,15 +13466,15 @@ }, "is-glob": { "version": "4.0.1", - "resolved": "https://registry.npm.taobao.org/is-glob/download/is-glob-4.0.1.tgz", - "integrity": "sha1-dWfb6fL14kZ7x3q4PEopSCQHpdw=", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", + "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", "requires": { "is-extglob": "^2.1.1" } }, "is-in-browser": { "version": "1.1.3", - "resolved": "https://registry.npm.taobao.org/is-in-browser/download/is-in-browser-1.1.3.tgz", + "resolved": "https://registry.npmjs.org/is-in-browser/-/is-in-browser-1.1.3.tgz", "integrity": "sha1-Vv9NtoOgeMYILrldrX3GLh0E+DU=", "dev": true }, @@ -14091,11 +13488,23 @@ "is-path-inside": "^3.0.1" } }, + "is-interactive": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", + "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", + "dev": true + }, "is-natural-number": { "version": "4.0.1", - "resolved": "https://registry.npm.taobao.org/is-natural-number/download/is-natural-number-4.0.1.tgz", + "resolved": "https://registry.npmjs.org/is-natural-number/-/is-natural-number-4.0.1.tgz", "integrity": "sha1-q5124dtM7VHjXeDHLr7PCfc0zeg=" }, + "is-negative-zero": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", + "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==", + "dev": true + }, "is-npm": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-4.0.0.tgz", @@ -14103,24 +13512,20 @@ "dev": true }, "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npm.taobao.org/is-number/download/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - } + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" }, "is-obj": { "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/is-obj/download/is-obj-2.0.0.tgz", - "integrity": "sha1-Rz+wXZc3BeP9liBUUBjKjiLvSYI=", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", "dev": true }, "is-object": { - "version": "1.0.1", - "resolved": "https://registry.npm.taobao.org/is-object/download/is-object-1.0.1.tgz", - "integrity": "sha1-iVJojF7C/9awPsyF52ngKQMINHA=" + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-object/-/is-object-1.0.2.tgz", + "integrity": "sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==" }, "is-path-cwd": { "version": "2.2.0", @@ -14156,22 +13561,22 @@ }, "is-plain-obj": { "version": "1.1.0", - "resolved": "https://registry.npm.taobao.org/is-plain-obj/download/is-plain-obj-1.1.0.tgz", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=" }, "is-plain-object": { "version": "2.0.4", - "resolved": "https://registry.npm.taobao.org/is-plain-object/download/is-plain-object-2.0.4.tgz", - "integrity": "sha1-LBY7P6+xtgbZ0Xko8FwqHDjgdnc=", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", "dev": true, "requires": { "isobject": "^3.0.1" } }, "is-regex": { - "version": "1.1.0", - "resolved": "https://registry.npm.taobao.org/is-regex/download/is-regex-1.1.0.tgz", - "integrity": "sha1-7OOOOJ5JDfDcIcrqK9WW+Yf3Z/8=", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz", + "integrity": "sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==", "dev": true, "requires": { "has-symbols": "^1.0.1" @@ -14179,7 +13584,7 @@ }, "is-regexp": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/is-regexp/download/is-regexp-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", "integrity": "sha1-/S2INUXEa6xaYz57mgnof6LLUGk=", "dev": true }, @@ -14191,24 +13596,24 @@ }, "is-retry-allowed": { "version": "1.2.0", - "resolved": "https://registry.npm.taobao.org/is-retry-allowed/download/is-retry-allowed-1.2.0.tgz", - "integrity": "sha1-13hIi9CkZmo76KFIK58rqv7eqLQ=" + "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz", + "integrity": "sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==" }, "is-root": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz", - "integrity": "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-root/-/is-root-2.0.0.tgz", + "integrity": "sha512-F/pJIk8QD6OX5DNhRB7hWamLsUilmkDGho48KbgZ6xg/lmAZXHxzXQ91jzB3yRSw5kdQGGGc4yz8HYhTYIMWPg==", "dev": true }, "is-stream": { "version": "1.1.0", - "resolved": "https://registry.npm.taobao.org/is-stream/download/is-stream-1.1.0.tgz", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=" }, "is-string": { "version": "1.0.5", - "resolved": "https://registry.npm.taobao.org/is-string/download/is-string-1.0.5.tgz", - "integrity": "sha1-QEk+0ZjvP/R3uMf5L2ROyCpc06Y=", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.5.tgz", + "integrity": "sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==", "dev": true }, "is-svg": { @@ -14222,8 +13627,8 @@ }, "is-symbol": { "version": "1.0.3", - "resolved": "https://registry.npm.taobao.org/is-symbol/download/is-symbol-1.0.3.tgz", - "integrity": "sha1-OOEBS55jKb4N6dJKQU/XRB7GGTc=", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz", + "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==", "dev": true, "requires": { "has-symbols": "^1.0.1" @@ -14231,25 +13636,34 @@ }, "is-typedarray": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/is-typedarray/download/is-typedarray-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" }, "is-url": { "version": "1.2.4", - "resolved": "https://registry.npm.taobao.org/is-url/download/is-url-1.2.4.tgz?cache=0&sync_timestamp=1573098321284&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fis-url%2Fdownload%2Fis-url-1.2.4.tgz", - "integrity": "sha1-BKTfRtKMTP89c9Af8Gq+sxihqlI=" + "resolved": "https://registry.npmjs.org/is-url/-/is-url-1.2.4.tgz", + "integrity": "sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww==" + }, + "is-utf8": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", + "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=", + "dev": true }, "is-windows": { "version": "1.0.2", - "resolved": "https://registry.npm.taobao.org/is-windows/download/is-windows-1.0.2.tgz", - "integrity": "sha1-0YUOuXkezRjmGCzhKjDzlmNLsZ0=", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", "dev": true }, "is-wsl": { - "version": "1.1.0", - "resolved": "https://registry.npm.taobao.org/is-wsl/download/is-wsl-1.1.0.tgz", - "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=", - "dev": true + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dev": true, + "requires": { + "is-docker": "^2.0.0" + } }, "is-yarn-global": { "version": "0.3.0", @@ -14259,30 +13673,33 @@ }, "isarray": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/isarray/download/isarray-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" }, "isbinaryfile": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-4.0.6.tgz", - "integrity": "sha512-ORrEy+SNVqUhrCaal4hA4fBzhggQQ+BaLntyPOdoEiwlKZW9BZiJXjg3RMiruE4tPEI3pyVPpySHQF/dKWperg==", - "dev": true + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-3.0.3.tgz", + "integrity": "sha512-8cJBL5tTd2OS0dM4jz07wQd5g0dCCqIhUxPIGtZfa5L6hWlvV5MHTITy/DBAsF+Oe2LS1X3krBUhNwaGUWpWxw==", + "dev": true, + "requires": { + "buffer-alloc": "^1.2.0" + } }, "isexe": { "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/isexe/download/isexe-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", "dev": true }, "isobject": { "version": "3.0.1", - "resolved": "https://registry.npm.taobao.org/isobject/download/isobject-3.0.1.tgz", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", "dev": true }, "isstream": { "version": "0.1.2", - "resolved": "https://registry.npm.taobao.org/isstream/download/isstream-0.1.2.tgz", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=", "dev": true }, @@ -14326,6 +13743,12 @@ "supports-color": "^6.1.0" }, "dependencies": { + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, "supports-color": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", @@ -14372,13 +13795,19 @@ }, "isurl": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/isurl/download/isurl-1.0.0.tgz", - "integrity": "sha1-sn9PSfPNqj6kSgpbfzRi5u3DnWc=", + "resolved": "https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz", + "integrity": "sha512-1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w==", "requires": { "has-to-string-tag-x": "^1.2.0", "is-object": "^1.0.1" } }, + "iterall": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/iterall/-/iterall-1.3.0.tgz", + "integrity": "sha512-QZ9qOMdF+QLHxy1QIpUHUU1D5pS2CG2P69LF6L6CPjPYA/XMOmKV3PZpawHoAjHNyB0swdVTRxdYT4tbBbxqwg==", + "dev": true + }, "jake": { "version": "10.8.2", "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.2.tgz", @@ -14389,6 +13818,64 @@ "chalk": "^2.4.2", "filelist": "^1.0.1", "minimatch": "^3.0.4" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "async": { + "version": "0.9.2", + "resolved": "https://registry.npmjs.org/async/-/async-0.9.2.tgz", + "integrity": "sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0=", + "dev": true + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } } }, "jest": { @@ -14401,6 +13888,91 @@ "jest-cli": "^24.9.0" }, "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "cliui": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "dev": true, + "requires": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "dev": true + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "requires": { + "locate-path": "^3.0.0" + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true + }, "jest-cli": { "version": "24.9.0", "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-24.9.0.tgz", @@ -14421,6 +13993,120 @@ "realpath-native": "^1.1.0", "yargs": "^13.3.0" } + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "requires": { + "p-limit": "^2.0.0" + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "dev": true + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + }, + "wrap-ansi": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + } + }, + "y18n": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz", + "integrity": "sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==", + "dev": true + }, + "yargs": { + "version": "13.3.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", + "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", + "dev": true, + "requires": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + } + }, + "yargs-parser": { + "version": "13.1.2", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", + "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", + "dev": true, + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } } } }, @@ -14458,6 +14144,58 @@ "micromatch": "^3.1.10", "pretty-format": "^24.9.0", "realpath-native": "^1.1.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } } }, "jest-diff": { @@ -14470,6 +14208,58 @@ "diff-sequences": "^24.9.0", "jest-get-type": "^24.9.0", "pretty-format": "^24.9.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } } }, "jest-docblock": { @@ -14492,6 +14282,58 @@ "jest-get-type": "^24.9.0", "jest-util": "^24.9.0", "pretty-format": "^24.9.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } } }, "jest-environment-jsdom": { @@ -14522,12 +14364,6 @@ "jsdom": "^14.1.0" }, "dependencies": { - "acorn": { - "version": "6.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.1.tgz", - "integrity": "sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA==", - "dev": true - }, "jsdom": { "version": "14.1.0", "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-14.1.0.tgz", @@ -14629,6 +14465,16 @@ "walker": "^1.0.7" }, "dependencies": { + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dev": true, + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + } + }, "fsevents": { "version": "1.2.13", "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", @@ -14639,6 +14485,15 @@ "bindings": "^1.5.0", "nan": "^2.12.1" } + }, + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "dev": true, + "requires": { + "remove-trailing-separator": "^1.0.1" + } } } }, @@ -14664,6 +14519,58 @@ "jest-util": "^24.9.0", "pretty-format": "^24.9.0", "throat": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } } }, "jest-leak-detector": { @@ -14686,6 +14593,58 @@ "jest-diff": "^24.9.0", "jest-get-type": "^24.9.0", "pretty-format": "^24.9.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } } }, "jest-message-util": { @@ -14702,6 +14661,64 @@ "micromatch": "^3.1.10", "slash": "^2.0.0", "stack-utils": "^1.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } } }, "jest-mock": { @@ -14736,6 +14753,58 @@ "chalk": "^2.0.1", "jest-pnp-resolver": "^1.2.1", "realpath-native": "^1.1.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } } }, "jest-resolve-dependencies": { @@ -14774,6 +14843,58 @@ "jest-worker": "^24.6.0", "source-map-support": "^0.5.6", "throat": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } } }, "jest-runtime": { @@ -14808,13 +14929,218 @@ }, "dependencies": { "@types/yargs": { - "version": "13.0.10", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-13.0.10.tgz", - "integrity": "sha512-MU10TSgzNABgdzKvQVW1nuuT+sgBMWeXNc3XOs5YXV5SDAK+PPja2eUuBNB9iqElu03xyEDqlnGw0jgl4nbqGQ==", + "version": "13.0.11", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-13.0.11.tgz", + "integrity": "sha512-NRqD6T4gktUrDi1o1wLH3EKC1o2caCr7/wR87ODcbVITQF106OM3sFN92ysZ++wqelOd1CTzatnOBRDYYG6wGQ==", "dev": true, "requires": { "@types/yargs-parser": "*" } + }, + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "cliui": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "dev": true, + "requires": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "dev": true + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "requires": { + "locate-path": "^3.0.0" + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "requires": { + "p-limit": "^2.0.0" + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "dev": true + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "dev": true + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + }, + "wrap-ansi": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + } + }, + "y18n": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz", + "integrity": "sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==", + "dev": true + }, + "yargs": { + "version": "13.3.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", + "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", + "dev": true, + "requires": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + } + }, + "yargs-parser": { + "version": "13.1.2", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", + "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", + "dev": true, + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } } } }, @@ -14845,11 +15171,61 @@ "semver": "^6.2.0" }, "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, "semver": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } } } }, @@ -14871,6 +15247,64 @@ "mkdirp": "^0.5.1", "slash": "^2.0.0", "source-map": "^0.6.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } } }, "jest-validate": { @@ -14885,6 +15319,64 @@ "jest-get-type": "^24.9.0", "leven": "^3.1.0", "pretty-format": "^24.9.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } } }, "jest-watch-typeahead": { @@ -14908,12 +15400,53 @@ "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", "dev": true }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, "astral-regex": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz", "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==", "dev": true }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, "slash": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", @@ -14938,6 +15471,15 @@ "requires": { "ansi-regex": "^4.1.0" } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } } } }, @@ -14957,9 +15499,9 @@ }, "dependencies": { "@types/yargs": { - "version": "13.0.10", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-13.0.10.tgz", - "integrity": "sha512-MU10TSgzNABgdzKvQVW1nuuT+sgBMWeXNc3XOs5YXV5SDAK+PPja2eUuBNB9iqElu03xyEDqlnGw0jgl4nbqGQ==", + "version": "13.0.11", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-13.0.11.tgz", + "integrity": "sha512-NRqD6T4gktUrDi1o1wLH3EKC1o2caCr7/wR87ODcbVITQF106OM3sFN92ysZ++wqelOd1CTzatnOBRDYYG6wGQ==", "dev": true, "requires": { "@types/yargs-parser": "*" @@ -14970,6 +15512,56 @@ "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==", "dev": true + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } } } }, @@ -14983,6 +15575,12 @@ "supports-color": "^6.1.0" }, "dependencies": { + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, "supports-color": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", @@ -15007,31 +15605,22 @@ } }, "joi": { - "version": "17.2.0", - "resolved": "https://registry.npmjs.org/joi/-/joi-17.2.0.tgz", - "integrity": "sha512-9ZC8pMSitNlenuwKARENBGVvvGYHNlwWe5rexo2WxyogaxCB5dNHAgFA1BJQ6nsJrt/jz1p5vSqDT6W6kciDDw==", + "version": "17.3.0", + "resolved": "https://registry.npmjs.org/joi/-/joi-17.3.0.tgz", + "integrity": "sha512-Qh5gdU6niuYbUIUV5ejbsMiiFmBdw8Kcp8Buj2JntszCkCfxJ9Cz76OtHxOZMPXrt5810iDIXs+n1nNVoquHgg==", "dev": true, "requires": { - "@hapi/address": "^4.1.0", - "@hapi/formula": "^2.0.0", "@hapi/hoek": "^9.0.0", - "@hapi/pinpoint": "^2.0.0", - "@hapi/topo": "^5.0.0" + "@hapi/topo": "^5.0.0", + "@sideway/address": "^4.1.0", + "@sideway/formula": "^3.0.0", + "@sideway/pinpoint": "^2.0.0" }, "dependencies": { - "@hapi/address": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/@hapi/address/-/address-4.1.0.tgz", - "integrity": "sha512-SkszZf13HVgGmChdHo/PxchnSaCJ6cetVqLzyciudzZRT0jcOouIF/Q93mgjw8cce+D+4F4C1Z/WrfFN+O3VHQ==", - "dev": true, - "requires": { - "@hapi/hoek": "^9.0.0" - } - }, "@hapi/hoek": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.0.4.tgz", - "integrity": "sha512-EwaJS7RjoXUZ2cXXKZZxZqieGtc7RbvQhUy8FwDoMQtxWVi14tFjeFCYPZAM1mBCpOpiBpyaZbb9NeHc7eGKgw==", + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.1.0.tgz", + "integrity": "sha512-i9YbZPN3QgfighY/1X1Pu118VUz2Fmmhd6b2n0/O8YVgGGfw0FbUYoA97k7FkpGJ+pLCFEDLUmAPPV4D1kpeFw==", "dev": true }, "@hapi/topo": { @@ -15052,14 +15641,14 @@ }, "js-tokens": { "version": "4.0.0", - "resolved": "https://registry.npm.taobao.org/js-tokens/download/js-tokens-4.0.0.tgz", - "integrity": "sha1-GSA/tZmR35jjoocFDUZHzerzJJk=", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", "dev": true }, "js-yaml": { - "version": "3.14.0", - "resolved": "https://registry.npm.taobao.org/js-yaml/download/js-yaml-3.14.0.tgz?cache=0&sync_timestamp=1590172122543&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fjs-yaml%2Fdownload%2Fjs-yaml-3.14.0.tgz", - "integrity": "sha1-p6NBcPJqIbsWJCTYray0ETpp5II=", + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", "requires": { "argparse": "^1.0.7", "esprima": "^4.0.0" @@ -15067,7 +15656,7 @@ }, "jsbn": { "version": "0.1.1", - "resolved": "https://registry.npm.taobao.org/jsbn/download/jsbn-0.1.1.tgz", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", "dev": true }, @@ -15110,24 +15699,30 @@ "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.4.tgz", "integrity": "sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg==", "dev": true + }, + "parse5": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-4.0.0.tgz", + "integrity": "sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==", + "dev": true } } }, "jsesc": { "version": "2.5.2", - "resolved": "https://registry.npm.taobao.org/jsesc/download/jsesc-2.5.2.tgz", - "integrity": "sha1-gFZNLkg9rPbo7yCWUKZ98/DCg6Q=", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", "dev": true }, "json-buffer": { "version": "3.0.0", - "resolved": "https://registry.npm.taobao.org/json-buffer/download/json-buffer-3.0.0.tgz", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", "integrity": "sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=" }, "json-parse-better-errors": { "version": "1.0.2", - "resolved": "https://registry.npm.taobao.org/json-parse-better-errors/download/json-parse-better-errors-1.0.2.tgz", - "integrity": "sha1-u4Z8+zRQ5pEHwTHRxRS6s9yLyqk=", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", "dev": true }, "json-parse-even-better-errors": { @@ -15138,19 +15733,19 @@ }, "json-schema": { "version": "0.2.3", - "resolved": "https://registry.npm.taobao.org/json-schema/download/json-schema-0.2.3.tgz", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=", "dev": true }, "json-schema-traverse": { "version": "0.4.1", - "resolved": "https://registry.npm.taobao.org/json-schema-traverse/download/json-schema-traverse-0.4.1.tgz", - "integrity": "sha1-afaofZUTq4u4/mO9sJecRI5oRmA=", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "dev": true }, "json-stable-stringify": { "version": "1.0.1", - "resolved": "https://registry.npm.taobao.org/json-stable-stringify/download/json-stable-stringify-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz", "integrity": "sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=", "dev": true, "requires": { @@ -15159,48 +15754,56 @@ }, "json-stable-stringify-without-jsonify": { "version": "1.0.1", - "resolved": "https://registry.npm.taobao.org/json-stable-stringify-without-jsonify/download/json-stable-stringify-without-jsonify-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", "dev": true }, "json-stringify-safe": { "version": "5.0.1", - "resolved": "https://registry.npm.taobao.org/json-stringify-safe/download/json-stringify-safe-5.0.1.tgz", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=", "dev": true }, "json3": { "version": "3.3.3", - "resolved": "https://registry.npm.taobao.org/json3/download/json3-3.3.3.tgz", - "integrity": "sha1-f8EON1/FrkLEcFpcwKpvYr4wW4E=", + "resolved": "https://registry.npmjs.org/json3/-/json3-3.3.3.tgz", + "integrity": "sha512-c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA==", "dev": true }, "json5": { - "version": "2.1.3", - "resolved": "https://registry.npm.taobao.org/json5/download/json5-2.1.3.tgz", - "integrity": "sha1-ybD3+pIzv+WAf+ZvzzpWF+1ZfUM=", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", "dev": true, "requires": { - "minimist": "^1.2.5" + "minimist": "^1.2.0" } }, "jsonfile": { - "version": "4.0.0", - "resolved": "https://registry.npm.taobao.org/jsonfile/download/jsonfile-4.0.0.tgz?cache=0&sync_timestamp=1583593992319&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fjsonfile%2Fdownload%2Fjsonfile-4.0.0.tgz", - "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", "requires": { - "graceful-fs": "^4.1.6" + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" + }, + "dependencies": { + "universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==" + } } }, "jsonify": { "version": "0.0.0", - "resolved": "https://registry.npm.taobao.org/jsonify/download/jsonify-0.0.0.tgz", + "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz", "integrity": "sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=", "dev": true }, "jsprim": { "version": "1.4.1", - "resolved": "https://registry.npm.taobao.org/jsprim/download/jsprim-1.4.1.tgz", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", "dev": true, "requires": { @@ -15211,105 +15814,120 @@ } }, "jss": { - "version": "10.3.0", - "resolved": "https://registry.npmjs.org/jss/-/jss-10.3.0.tgz", - "integrity": "sha512-B5sTRW9B6uHaUVzSo9YiMEOEp3UX8lWevU0Fsv+xtRnsShmgCfIYX44bTH8bPJe6LQKqEXku3ulKuHLbxBS97Q==", + "version": "10.5.0", + "resolved": "https://registry.npmjs.org/jss/-/jss-10.5.0.tgz", + "integrity": "sha512-B6151NvG+thUg3murLNHRPLxTLwQ13ep4SH5brj4d8qKtogOx/jupnpfkPGSHPqvcwKJaCLctpj2lEk+5yGwMw==", "dev": true, "requires": { "@babel/runtime": "^7.3.1", - "csstype": "^2.6.5", + "csstype": "^3.0.2", + "indefinite-observable": "^2.0.1", "is-in-browser": "^1.1.3", "tiny-warning": "^1.0.2" + }, + "dependencies": { + "csstype": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.5.tgz", + "integrity": "sha512-uVDi8LpBUKQj6sdxNaTetL6FpeCqTjOvAQuQUa/qAqq8oOd4ivkbhgnqayl0dnPal8Tb/yB1tF+gOvCBiicaiQ==", + "dev": true + } } }, "jss-plugin-camel-case": { - "version": "10.3.0", - "resolved": "https://registry.npmjs.org/jss-plugin-camel-case/-/jss-plugin-camel-case-10.3.0.tgz", - "integrity": "sha512-tadWRi/SLWqLK3EUZEdDNJL71F3ST93Zrl9JYMjV0QDqKPAl0Liue81q7m/nFUpnSTXczbKDy4wq8rI8o7WFqA==", + "version": "10.5.0", + "resolved": "https://registry.npmjs.org/jss-plugin-camel-case/-/jss-plugin-camel-case-10.5.0.tgz", + "integrity": "sha512-GSjPL0adGAkuoqeYiXTgO7PlIrmjv5v8lA6TTBdfxbNYpxADOdGKJgIEkffhlyuIZHlPuuiFYTwUreLUmSn7rg==", "dev": true, "requires": { "@babel/runtime": "^7.3.1", "hyphenate-style-name": "^1.0.3", - "jss": "^10.3.0" + "jss": "10.5.0" } }, "jss-plugin-default-unit": { - "version": "10.3.0", - "resolved": "https://registry.npmjs.org/jss-plugin-default-unit/-/jss-plugin-default-unit-10.3.0.tgz", - "integrity": "sha512-tT5KkIXAsZOSS9WDSe8m8lEHIjoEOj4Pr0WrG0WZZsMXZ1mVLFCSsD2jdWarQWDaRNyMj/I4d7czRRObhOxSuw==", + "version": "10.5.0", + "resolved": "https://registry.npmjs.org/jss-plugin-default-unit/-/jss-plugin-default-unit-10.5.0.tgz", + "integrity": "sha512-rsbTtZGCMrbcb9beiDd+TwL991NGmsAgVYH0hATrYJtue9e+LH/Gn4yFD1ENwE+3JzF3A+rPnM2JuD9L/SIIWw==", "dev": true, "requires": { "@babel/runtime": "^7.3.1", - "jss": "^10.3.0" + "jss": "10.5.0" } }, "jss-plugin-global": { - "version": "10.3.0", - "resolved": "https://registry.npmjs.org/jss-plugin-global/-/jss-plugin-global-10.3.0.tgz", - "integrity": "sha512-etYTG/y3qIR/vxZnKY+J3wXwObyBDNhBiB3l/EW9/pE3WHE//BZdK8LFvQcrCO48sZW1Z6paHo6klxUPP7WbzA==", + "version": "10.5.0", + "resolved": "https://registry.npmjs.org/jss-plugin-global/-/jss-plugin-global-10.5.0.tgz", + "integrity": "sha512-FZd9+JE/3D7HMefEG54fEC0XiQ9rhGtDHAT/ols24y8sKQ1D5KIw6OyXEmIdKFmACgxZV2ARQ5pAUypxkk2IFQ==", "dev": true, "requires": { "@babel/runtime": "^7.3.1", - "jss": "^10.3.0" + "jss": "10.5.0" } }, "jss-plugin-nested": { - "version": "10.3.0", - "resolved": "https://registry.npmjs.org/jss-plugin-nested/-/jss-plugin-nested-10.3.0.tgz", - "integrity": "sha512-qWiEkoXNEkkZ+FZrWmUGpf+zBsnEOmKXhkjNX85/ZfWhH9dfGxUCKuJFuOWFM+rjQfxV4csfesq4hY0jk8Qt0w==", + "version": "10.5.0", + "resolved": "https://registry.npmjs.org/jss-plugin-nested/-/jss-plugin-nested-10.5.0.tgz", + "integrity": "sha512-ejPlCLNlEGgx8jmMiDk/zarsCZk+DV0YqXfddpgzbO9Toamo0HweCFuwJ3ZO40UFOfqKwfpKMVH/3HUXgxkTMg==", "dev": true, "requires": { "@babel/runtime": "^7.3.1", - "jss": "^10.3.0", + "jss": "10.5.0", "tiny-warning": "^1.0.2" } }, "jss-plugin-props-sort": { - "version": "10.3.0", - "resolved": "https://registry.npmjs.org/jss-plugin-props-sort/-/jss-plugin-props-sort-10.3.0.tgz", - "integrity": "sha512-boetORqL/lfd7BWeFD3K+IyPqyIC+l3CRrdZr+NPq7Noqp+xyg/0MR7QisgzpxCEulk+j2CRcEUoZsvgPC4nTg==", + "version": "10.5.0", + "resolved": "https://registry.npmjs.org/jss-plugin-props-sort/-/jss-plugin-props-sort-10.5.0.tgz", + "integrity": "sha512-kTLRvrOetFKz5vM88FAhLNeJIxfjhCepnvq65G7xsAQ/Wgy7HwO1BS/2wE5mx8iLaAWC6Rj5h16mhMk9sKdZxg==", "dev": true, "requires": { "@babel/runtime": "^7.3.1", - "jss": "^10.3.0" + "jss": "10.5.0" } }, "jss-plugin-rule-value-function": { - "version": "10.3.0", - "resolved": "https://registry.npmjs.org/jss-plugin-rule-value-function/-/jss-plugin-rule-value-function-10.3.0.tgz", - "integrity": "sha512-7WiMrKIHH3rwxTuJki9+7nY11r1UXqaUZRhHvqTD4/ZE+SVhvtD5Tx21ivNxotwUSleucA/8boX+NF21oXzr5Q==", + "version": "10.5.0", + "resolved": "https://registry.npmjs.org/jss-plugin-rule-value-function/-/jss-plugin-rule-value-function-10.5.0.tgz", + "integrity": "sha512-jXINGr8BSsB13JVuK274oEtk0LoooYSJqTBCGeBu2cG/VJ3+4FPs1gwLgsq24xTgKshtZ+WEQMVL34OprLidRA==", "dev": true, "requires": { "@babel/runtime": "^7.3.1", - "jss": "^10.3.0", + "jss": "10.5.0", "tiny-warning": "^1.0.2" } }, "jss-plugin-vendor-prefixer": { - "version": "10.3.0", - "resolved": "https://registry.npmjs.org/jss-plugin-vendor-prefixer/-/jss-plugin-vendor-prefixer-10.3.0.tgz", - "integrity": "sha512-sZQbrcZyP5V0ADjCLwUA1spVWoaZvM7XZ+2fSeieZFBj31cRsnV7X70FFDerMHeiHAXKWzYek+67nMDjhrZAVQ==", + "version": "10.5.0", + "resolved": "https://registry.npmjs.org/jss-plugin-vendor-prefixer/-/jss-plugin-vendor-prefixer-10.5.0.tgz", + "integrity": "sha512-rux3gmfwDdOKCLDx0IQjTwTm03IfBa+Rm/hs747cOw5Q7O3RaTUIMPKjtVfc31Xr/XI9Abz2XEupk1/oMQ7zRA==", "dev": true, "requires": { "@babel/runtime": "^7.3.1", "css-vendor": "^2.0.8", - "jss": "^10.3.0" + "jss": "10.5.0" } }, "jsx-ast-utils": { - "version": "2.4.1", - "resolved": "https://registry.npm.taobao.org/jsx-ast-utils/download/jsx-ast-utils-2.4.1.tgz?cache=0&sync_timestamp=1591928159135&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fjsx-ast-utils%2Fdownload%2Fjsx-ast-utils-2.4.1.tgz", - "integrity": "sha1-ERSkwSCUgdsGxpDCtPSIzGZfZX4=", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.2.0.tgz", + "integrity": "sha512-EIsmt3O3ljsU6sot/J4E1zDRxfBNrhjyf/OKjlydwgEimQuznlM4Wv7U+ueONJMyEn1WRE0K8dhi3dVAXYT24Q==", "dev": true, "requires": { - "array-includes": "^3.1.1", - "object.assign": "^4.1.0" + "array-includes": "^3.1.2", + "object.assign": "^4.1.2" } }, + "junk": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/junk/-/junk-3.1.0.tgz", + "integrity": "sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==", + "dev": true + }, "keyv": { "version": "3.0.0", - "resolved": "https://registry.npm.taobao.org/keyv/download/keyv-3.0.0.tgz", - "integrity": "sha1-RJI7o55osSp87H32wyaMAx8u83M=", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.0.0.tgz", + "integrity": "sha512-eguHnq22OE3uVoSYG0LVWNP+4ppamWr9+zWBe1bsNcovIMy6huUJFPgy4mGwCd/rnl3vOLGW1MTlu4c57CT1xA==", "requires": { "json-buffer": "3.0.0" } @@ -15321,13 +15939,10 @@ "dev": true }, "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npm.taobao.org/kind-of/download/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true }, "kleur": { "version": "3.0.3", @@ -15340,21 +15955,6 @@ "resolved": "https://registry.npmjs.org/kuler/-/kuler-2.0.0.tgz", "integrity": "sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==" }, - "language-subtag-registry": { - "version": "0.3.20", - "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.20.tgz", - "integrity": "sha512-KPMwROklF4tEx283Xw0pNKtfTj1gZ4UByp4EsIFWLgBavJltF4TiYPc39k06zSTsLzxTVXXDSpbwaQXaFB4Qeg==", - "dev": true - }, - "language-tags": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", - "integrity": "sha1-0yHbxNowuovzAk4ED6XBRmH5GTo=", - "dev": true, - "requires": { - "language-subtag-registry": "~0.3.2" - } - }, "last-call-webpack-plugin": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/last-call-webpack-plugin/-/last-call-webpack-plugin-3.0.0.tgz", @@ -15376,7 +15976,7 @@ }, "lazy-cache": { "version": "1.0.4", - "resolved": "https://registry.npm.taobao.org/lazy-cache/download/lazy-cache-1.0.4.tgz", + "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz", "integrity": "sha1-odePw6UEdMuAhF07O24dpJpEbo4=", "dev": true }, @@ -15408,7 +16008,7 @@ }, "levn": { "version": "0.3.0", - "resolved": "https://registry.npm.taobao.org/levn/download/levn-0.3.0.tgz", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", "requires": { "prelude-ls": "~1.1.2", @@ -15417,16 +16017,10 @@ }, "lines-and-columns": { "version": "1.1.6", - "resolved": "https://registry.npm.taobao.org/lines-and-columns/download/lines-and-columns-1.1.6.tgz", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz", "integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=", "dev": true }, - "listenercount": { - "version": "1.0.1", - "resolved": "https://registry.npm.taobao.org/listenercount/download/listenercount-1.0.1.tgz", - "integrity": "sha1-hMinKrWcRyUyFIDJdeZQg0LnCTc=", - "dev": true - }, "load-bmfont": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/load-bmfont/-/load-bmfont-1.4.1.tgz", @@ -15444,7 +16038,7 @@ }, "load-json-file": { "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/load-json-file/download/load-json-file-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz", "integrity": "sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg=", "dev": true, "requires": { @@ -15454,18 +16048,9 @@ "strip-bom": "^3.0.0" }, "dependencies": { - "parse-json": { - "version": "2.2.0", - "resolved": "https://registry.npm.taobao.org/parse-json/download/parse-json-2.2.0.tgz", - "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", - "dev": true, - "requires": { - "error-ex": "^1.2.0" - } - }, "pify": { "version": "2.3.0", - "resolved": "https://registry.npm.taobao.org/pify/download/pify-2.3.0.tgz", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", "dev": true } @@ -15483,7 +16068,7 @@ "dependencies": { "find-cache-dir": { "version": "0.1.1", - "resolved": "https://registry.npm.taobao.org/find-cache-dir/download/find-cache-dir-0.1.1.tgz", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-0.1.1.tgz", "integrity": "sha1-yN765XyKUqinhPnjHFfHQumToLk=", "dev": true, "requires": { @@ -15494,7 +16079,7 @@ }, "find-up": { "version": "1.1.2", - "resolved": "https://registry.npm.taobao.org/find-up/download/find-up-1.1.2.tgz", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", "dev": true, "requires": { @@ -15504,7 +16089,7 @@ }, "path-exists": { "version": "2.1.0", - "resolved": "https://registry.npm.taobao.org/path-exists/download/path-exists-2.1.0.tgz", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", "dev": true, "requires": { @@ -15513,7 +16098,7 @@ }, "pkg-dir": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/pkg-dir/download/pkg-dir-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-1.0.0.tgz", "integrity": "sha1-ektQio1bstYp1EcFb/TpyTFM89Q=", "dev": true, "requires": { @@ -15537,32 +16122,21 @@ "big.js": "^5.2.2", "emojis-list": "^3.0.0", "json5": "^1.0.1" - }, - "dependencies": { - "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", - "dev": true, - "requires": { - "minimist": "^1.2.0" - } - } } }, "locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npm.taobao.org/locate-path/download/locate-path-3.0.0.tgz", - "integrity": "sha1-2+w7OrdZdYBxtY/ln8QYca8hQA4=", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", "dev": true, "requires": { - "p-locate": "^3.0.0", + "p-locate": "^2.0.0", "path-exists": "^3.0.0" }, "dependencies": { "path-exists": { "version": "3.0.0", - "resolved": "https://registry.npm.taobao.org/path-exists/download/path-exists-3.0.0.tgz", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", "dev": true } @@ -15581,7 +16155,7 @@ }, "lodash._reinterpolate": { "version": "3.0.0", - "resolved": "https://registry.npm.taobao.org/lodash._reinterpolate/download/lodash._reinterpolate-3.0.0.tgz", + "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz", "integrity": "sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=", "dev": true }, @@ -15592,7 +16166,7 @@ }, "lodash.get": { "version": "4.4.2", - "resolved": "https://registry.npm.taobao.org/lodash.get/download/lodash.get-4.4.2.tgz", + "resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz", "integrity": "sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=" }, "lodash.has": { @@ -15602,12 +16176,12 @@ }, "lodash.isequal": { "version": "4.5.0", - "resolved": "https://registry.npm.taobao.org/lodash.isequal/download/lodash.isequal-4.5.0.tgz", + "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", "integrity": "sha1-QVxEePK8wwEgwizhDtMib30+GOA=" }, "lodash.memoize": { "version": "4.1.2", - "resolved": "https://registry.npm.taobao.org/lodash.memoize/download/lodash.memoize-4.1.2.tgz", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=", "dev": true }, @@ -15618,12 +16192,12 @@ }, "lodash.set": { "version": "4.3.2", - "resolved": "https://registry.npm.taobao.org/lodash.set/download/lodash.set-4.3.2.tgz", + "resolved": "https://registry.npmjs.org/lodash.set/-/lodash.set-4.3.2.tgz", "integrity": "sha1-2HV7HagH3eJIFrDWqEvqGnYjCyM=" }, "lodash.sortby": { "version": "4.7.0", - "resolved": "https://registry.npm.taobao.org/lodash.sortby/download/lodash.sortby-4.7.0.tgz", + "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", "integrity": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=", "dev": true }, @@ -15648,7 +16222,7 @@ }, "lodash.uniq": { "version": "4.5.0", - "resolved": "https://registry.npm.taobao.org/lodash.uniq/download/lodash.uniq-4.5.0.tgz", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", "integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=", "dev": true }, @@ -15659,10 +16233,19 @@ }, "lodash.zip": { "version": "4.2.0", - "resolved": "https://registry.npm.taobao.org/lodash.zip/download/lodash.zip-4.2.0.tgz", + "resolved": "https://registry.npmjs.org/lodash.zip/-/lodash.zip-4.2.0.tgz", "integrity": "sha1-7GZi5IlkCO1KtsVCo5kLcswIACA=", "dev": true }, + "log-symbols": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.0.0.tgz", + "integrity": "sha512-FN8JBzLx6CzeMrB0tg6pqlGU1wCrXW+ZXGH481kfsBqer0hToTIiHdjH4Mq8xJUbvATujKCvaREGWpGUionraA==", + "dev": true, + "requires": { + "chalk": "^4.0.0" + } + }, "logform": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/logform/-/logform-2.2.0.tgz", @@ -15676,52 +16259,79 @@ } }, "loglevel": { - "version": "1.6.8", - "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.6.8.tgz", - "integrity": "sha512-bsU7+gc9AJ2SqpzxwU3+1fedl8zAntbtC5XYlt3s2j1hJcn2PsXSmgN8TaLG/J1/2mod4+cE/3vNL70/c1RNCA==", + "version": "1.7.1", + "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.7.1.tgz", + "integrity": "sha512-Hesni4s5UkWkwCGJMQGAh71PaLUmKFM60dHvq0zi/vDhhrzuk+4GgNbTXJ12YYQJn6ZKBDNIjYcuQGKudvqrIw==", "dev": true }, "loose-envify": { "version": "1.4.0", - "resolved": "https://registry.npm.taobao.org/loose-envify/download/loose-envify-1.4.0.tgz", - "integrity": "sha1-ce5R+nvkyuwaY4OffmgtgTLTDK8=", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", "dev": true, "requires": { "js-tokens": "^3.0.0 || ^4.0.0" } }, - "lower-case": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.1.tgz", - "integrity": "sha512-LiWgfDLLb1dwbFQZsSglpRj+1ctGnayXz3Uv0/WO8n558JycT5fg6zkNcnW0G68Nn0aEldTFeEfmjCfmqry/rQ==", + "loud-rejection": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz", + "integrity": "sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=", "dev": true, "requires": { - "tslib": "^1.10.0" + "currently-unhandled": "^0.4.1", + "signal-exit": "^3.0.0" + } + }, + "lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dev": true, + "requires": { + "tslib": "^2.0.3" } }, "lowercase-keys": { "version": "1.0.1", - "resolved": "https://registry.npm.taobao.org/lowercase-keys/download/lowercase-keys-1.0.1.tgz", - "integrity": "sha1-b54wtHCE2XGnyCD/FabFFnt0wm8=" + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", + "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==" }, "lru-cache": { "version": "5.1.1", - "resolved": "https://registry.npm.taobao.org/lru-cache/download/lru-cache-5.1.1.tgz", - "integrity": "sha1-HaJ+ZxAnGUdpXa9oSOhH8B2EuSA=", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", "requires": { "yallist": "^3.0.2" } }, - "macos-release": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/macos-release/-/macos-release-2.4.1.tgz", - "integrity": "sha512-H/QHeBIN1fIGJX517pvK8IEK53yQOW7YcEI55oYtgjDdoCQQz7eJS94qt5kNrscReEyuD/JcdFCm2XBEcGOITg==", - "dev": true + "lzma-native": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/lzma-native/-/lzma-native-6.0.1.tgz", + "integrity": "sha512-O6oWF0xe1AFvOCjU8uOZBZ/lhjaMNwHfVNaqVMqmoQXlRwBcFWpCAToiZOdXcKVMdo/5s/D0a2QgA5laMErxHQ==", + "dev": true, + "requires": { + "node-addon-api": "^1.6.0", + "node-pre-gyp": "^0.11.0", + "readable-stream": "^2.3.5", + "rimraf": "^2.7.1" + }, + "dependencies": { + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + } + } }, "make-dir": { "version": "2.1.0", - "resolved": "https://registry.npm.taobao.org/make-dir/download/make-dir-2.1.0.tgz?cache=0&sync_timestamp=1587567875186&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fmake-dir%2Fdownload%2Fmake-dir-2.1.0.tgz", - "integrity": "sha1-XwMQ4YuL6JjMBwCSlaMK5B6R5vU=", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", "requires": { "pify": "^4.0.1", "semver": "^5.6.0" @@ -15729,14 +16339,14 @@ "dependencies": { "semver": { "version": "5.7.1", - "resolved": "https://registry.npm.taobao.org/semver/download/semver-5.7.1.tgz?cache=0&sync_timestamp=1586886301819&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-5.7.1.tgz", - "integrity": "sha1-qVT5Ma66UI0we78Gnv8MAclhFvc=" + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" } } }, "makeerror": { "version": "1.0.11", - "resolved": "https://registry.npm.taobao.org/makeerror/download/makeerror-1.0.11.tgz", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.11.tgz", "integrity": "sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw=", "dev": true, "requires": { @@ -15749,12 +16359,27 @@ "integrity": "sha512-qMEwh+UujcQ+kbz3T6V+wAmO2U8veoq2w+3wY8MquqwVA3jChfwY+Tk52GZKDfACEPjuZ7r2oJLejwpt8jtwTA==", "dev": true }, + "map-age-cleaner": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz", + "integrity": "sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==", + "dev": true, + "requires": { + "p-defer": "^1.0.0" + } + }, "map-cache": { "version": "0.2.2", - "resolved": "https://registry.npm.taobao.org/map-cache/download/map-cache-0.2.2.tgz", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=", "dev": true }, + "map-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", + "integrity": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=", + "dev": true + }, "map-stream": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/map-stream/-/map-stream-0.1.0.tgz", @@ -15763,7 +16388,7 @@ }, "map-visit": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/map-visit/download/map-visit-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", "dev": true, "requires": { @@ -15789,17 +16414,6 @@ } } }, - "md5": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/md5/-/md5-2.3.0.tgz", - "integrity": "sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==", - "dev": true, - "requires": { - "charenc": "0.0.2", - "crypt": "0.0.2", - "is-buffer": "~1.1.6" - } - }, "md5.js": { "version": "1.3.5", "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", @@ -15819,66 +16433,161 @@ }, "media-typer": { "version": "0.3.0", - "resolved": "https://registry.npm.taobao.org/media-typer/download/media-typer-0.3.0.tgz", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=", "dev": true }, + "mem": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/mem/-/mem-4.3.0.tgz", + "integrity": "sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w==", + "dev": true, + "requires": { + "map-age-cleaner": "^0.1.1", + "mimic-fn": "^2.0.0", + "p-is-promise": "^2.0.0" + }, + "dependencies": { + "p-is-promise": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-2.1.0.tgz", + "integrity": "sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg==", + "dev": true + } + } + }, + "memfs": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.2.0.tgz", + "integrity": "sha512-f/xxz2TpdKv6uDn6GtHee8ivFyxwxmPuXatBb1FBwxYNuVpbM3k/Y1Z+vC0mH/dIXXrukYfe3qe5J32Dfjg93A==", + "dev": true, + "requires": { + "fs-monkey": "1.0.1" + } + }, "memoize-one": { "version": "5.1.1", - "resolved": "https://registry.npm.taobao.org/memoize-one/download/memoize-one-5.1.1.tgz", - "integrity": "sha1-BHtuMZm1COrsA1BN5xIpuOsddcA=", + "resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-5.1.1.tgz", + "integrity": "sha512-HKeeBpWvqiVJD57ZUAsJNm71eHTykffzcLZVYWiVfQeI1rJtuEaS7hQiEpWfVVk18donPwJEcFKIkCmPJNOhHA==", "dev": true }, "memory-fs": { "version": "0.4.1", - "resolved": "https://registry.npm.taobao.org/memory-fs/download/memory-fs-0.4.1.tgz", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=", "dev": true, "requires": { "errno": "^0.1.3", "readable-stream": "^2.0.1" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } } }, "menubar": { "version": "9.0.1", - "resolved": "https://registry.npm.taobao.org/menubar/download/menubar-9.0.1.tgz", - "integrity": "sha1-SdjXPuC1FdZiHWRPqWZH49/IrDw=", + "resolved": "https://registry.npmjs.org/menubar/-/menubar-9.0.1.tgz", + "integrity": "sha512-r4NdeG3CDb9BQ0w8WffWw2JT+Pugn22hKCb4niNuXMzK3WphY+RX2WmTPlZdIZfpNxVNKAo/mbuGfVP6LGGeJw==", "requires": { "electron-positioner": "^4.1.0" } }, + "meow": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz", + "integrity": "sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=", + "dev": true, + "requires": { + "camelcase-keys": "^2.0.0", + "decamelize": "^1.1.2", + "loud-rejection": "^1.0.0", + "map-obj": "^1.0.1", + "minimist": "^1.1.3", + "normalize-package-data": "^2.3.4", + "object-assign": "^4.0.1", + "read-pkg-up": "^1.0.1", + "redent": "^1.0.0", + "trim-newlines": "^1.0.0" + }, + "dependencies": { + "find-up": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", + "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", + "dev": true, + "requires": { + "path-exists": "^2.0.0", + "pinkie-promise": "^2.0.0" + } + }, + "load-json-file": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", + "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "parse-json": "^2.2.0", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0", + "strip-bom": "^2.0.0" + } + }, + "path-exists": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", + "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", + "dev": true, + "requires": { + "pinkie-promise": "^2.0.0" + } + }, + "path-type": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", + "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + } + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "dev": true + }, + "read-pkg": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", + "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", + "dev": true, + "requires": { + "load-json-file": "^1.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^1.0.0" + } + }, + "read-pkg-up": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", + "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", + "dev": true, + "requires": { + "find-up": "^1.0.0", + "read-pkg": "^1.0.0" + } + }, + "strip-bom": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", + "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", + "dev": true, + "requires": { + "is-utf8": "^0.2.0" + } + } + } + }, "merge-deep": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/merge-deep/-/merge-deep-3.0.2.tgz", @@ -15888,11 +16597,64 @@ "arr-union": "^3.1.0", "clone-deep": "^0.2.4", "kind-of": "^3.0.2" + }, + "dependencies": { + "clone-deep": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-0.2.4.tgz", + "integrity": "sha1-TnPdCen7lxzDhnDF3O2cGJZIHMY=", + "dev": true, + "requires": { + "for-own": "^0.1.3", + "is-plain-object": "^2.0.1", + "kind-of": "^3.0.2", + "lazy-cache": "^1.0.3", + "shallow-clone": "^0.1.2" + } + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + }, + "shallow-clone": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-0.1.2.tgz", + "integrity": "sha1-WQnodLp3EG1zrEFM/sH/yofZcGA=", + "dev": true, + "requires": { + "is-extendable": "^0.1.1", + "kind-of": "^2.0.1", + "lazy-cache": "^0.2.3", + "mixin-object": "^2.0.1" + }, + "dependencies": { + "kind-of": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-2.0.1.tgz", + "integrity": "sha1-AY7HpM5+OobLkUG+UZ0kyPqpgbU=", + "dev": true, + "requires": { + "is-buffer": "^1.0.2" + } + }, + "lazy-cache": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-0.2.7.tgz", + "integrity": "sha1-f+3fLctu23fRHvHRF6tf/fCrG2U=", + "dev": true + } + } + } } }, "merge-descriptors": { "version": "1.0.1", - "resolved": "https://registry.npm.taobao.org/merge-descriptors/download/merge-descriptors-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=", "dev": true }, @@ -15904,13 +16666,13 @@ }, "merge2": { "version": "1.4.1", - "resolved": "https://registry.npm.taobao.org/merge2/download/merge2-1.4.1.tgz?cache=0&sync_timestamp=1591169980723&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fmerge2%2Fdownload%2Fmerge2-1.4.1.tgz", - "integrity": "sha1-Q2iJL4hekHRVpv19xVwMnUBJkK4=", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", "dev": true }, "methods": { "version": "1.1.2", - "resolved": "https://registry.npm.taobao.org/methods/download/methods-1.1.2.tgz", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=", "dev": true }, @@ -15922,8 +16684,8 @@ }, "micromatch": { "version": "3.1.10", - "resolved": "https://registry.npm.taobao.org/micromatch/download/micromatch-3.1.10.tgz", - "integrity": "sha1-cIWbyVyYQJUvNZoGij/En57PrCM=", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", "dev": true, "requires": { "arr-diff": "^4.0.0", @@ -15941,11 +16703,87 @@ "to-regex": "^3.0.2" }, "dependencies": { - "kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npm.taobao.org/kind-of/download/kind-of-6.0.3.tgz", - "integrity": "sha1-B8BQNKbDSfoG4k+jWqdttFgM5N0=", - "dev": true + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } } } }, @@ -15973,9 +16811,9 @@ "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" }, "mime-db": { - "version": "1.44.0", - "resolved": "https://registry.npm.taobao.org/mime-db/download/mime-db-1.44.0.tgz", - "integrity": "sha1-+hHF6wrKEzS0Izy01S8QxaYnL5I=" + "version": "1.45.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.45.0.tgz", + "integrity": "sha512-CkqLUxUk15hofLoLyljJSrukZi8mAtgd+yE5uO4tqRZsdsAJKv0O+rFMhVDRJgozy+yG6md5KwuXhD4ocIoP+w==" }, "mime-types": { "version": "2.1.27", @@ -15984,22 +16822,30 @@ "dev": true, "requires": { "mime-db": "1.44.0" + }, + "dependencies": { + "mime-db": { + "version": "1.44.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.44.0.tgz", + "integrity": "sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg==", + "dev": true + } } }, "mimic-fn": { "version": "2.1.0", - "resolved": "https://registry.npm.taobao.org/mimic-fn/download/mimic-fn-2.1.0.tgz", - "integrity": "sha1-ftLCzMyvhNP/y3pptXcR/CCDQBs=", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", "dev": true }, "mimic-response": { "version": "1.0.1", - "resolved": "https://registry.npm.taobao.org/mimic-response/download/mimic-response-1.0.1.tgz?cache=0&sync_timestamp=1589481080007&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fmimic-response%2Fdownload%2Fmimic-response-1.0.1.tgz", - "integrity": "sha1-SSNTiHju9CBjy4o+OweYeBSHqxs=" + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==" }, "min-document": { "version": "2.19.0", - "resolved": "https://registry.npm.taobao.org/min-document/download/min-document-2.19.0.tgz", + "resolved": "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz", "integrity": "sha1-e9KC4/WELtKVu3SM3Z8f+iyCRoU=", "requires": { "dom-walk": "^0.1.0" @@ -16019,7 +16865,7 @@ "dependencies": { "normalize-url": { "version": "1.9.1", - "resolved": "https://registry.npm.taobao.org/normalize-url/download/normalize-url-1.9.1.tgz", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-1.9.1.tgz", "integrity": "sha1-LMDWazHqIwNkWENuNiDYWVTGbDw=", "dev": true, "requires": { @@ -16031,30 +16877,19 @@ }, "prepend-http": { "version": "1.0.4", - "resolved": "https://registry.npm.taobao.org/prepend-http/download/prepend-http-1.0.4.tgz", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=", "dev": true }, "query-string": { "version": "4.3.4", - "resolved": "https://registry.npm.taobao.org/query-string/download/query-string-4.3.4.tgz?cache=0&sync_timestamp=1591853352562&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fquery-string%2Fdownload%2Fquery-string-4.3.4.tgz", + "resolved": "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz", "integrity": "sha1-u7aTucqRXCMlFbIosaArYJBD2+s=", "dev": true, "requires": { "object-assign": "^4.1.0", "strict-uri-encode": "^1.0.0" } - }, - "schema-utils": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", - "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", - "dev": true, - "requires": { - "ajv": "^6.1.0", - "ajv-errors": "^1.0.0", - "ajv-keywords": "^3.1.0" - } } } }, @@ -16066,38 +16901,30 @@ }, "minimalistic-crypto-utils": { "version": "1.0.1", - "resolved": "https://registry.npm.taobao.org/minimalistic-crypto-utils/download/minimalistic-crypto-utils-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=", "dev": true }, "minimatch": { "version": "3.0.4", - "resolved": "https://registry.npm.taobao.org/minimatch/download/minimatch-3.0.4.tgz", - "integrity": "sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM=", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", "requires": { "brace-expansion": "^1.1.7" } }, "minimist": { "version": "1.2.5", - "resolved": "https://registry.npm.taobao.org/minimist/download/minimist-1.2.5.tgz", - "integrity": "sha1-Z9ZgFLZqaoqqDAg8X9WN9OTpdgI=" + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" }, "minipass": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.3.tgz", - "integrity": "sha512-Mgd2GdMVzY+x3IJ+oHnVM+KG3lA5c8tnabyJKmHSaG2kAGpudxuOf8ToDkhumF7UzME7DecbQE9uOZhNm7PuJg==", - "dev": true, + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-2.9.0.tgz", + "integrity": "sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==", "requires": { - "yallist": "^4.0.0" - }, - "dependencies": { - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - } + "safe-buffer": "^5.1.2", + "yallist": "^3.0.0" } }, "minipass-collect": { @@ -16107,6 +16934,23 @@ "dev": true, "requires": { "minipass": "^3.0.0" + }, + "dependencies": { + "minipass": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.3.tgz", + "integrity": "sha512-Mgd2GdMVzY+x3IJ+oHnVM+KG3lA5c8tnabyJKmHSaG2kAGpudxuOf8ToDkhumF7UzME7DecbQE9uOZhNm7PuJg==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + } } }, "minipass-flush": { @@ -16116,6 +16960,23 @@ "dev": true, "requires": { "minipass": "^3.0.0" + }, + "dependencies": { + "minipass": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.3.tgz", + "integrity": "sha512-Mgd2GdMVzY+x3IJ+oHnVM+KG3lA5c8tnabyJKmHSaG2kAGpudxuOf8ToDkhumF7UzME7DecbQE9uOZhNm7PuJg==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + } } }, "minipass-pipeline": { @@ -16125,6 +16986,23 @@ "dev": true, "requires": { "minipass": "^3.0.0" + }, + "dependencies": { + "minipass": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.3.tgz", + "integrity": "sha512-Mgd2GdMVzY+x3IJ+oHnVM+KG3lA5c8tnabyJKmHSaG2kAGpudxuOf8ToDkhumF7UzME7DecbQE9uOZhNm7PuJg==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + } } }, "minizlib": { @@ -16133,17 +17011,6 @@ "integrity": "sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==", "requires": { "minipass": "^2.9.0" - }, - "dependencies": { - "minipass": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-2.9.0.tgz", - "integrity": "sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==", - "requires": { - "safe-buffer": "^5.1.2", - "yallist": "^3.0.0" - } - } } }, "mississippi": { @@ -16164,36 +17031,6 @@ "through2": "^2.0.0" }, "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - }, "through2": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", @@ -16208,8 +17045,8 @@ }, "mixin-deep": { "version": "1.3.2", - "resolved": "https://registry.npm.taobao.org/mixin-deep/download/mixin-deep-1.3.2.tgz", - "integrity": "sha1-ESC0PcNZp4Xc5ltVuC4lfM9HlWY=", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", "dev": true, "requires": { "for-in": "^1.0.2", @@ -16218,8 +17055,8 @@ "dependencies": { "is-extendable": { "version": "1.0.1", - "resolved": "https://registry.npm.taobao.org/is-extendable/download/is-extendable-1.0.1.tgz", - "integrity": "sha1-p0cPnkJnM9gb2B4RVSZOOjUHyrQ=", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", "dev": true, "requires": { "is-plain-object": "^2.0.4" @@ -16229,7 +17066,7 @@ }, "mixin-object": { "version": "2.0.1", - "resolved": "https://registry.npm.taobao.org/mixin-object/download/mixin-object-2.0.1.tgz", + "resolved": "https://registry.npmjs.org/mixin-object/-/mixin-object-2.0.1.tgz", "integrity": "sha1-T7lJRB2rGCVA8f4DW6YOGUel5X4=", "dev": true, "requires": { @@ -16239,7 +17076,7 @@ "dependencies": { "for-in": { "version": "0.1.8", - "resolved": "https://registry.npm.taobao.org/for-in/download/for-in-0.1.8.tgz?cache=0&sync_timestamp=1573184298867&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffor-in%2Fdownload%2Ffor-in-0.1.8.tgz", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-0.1.8.tgz", "integrity": "sha1-2Hc5COMSVhCZUrH9ubP6hn0ndeE=", "dev": true } @@ -16247,25 +17084,25 @@ }, "mkdirp": { "version": "0.5.5", - "resolved": "https://registry.npm.taobao.org/mkdirp/download/mkdirp-0.5.5.tgz?cache=0&sync_timestamp=1588819864223&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fmkdirp%2Fdownload%2Fmkdirp-0.5.5.tgz", - "integrity": "sha1-2Rzv1i0UNsoPQWIOJRKI1CAJne8=", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", + "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", "requires": { "minimist": "^1.2.5" } }, "modify-filename": { "version": "1.1.0", - "resolved": "https://registry.npm.taobao.org/modify-filename/download/modify-filename-1.1.0.tgz", + "resolved": "https://registry.npmjs.org/modify-filename/-/modify-filename-1.1.0.tgz", "integrity": "sha1-mi3sg4Bvuy2XXyK+7IWcoms5OqE=" }, "moment": { - "version": "2.27.0", - "resolved": "https://registry.npmjs.org/moment/-/moment-2.27.0.tgz", - "integrity": "sha512-al0MUK7cpIcglMv3YF13qSgdAIqxHTO7brRtaz3DlSULbqfazqkc5kEjNrLDOM7fsjshoFIihnU8snrP7zUvhQ==" + "version": "2.29.1", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.1.tgz", + "integrity": "sha512-kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ==" }, "move-concurrently": { "version": "1.0.1", - "resolved": "https://registry.npm.taobao.org/move-concurrently/download/move-concurrently-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz", "integrity": "sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=", "dev": true, "requires": { @@ -16290,8 +17127,8 @@ }, "ms": { "version": "2.1.2", - "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.1.2.tgz", - "integrity": "sha1-0J0fNXtEP0kzgqjrPM0YOHKuYAk=" + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "multicast-dns": { "version": "6.2.3", @@ -16305,7 +17142,7 @@ }, "multicast-dns-service-types": { "version": "1.1.0", - "resolved": "https://registry.npm.taobao.org/multicast-dns-service-types/download/multicast-dns-service-types-1.1.0.tgz", + "resolved": "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz", "integrity": "sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=", "dev": true }, @@ -16322,16 +17159,16 @@ "dev": true }, "nan": { - "version": "2.14.1", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.14.1.tgz", - "integrity": "sha512-isWHgVjnFjh2x2yuJ/tj3JbwoHu3UC2dX5G/88Cm24yB6YopVgxvBObDY7n5xW6ExmFhJpSEQqFPvq9zaXc8Jw==", + "version": "2.14.2", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.14.2.tgz", + "integrity": "sha512-M2ufzIiINKCuDfBSAUr1vWQ+vuVcA9kqx8JJUsbQi6yf1uGRyb7HfpdfUr5qLXf3B/t8dPvcjhKMmlfnP47EzQ==", "dev": true, "optional": true }, "nanomatch": { "version": "1.2.13", - "resolved": "https://registry.npm.taobao.org/nanomatch/download/nanomatch-1.2.13.tgz", - "integrity": "sha1-uHqKpPwN6P5r6IiVs4mD/yZb0Rk=", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", "dev": true, "requires": { "arr-diff": "^4.0.0", @@ -16345,22 +17182,36 @@ "regex-not": "^1.0.0", "snapdragon": "^0.8.1", "to-regex": "^3.0.1" - }, - "dependencies": { - "kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npm.taobao.org/kind-of/download/kind-of-6.0.3.tgz", - "integrity": "sha1-B8BQNKbDSfoG4k+jWqdttFgM5N0=", - "dev": true - } } }, "natural-compare": { "version": "1.4.0", - "resolved": "https://registry.npm.taobao.org/natural-compare/download/natural-compare-1.4.0.tgz", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", "dev": true }, + "needle": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/needle/-/needle-2.5.2.tgz", + "integrity": "sha512-LbRIwS9BfkPvNwNHlsA41Q29kL2L/6VaOJ0qisM5lLWsTV3nP15abO5ITL6L81zqFhzjRKDAYjpcBcwM0AVvLQ==", + "dev": true, + "requires": { + "debug": "^3.2.6", + "iconv-lite": "^0.4.4", + "sax": "^1.2.4" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + } + } + }, "negotiator": { "version": "0.6.2", "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", @@ -16375,45 +17226,157 @@ }, "netmask": { "version": "1.0.6", - "resolved": "https://registry.npm.taobao.org/netmask/download/netmask-1.0.6.tgz", + "resolved": "https://registry.npmjs.org/netmask/-/netmask-1.0.6.tgz", "integrity": "sha1-ICl+idhvb2QA8lDZ9Pa0wZRfzTU=" }, "next-tick": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/next-tick/download/next-tick-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz", "integrity": "sha1-yobR/ogoFpsBICCOPchCS524NCw=", "dev": true }, "nice-try": { "version": "1.0.5", - "resolved": "https://registry.npm.taobao.org/nice-try/download/nice-try-1.0.5.tgz?cache=0&sync_timestamp=1584699756095&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fnice-try%2Fdownload%2Fnice-try-1.0.5.tgz", - "integrity": "sha1-ozeKdpbOfSI+iPybdkvX7xCJ42Y=", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", "dev": true }, "no-case": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.3.tgz", - "integrity": "sha512-ehY/mVQCf9BL0gKfsJBvFJen+1V//U+0HQMPrWct40ixE4jnv0bfvxDbWtAHL9EcaPEOJHVVYKoQn1TlZUB8Tw==", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", "dev": true, "requires": { - "lower-case": "^2.0.1", - "tslib": "^1.10.0" + "lower-case": "^2.0.2", + "tslib": "^2.0.3" } }, + "node-abi": { + "version": "2.19.3", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-2.19.3.tgz", + "integrity": "sha512-9xZrlyfvKhWme2EXFKQhZRp1yNWT/uI1luYPr3sFl+H4keYY4xR+1jO7mvTTijIsHf1M+QDe9uWuKeEpLInIlg==", + "dev": true, + "requires": { + "semver": "^5.4.1" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + } + } + }, + "node-addon-api": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-1.7.2.tgz", + "integrity": "sha512-ibPK3iA+vaY1eEjESkQkM0BbCqFOaZMiXRTtdB0u7b4djtY6JnsjvPdUHVMg6xQt3B8fpTTWHI9A+ADjM9frzg==", + "dev": true + }, "node-fetch": { "version": "2.6.1", "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz", "integrity": "sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw==" }, "node-forge": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.9.0.tgz", - "integrity": "sha512-7ASaDa3pD+lJ3WvXFsxekJQelBKRpne+GOVbLbtHYdd7pFspyeuJHnWfLplGf3SwKGbfs/aYl5V/JCIaHVUKKQ==", + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz", + "integrity": "sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==", "dev": true }, + "node-gyp": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-7.1.2.tgz", + "integrity": "sha512-CbpcIo7C3eMu3dL1c3d0xw449fHIGALIJsRP4DDPHpyiW8vcriNY7ubh9TE4zEKfSxscY7PjeFnshE7h75ynjQ==", + "dev": true, + "requires": { + "env-paths": "^2.2.0", + "glob": "^7.1.4", + "graceful-fs": "^4.2.3", + "nopt": "^5.0.0", + "npmlog": "^4.1.2", + "request": "^2.88.2", + "rimraf": "^3.0.2", + "semver": "^7.3.2", + "tar": "^6.0.2", + "which": "^2.0.2" + }, + "dependencies": { + "chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "dev": true + }, + "fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "dev": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "minipass": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.3.tgz", + "integrity": "sha512-Mgd2GdMVzY+x3IJ+oHnVM+KG3lA5c8tnabyJKmHSaG2kAGpudxuOf8ToDkhumF7UzME7DecbQE9uOZhNm7PuJg==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "dev": true, + "requires": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + } + }, + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true + }, + "nopt": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", + "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", + "dev": true, + "requires": { + "abbrev": "1" + } + }, + "tar": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.0.5.tgz", + "integrity": "sha512-0b4HOimQHj9nXNEAA7zWwMM91Zhhba3pspja6sQbgTpynOJf+bkjBnfybNYzbpLbnwXnbyB4LOREvlyXLkCHSg==", + "dev": true, + "requires": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^3.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + } + } + }, "node-int64": { "version": "0.4.0", - "resolved": "https://registry.npm.taobao.org/node-int64/download/node-int64-0.4.0.tgz", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", "integrity": "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=", "dev": true }, @@ -16459,72 +17422,60 @@ "isarray": "^1.0.0" } }, - "process": { - "version": "0.11.10", - "resolved": "https://registry.npm.taobao.org/process/download/process-0.11.10.tgz", - "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=", - "dev": true - }, "punycode": { "version": "1.4.1", - "resolved": "https://registry.npm.taobao.org/punycode/download/punycode-1.4.1.tgz", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=", "dev": true - }, - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + } + } + }, + "node-loader": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/node-loader/-/node-loader-1.0.2.tgz", + "integrity": "sha512-myxAxpyMR7knjA4Uzwf3gjxaMtxSWj2vpm9o6AYWWxQ1S3XMBNeG2vzYcp/5eW03cBGfgSxyP+wntP8qhBJNhQ==", + "dev": true, + "requires": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "dependencies": { + "json5": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz", + "integrity": "sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==", "dev": true, "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - }, - "dependencies": { - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } + "minimist": "^1.2.5" } }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "util": { - "version": "0.11.1", - "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz", - "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==", + "loader-utils": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz", + "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==", "dev": true, "requires": { - "inherits": "2.0.3" - }, - "dependencies": { - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", - "dev": true - } + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, + "schema-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz", + "integrity": "sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.6", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" } } } }, "node-modules-regexp": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/node-modules-regexp/download/node-modules-regexp-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz", "integrity": "sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=", "dev": true }, @@ -16541,6 +17492,12 @@ "which": "^1.3.0" }, "dependencies": { + "is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=", + "dev": true + }, "semver": { "version": "5.7.1", "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", @@ -16558,16 +17515,61 @@ } } }, + "node-pre-gyp": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.11.0.tgz", + "integrity": "sha512-TwWAOZb0j7e9eGaf9esRx3ZcLaE5tQ2lvYy1pb5IAaG1a2e2Kv5Lms1Y4hpj+ciXJRofIxxlt5haeQ/2ANeE0Q==", + "dev": true, + "requires": { + "detect-libc": "^1.0.2", + "mkdirp": "^0.5.1", + "needle": "^2.2.1", + "nopt": "^4.0.1", + "npm-packlist": "^1.1.6", + "npmlog": "^4.0.2", + "rc": "^1.2.7", + "rimraf": "^2.6.1", + "semver": "^5.3.0", + "tar": "^4" + }, + "dependencies": { + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + } + } + }, "node-releases": { - "version": "1.1.58", - "resolved": "https://registry.npm.taobao.org/node-releases/download/node-releases-1.1.58.tgz?cache=0&sync_timestamp=1591162286391&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fnode-releases%2Fdownload%2Fnode-releases-1.1.58.tgz", - "integrity": "sha1-juIO7zD6YOUnVfzAlC3vWnNP6TU=", + "version": "1.1.67", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.67.tgz", + "integrity": "sha512-V5QF9noGFl3EymEwUYzO+3NTDpGfQB4ve6Qfnzf3UNydMhjQRVPR1DZTuvWiLzaFJYw2fmDwAfnRNEVb64hSIg==", "dev": true }, + "nopt": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-4.0.3.tgz", + "integrity": "sha512-CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5YwtfNftIOMv3DPUhFaxsZMNTQO20Kg==", + "dev": true, + "requires": { + "abbrev": "1", + "osenv": "^0.1.4" + } + }, "normalize-package-data": { "version": "2.5.0", - "resolved": "https://registry.npm.taobao.org/normalize-package-data/download/normalize-package-data-2.5.0.tgz", - "integrity": "sha1-5m2xg4sgDB38IzIl0SyzZSDiNKg=", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", "dev": true, "requires": { "hosted-git-info": "^2.1.4", @@ -16578,31 +17580,27 @@ "dependencies": { "semver": { "version": "5.7.1", - "resolved": "https://registry.npm.taobao.org/semver/download/semver-5.7.1.tgz?cache=0&sync_timestamp=1586886301819&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-5.7.1.tgz", - "integrity": "sha1-qVT5Ma66UI0we78Gnv8MAclhFvc=", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", "dev": true } } }, "normalize-path": { - "version": "2.1.1", - "resolved": "https://registry.npm.taobao.org/normalize-path/download/normalize-path-2.1.1.tgz", - "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", - "dev": true, - "requires": { - "remove-trailing-separator": "^1.0.1" - } + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" }, "normalize-range": { "version": "0.1.2", - "resolved": "https://registry.npm.taobao.org/normalize-range/download/normalize-range-0.1.2.tgz", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=", "dev": true }, "normalize-url": { "version": "2.0.1", - "resolved": "https://registry.npm.taobao.org/normalize-url/download/normalize-url-2.0.1.tgz", - "integrity": "sha1-g1qdoVUfom9w6SMpBpojqmV01+Y=", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-2.0.1.tgz", + "integrity": "sha512-D6MUW4K/VzoJ4rJ01JFKxDrtY1v9wrgzCX5f2qj/lzH1m/lW6MhUZFKerVsnyjOhOsYzI9Kqqak+10l4LvLpMw==", "requires": { "prepend-http": "^2.0.0", "query-string": "^5.0.1", @@ -16611,7 +17609,7 @@ "dependencies": { "sort-keys": { "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/sort-keys/download/sort-keys-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz", "integrity": "sha1-ZYU1WEhh7JfXMNbPQYIuH1ZoQSg=", "requires": { "is-plain-obj": "^1.0.0" @@ -16619,6 +17617,15 @@ } } }, + "npm-bundled": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.1.1.tgz", + "integrity": "sha512-gqkfgGePhTpAEgUsGEgcq1rqPXA+tv/aVBlgEzfXwA1yiUJF7xtEt3CtVwOjNYQOVknDk0F20w58Fnm3EtG0fA==", + "dev": true, + "requires": { + "npm-normalize-package-bin": "^1.0.1" + } + }, "npm-conf": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/npm-conf/-/npm-conf-1.1.3.tgz", @@ -16639,6 +17646,23 @@ } } }, + "npm-normalize-package-bin": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz", + "integrity": "sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==", + "dev": true + }, + "npm-packlist": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.4.8.tgz", + "integrity": "sha512-5+AZgwru5IevF5ZdnFglB5wNlHG1AOOuw28WhUq8/8emhBmLv6jX5by4WJCh7lW0uSYZYS6DXqIsyZVIXRZU9A==", + "dev": true, + "requires": { + "ignore-walk": "^3.0.1", + "npm-bundled": "^1.0.1", + "npm-normalize-package-bin": "^1.0.1" + } + }, "npm-run-all": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/npm-run-all/-/npm-run-all-1.4.0.tgz", @@ -16665,7 +17689,7 @@ }, "npm-run-path": { "version": "2.0.2", - "resolved": "https://registry.npm.taobao.org/npm-run-path/download/npm-run-path-2.0.2.tgz", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", "dev": true, "requires": { @@ -16674,12 +17698,24 @@ "dependencies": { "path-key": { "version": "2.0.1", - "resolved": "https://registry.npm.taobao.org/path-key/download/path-key-2.0.1.tgz?cache=0&sync_timestamp=1574445307008&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fpath-key%2Fdownload%2Fpath-key-2.0.1.tgz", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", "dev": true } } }, + "npmlog": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz", + "integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==", + "dev": true, + "requires": { + "are-we-there-yet": "~1.1.2", + "console-control-strings": "~1.1.0", + "gauge": "~2.7.3", + "set-blocking": "~2.0.0" + } + }, "nth-check": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", @@ -16689,12 +17725,50 @@ "boolbase": "~1.0.0" } }, + "nugget": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/nugget/-/nugget-2.0.1.tgz", + "integrity": "sha1-IBCVpIfhrTYIGzQy+jytpPjQcbA=", + "dev": true, + "requires": { + "debug": "^2.1.3", + "minimist": "^1.1.0", + "pretty-bytes": "^1.0.2", + "progress-stream": "^1.1.0", + "request": "^2.45.0", + "single-line-log": "^1.1.2", + "throttleit": "0.0.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, "num2fraction": { "version": "1.2.2", - "resolved": "https://registry.npm.taobao.org/num2fraction/download/num2fraction-1.2.2.tgz", + "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz", "integrity": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=", "dev": true }, + "number-is-nan": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", + "dev": true + }, "nwsapi": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.0.tgz", @@ -16709,12 +17783,12 @@ }, "object-assign": { "version": "4.1.1", - "resolved": "https://registry.npm.taobao.org/object-assign/download/object-assign-4.1.1.tgz", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" }, "object-copy": { "version": "0.1.0", - "resolved": "https://registry.npm.taobao.org/object-copy/download/object-copy-0.1.0.tgz", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", "dev": true, "requires": { @@ -16725,51 +17799,60 @@ "dependencies": { "define-property": { "version": "0.2.5", - "resolved": "https://registry.npm.taobao.org/define-property/download/define-property-0.2.5.tgz", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", "dev": true, "requires": { "is-descriptor": "^0.1.0" } + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } } } }, "object-hash": { "version": "2.0.3", - "resolved": "https://registry.npm.taobao.org/object-hash/download/object-hash-2.0.3.tgz", - "integrity": "sha1-0S2wROA80so9d8BXDYciWwLh5uo=" + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-2.0.3.tgz", + "integrity": "sha512-JPKn0GMu+Fa3zt3Bmr66JhokJU5BaNBIh4ZeTlaCBzrBsOeXzwcKKAK1tbLiPKgvwmPXsDvvLHoWh5Bm7ofIYg==" }, "object-inspect": { - "version": "1.7.0", - "resolved": "https://registry.npm.taobao.org/object-inspect/download/object-inspect-1.7.0.tgz", - "integrity": "sha1-9Pa9GBrXfwBrXs5gvQtvOY/3Smc=", + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.9.0.tgz", + "integrity": "sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw==", "dev": true }, "object-is": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.2.tgz", - "integrity": "sha512-5lHCz+0uufF6wZ7CRFWJN3hp8Jqblpgve06U5CMQ3f//6iDjPr2PEo9MWCjEssDsa+UZEL4PkFpr+BMop6aKzQ==", + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.4.tgz", + "integrity": "sha512-1ZvAZ4wlF7IyPVOcE1Omikt7UpaFlOQq0HlSti+ZvDH3UiD2brwGMwDbyV43jao2bKJ+4+WdPJHSd7kgzKYVqg==", "dev": true, "requires": { - "define-properties": "^1.1.3", - "es-abstract": "^1.17.5" + "call-bind": "^1.0.0", + "define-properties": "^1.1.3" } }, "object-keys": { "version": "1.1.1", - "resolved": "https://registry.npm.taobao.org/object-keys/download/object-keys-1.1.1.tgz", - "integrity": "sha1-HEfyct8nfzsdrwYWd9nILiMixg4=", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", "dev": true }, "object-path": { "version": "0.11.4", - "resolved": "https://registry.npm.taobao.org/object-path/download/object-path-0.11.4.tgz", + "resolved": "https://registry.npmjs.org/object-path/-/object-path-0.11.4.tgz", "integrity": "sha1-NwrnUvvzfePqcKhhwju6iRVpGUk=", "dev": true }, "object-visit": { "version": "1.0.1", - "resolved": "https://registry.npm.taobao.org/object-visit/download/object-visit-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", "dev": true, "requires": { @@ -16777,53 +17860,55 @@ } }, "object.assign": { - "version": "4.1.0", - "resolved": "https://registry.npm.taobao.org/object.assign/download/object.assign-4.1.0.tgz", - "integrity": "sha1-lovxEA15Vrs8oIbwBvhGs7xACNo=", + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", + "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", "dev": true, "requires": { - "define-properties": "^1.1.2", - "function-bind": "^1.1.1", - "has-symbols": "^1.0.0", - "object-keys": "^1.0.11" + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" } }, "object.entries": { - "version": "1.1.2", - "resolved": "https://registry.npm.taobao.org/object.entries/download/object.entries-1.1.2.tgz", - "integrity": "sha1-vHPwCstra7FsIDQ0sQ+afnl9Ot0=", + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.3.tgz", + "integrity": "sha512-ym7h7OZebNS96hn5IJeyUmaWhaSM4SVtAPPfNLQEI2MYWCO2egsITb9nab2+i/Pwibx+R0mtn+ltKJXRSeTMGg==", "dev": true, "requires": { + "call-bind": "^1.0.0", "define-properties": "^1.1.3", - "es-abstract": "^1.17.5", + "es-abstract": "^1.18.0-next.1", "has": "^1.0.3" } }, "object.fromentries": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.2.tgz", - "integrity": "sha512-r3ZiBH7MQppDJVLx6fhD618GKNG40CZYH9wgwdhKxBDDbQgjeWGGd4AtkZad84d291YxvWe7bJGuE65Anh0dxQ==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.3.tgz", + "integrity": "sha512-IDUSMXs6LOSJBWE++L0lzIbSqHl9KDCfff2x/JSEIDtEUavUnyMYC2ZGay/04Zq4UT8lvd4xNhU4/YHKibAOlw==", "dev": true, "requires": { + "call-bind": "^1.0.0", "define-properties": "^1.1.3", - "es-abstract": "^1.17.0-next.1", - "function-bind": "^1.1.1", + "es-abstract": "^1.18.0-next.1", "has": "^1.0.3" } }, "object.getownpropertydescriptors": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.0.tgz", - "integrity": "sha512-Z53Oah9A3TdLoblT7VKJaTDdXdT+lQO+cNpKVnya5JDe9uLvzu1YyY1yFDFrcxrlRgWrEFH0jJtD/IbuwjcEVg==", + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.1.tgz", + "integrity": "sha512-6DtXgZ/lIZ9hqx4GtZETobXLR/ZLaa0aqV0kzbn80Rf8Z2e/XFnhA0I7p07N2wH8bBBltr2xQPi6sbKWAY2Eng==", "dev": true, "requires": { + "call-bind": "^1.0.0", "define-properties": "^1.1.3", - "es-abstract": "^1.17.0-next.1" + "es-abstract": "^1.18.0-next.1" } }, "object.pick": { "version": "1.3.0", - "resolved": "https://registry.npm.taobao.org/object.pick/download/object.pick-1.3.0.tgz", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", "dev": true, "requires": { @@ -16831,14 +17916,14 @@ } }, "object.values": { - "version": "1.1.1", - "resolved": "https://registry.npm.taobao.org/object.values/download/object.values-1.1.1.tgz", - "integrity": "sha1-aKmezeNWt+kpWjxeDOMdyMlT3l4=", + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.2.tgz", + "integrity": "sha512-MYC0jvJopr8EK6dPBiO8Nb9mvjdypOachO5REGk6MXzujbBrAisKo3HmdEI6kZDL6fC31Mwee/5YbtMebixeag==", "dev": true, "requires": { + "call-bind": "^1.0.0", "define-properties": "^1.1.3", - "es-abstract": "^1.17.0-next.1", - "function-bind": "^1.1.1", + "es-abstract": "^1.18.0-next.1", "has": "^1.0.3" } }, @@ -16848,12 +17933,6 @@ "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", "dev": true }, - "octokit-pagination-methods": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/octokit-pagination-methods/-/octokit-pagination-methods-1.1.0.tgz", - "integrity": "sha512-fZ4qZdQ2nxJvtcasX7Ghl+WlWS/d9IgnBIwFZXVNNZUmzpno91SX5bc5vuxiuKoCtK78XxGGNuSCrDC7xYB3OQ==", - "dev": true - }, "omggif": { "version": "1.0.10", "resolved": "https://registry.npmjs.org/omggif/-/omggif-1.0.10.tgz", @@ -16861,7 +17940,7 @@ }, "on-finished": { "version": "2.3.0", - "resolved": "https://registry.npm.taobao.org/on-finished/download/on-finished-2.3.0.tgz", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", "dev": true, "requires": { @@ -16876,7 +17955,7 @@ }, "once": { "version": "1.4.0", - "resolved": "https://registry.npm.taobao.org/once/download/once-1.4.0.tgz", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", "requires": { "wrappy": "1" @@ -16900,33 +17979,30 @@ } }, "open": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/open/-/open-7.1.0.tgz", - "integrity": "sha512-lLPI5KgOwEYCDKXf4np7y1PBEkj7HYIyP2DY8mVDRnx0VIIu6bNrRB0R66TuO7Mack6EnTNLm4uvcl1UoklTpA==", + "version": "7.3.0", + "resolved": "https://registry.npmjs.org/open/-/open-7.3.0.tgz", + "integrity": "sha512-mgLwQIx2F/ye9SmbrUkurZCnkoXyXyu9EbHtJZrICjVAJfyMArdHp3KkixGdZx1ZHFPNIwl0DDM1dFFqXbTLZw==", "dev": true, "requires": { "is-docker": "^2.0.0", "is-wsl": "^2.1.1" - }, - "dependencies": { - "is-wsl": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", - "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", - "dev": true, - "requires": { - "is-docker": "^2.0.0" - } - } } }, "opn": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/opn/-/opn-5.5.0.tgz", - "integrity": "sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==", + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/opn/-/opn-5.4.0.tgz", + "integrity": "sha512-YF9MNdVy/0qvJvDtunAOzFw9iasOQHpVthTCvGzxt61Il64AYSGdK+rYwld7NAfk9qJ7dt+hymBNSc9LNYS+Sw==", "dev": true, "requires": { "is-wsl": "^1.1.0" + }, + "dependencies": { + "is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=", + "dev": true + } } }, "optimist": { @@ -16949,8 +18025,8 @@ }, "optionator": { "version": "0.8.3", - "resolved": "https://registry.npm.taobao.org/optionator/download/optionator-0.8.3.tgz?cache=0&sync_timestamp=1585966209412&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Foptionator%2Fdownload%2Foptionator-0.8.3.tgz", - "integrity": "sha1-hPodA2/p08fiHZmIS2ARZ+yPtJU=", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", + "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", "requires": { "deep-is": "~0.1.3", "fast-levenshtein": "~2.0.6", @@ -16960,10 +18036,26 @@ "word-wrap": "~1.2.3" } }, + "ora": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ora/-/ora-5.1.0.tgz", + "integrity": "sha512-9tXIMPvjZ7hPTbk8DFq1f7Kow/HU/pQYB60JbNq+QnGwcyhWVZaQ4hM9zQDEsPxw/muLpgiHSaumUZxCAmod/w==", + "dev": true, + "requires": { + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.4.0", + "is-interactive": "^1.0.0", + "log-symbols": "^4.0.0", + "mute-stream": "0.0.8", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" + } + }, "original": { "version": "1.0.2", - "resolved": "https://registry.npm.taobao.org/original/download/original-1.0.2.tgz", - "integrity": "sha1-5EKmHP/hxf0gpl8yYcJmY7MD8l8=", + "resolved": "https://registry.npmjs.org/original/-/original-1.0.2.tgz", + "integrity": "sha512-hyBVl6iqqUOJ8FqRe+l/gS8H+kKYjrEndd5Pm1MfBtsEKA038HkkdbAl/72EAXGyonD/PFsvmVG+EvcIpliMBg==", "dev": true, "requires": { "url-parse": "^1.4.3" @@ -16971,34 +18063,46 @@ }, "os-browserify": { "version": "0.3.0", - "resolved": "https://registry.npm.taobao.org/os-browserify/download/os-browserify-0.3.0.tgz", + "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", "integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=", "dev": true }, - "os-name": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/os-name/-/os-name-3.1.0.tgz", - "integrity": "sha512-h8L+8aNjNcMpo/mAIBPn5PXCM16iyPGjHNWo6U1YO8sJTMHtEtyczI6QJnLoplswm6goopQkqc7OAnjhWcugVg==", - "dev": true, - "requires": { - "macos-release": "^2.2.0", - "windows-release": "^3.1.0" - } + "os-homedir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", + "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=", + "dev": true }, "os-tmpdir": { "version": "1.0.2", - "resolved": "https://registry.npm.taobao.org/os-tmpdir/download/os-tmpdir-1.0.2.tgz", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", "dev": true }, + "osenv": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz", + "integrity": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==", + "dev": true, + "requires": { + "os-homedir": "^1.0.0", + "os-tmpdir": "^1.0.0" + } + }, "p-cancelable": { "version": "0.4.1", - "resolved": "https://registry.npm.taobao.org/p-cancelable/download/p-cancelable-0.4.1.tgz", - "integrity": "sha1-NfNj1n1SCByNlYXje8zrfgu8sqA=" + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.4.1.tgz", + "integrity": "sha512-HNa1A8LvB1kie7cERyy21VNeHb2CWJJYqyyC2o3klWFfMGlFmWv2Z7sFgZH8ZiaYL95ydToKTFVXgMV/Os0bBQ==" + }, + "p-defer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz", + "integrity": "sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=", + "dev": true }, "p-each-series": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/p-each-series/download/p-each-series-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/p-each-series/-/p-each-series-1.0.0.tgz", "integrity": "sha1-kw89Et0fUOdDRFeiLNbwSsatf3E=", "dev": true, "requires": { @@ -17007,38 +18111,38 @@ }, "p-event": { "version": "2.3.1", - "resolved": "https://registry.npm.taobao.org/p-event/download/p-event-2.3.1.tgz?cache=0&sync_timestamp=1591424006800&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fp-event%2Fdownload%2Fp-event-2.3.1.tgz", - "integrity": "sha1-WWJ57xaassPgyuiMHPuwgHmZPvY=", + "resolved": "https://registry.npmjs.org/p-event/-/p-event-2.3.1.tgz", + "integrity": "sha512-NQCqOFhbpVTMX4qMe8PF8lbGtzZ+LCiN7pcNrb/413Na7+TRoe1xkKUzuWa/YEJdGQ0FvKtj35EEbDoVPO2kbA==", "requires": { "p-timeout": "^2.0.1" } }, "p-finally": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/p-finally/download/p-finally-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=" }, "p-is-promise": { "version": "1.1.0", - "resolved": "https://registry.npm.taobao.org/p-is-promise/download/p-is-promise-1.1.0.tgz", + "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-1.1.0.tgz", "integrity": "sha1-nJRWmJ6fZYgBewQ01WCXZ1w9oF4=" }, "p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npm.taobao.org/p-limit/download/p-limit-2.3.0.tgz", - "integrity": "sha1-PdM8ZHohT9//2DWTPrCG2g3CHbE=", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", "dev": true, "requires": { - "p-try": "^2.0.0" + "p-try": "^1.0.0" } }, "p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npm.taobao.org/p-locate/download/p-locate-3.0.0.tgz", - "integrity": "sha1-Mi1poFwCZLJZl9n0DNiokasAZKQ=", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", "dev": true, "requires": { - "p-limit": "^2.0.0" + "p-limit": "^1.1.0" } }, "p-map": { @@ -17052,7 +18156,7 @@ }, "p-reduce": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/p-reduce/download/p-reduce-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/p-reduce/-/p-reduce-1.0.0.tgz", "integrity": "sha1-GMKw3ZNqRpClKfgjH1ig/bakffo=", "dev": true }, @@ -17067,16 +18171,16 @@ }, "p-timeout": { "version": "2.0.1", - "resolved": "https://registry.npm.taobao.org/p-timeout/download/p-timeout-2.0.1.tgz", - "integrity": "sha1-2N0ZeVldLcATnh/ka4tkbLPN8Dg=", + "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-2.0.1.tgz", + "integrity": "sha512-88em58dDVB/KzPEx1X0N3LwFfYZPyDc4B6eF38M1rk9VTZMbxXXgjugz8mmwpS9Ox4BDZ+t6t3QP5+/gazweIA==", "requires": { "p-finally": "^1.0.0" } }, "p-try": { - "version": "2.2.0", - "resolved": "https://registry.npm.taobao.org/p-try/download/p-try-2.2.0.tgz", - "integrity": "sha1-yyhoVA4xPWHeWPr741zpAE1VQOY=", + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", "dev": true }, "pac-proxy-agent": { @@ -17214,54 +18318,22 @@ "cyclist": "^1.0.1", "inherits": "^2.0.3", "readable-stream": "^2.1.5" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } } }, "param-case": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.3.tgz", - "integrity": "sha512-VWBVyimc1+QrzappRs7waeN2YmoZFCGXWASRYX1/rGHtXqEcrGEIDm+jqIwFa2fRXNgQEwrxaYuIrX0WcAguTA==", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", "dev": true, "requires": { - "dot-case": "^3.0.3", - "tslib": "^1.10.0" + "dot-case": "^3.0.4", + "tslib": "^2.0.3" } }, "parent-module": { "version": "1.0.1", - "resolved": "https://registry.npm.taobao.org/parent-module/download/parent-module-1.0.1.tgz", - "integrity": "sha1-aR0nCeeMefrjoVZiJFLQB2LKqqI=", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", "dev": true, "requires": { "callsites": "^3.0.0" @@ -17280,14 +18352,23 @@ "safe-buffer": "^5.1.1" } }, + "parse-author": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/parse-author/-/parse-author-2.0.0.tgz", + "integrity": "sha1-00YL8d3Q367tQtp1QkLmX7aEqB8=", + "dev": true, + "requires": { + "author-regex": "^1.0.0" + } + }, "parse-bmfont-ascii": { "version": "1.0.6", - "resolved": "https://registry.npm.taobao.org/parse-bmfont-ascii/download/parse-bmfont-ascii-1.0.6.tgz", + "resolved": "https://registry.npmjs.org/parse-bmfont-ascii/-/parse-bmfont-ascii-1.0.6.tgz", "integrity": "sha1-Eaw8P/WPfCAgqyJ2kHkQjU36AoU=" }, "parse-bmfont-binary": { "version": "1.0.6", - "resolved": "https://registry.npm.taobao.org/parse-bmfont-binary/download/parse-bmfont-binary-1.0.6.tgz", + "resolved": "https://registry.npmjs.org/parse-bmfont-binary/-/parse-bmfont-binary-1.0.6.tgz", "integrity": "sha1-0Di0dtPp3Z2x4RoLDlOiJ5K2kAY=" }, "parse-bmfont-xml": { @@ -17305,21 +18386,35 @@ "integrity": "sha512-QhhZ+DCCit2Coi2vmAKbq5RGTRcQUOE2+REgv8vdyu7MnYx2eZztegqtTx99TZ86GTIwqiy3+4nQTWZ2tgmdCA==" }, "parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npm.taobao.org/parse-json/download/parse-json-4.0.0.tgz", - "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", + "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", "dev": true, "requires": { - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1" + "error-ex": "^1.2.0" } }, - "parse5": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-4.0.0.tgz", - "integrity": "sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==", + "parse-ms": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/parse-ms/-/parse-ms-2.1.0.tgz", + "integrity": "sha512-kHt7kzLoS9VBZfUsiKjv43mr91ea+U05EyKkEtqp7vNbHxmaVuEqN7XxeEVnGrMtYOAxGrDElSi96K7EgO1zCA==", "dev": true }, + "parse-passwd": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", + "integrity": "sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=", + "dev": true + }, + "parse5": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-3.0.3.tgz", + "integrity": "sha512-rgO9Zg5LLLkfJF9E6CCmXlSE4UVceloys8JrFqCcHloC3usd/kJCyPDwH2SOlzix2j3xaP9sUX3e8+kvkuleAA==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, "parseurl": { "version": "1.3.3", "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", @@ -17327,18 +18422,18 @@ "dev": true }, "pascal-case": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.1.tgz", - "integrity": "sha512-XIeHKqIrsquVTQL2crjq3NfJUxmdLasn3TYOU0VBM+UX2a6ztAWBlJQBePLGY7VHW8+2dRadeIPK5+KImwTxQA==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", "dev": true, "requires": { - "no-case": "^3.0.3", - "tslib": "^1.10.0" + "no-case": "^3.0.4", + "tslib": "^2.0.3" } }, "pascalcase": { "version": "0.1.1", - "resolved": "https://registry.npm.taobao.org/pascalcase/download/pascalcase-0.1.1.tgz", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=", "dev": true }, @@ -17350,47 +18445,47 @@ }, "path-dirname": { "version": "1.0.2", - "resolved": "https://registry.npm.taobao.org/path-dirname/download/path-dirname-1.0.2.tgz", + "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=", "dev": true }, "path-exists": { "version": "4.0.0", - "resolved": "https://registry.npm.taobao.org/path-exists/download/path-exists-4.0.0.tgz", - "integrity": "sha1-UTvb4tO5XXdi6METfvoZXGxhtbM=" + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" }, "path-is-absolute": { "version": "1.0.1", - "resolved": "https://registry.npm.taobao.org/path-is-absolute/download/path-is-absolute-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" }, "path-is-inside": { "version": "1.0.2", - "resolved": "https://registry.npm.taobao.org/path-is-inside/download/path-is-inside-1.0.2.tgz", + "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=", "dev": true }, "path-key": { "version": "3.1.1", - "resolved": "https://registry.npm.taobao.org/path-key/download/path-key-3.1.1.tgz?cache=0&sync_timestamp=1574445307008&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fpath-key%2Fdownload%2Fpath-key-3.1.1.tgz", - "integrity": "sha1-WB9q3mWMu6ZaDTOA3ndTKVBU83U=", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", "dev": true }, "path-parse": { "version": "1.0.6", - "resolved": "https://registry.npm.taobao.org/path-parse/download/path-parse-1.0.6.tgz", - "integrity": "sha1-1i27VnlAXXLEc37FhgDp3c8G0kw=", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", + "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==", "dev": true }, "path-to-regexp": { "version": "0.1.7", - "resolved": "https://registry.npm.taobao.org/path-to-regexp/download/path-to-regexp-0.1.7.tgz", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=", "dev": true }, "path-type": { "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/path-type/download/path-type-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz", "integrity": "sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM=", "dev": true, "requires": { @@ -17399,7 +18494,7 @@ "dependencies": { "pify": { "version": "2.3.0", - "resolved": "https://registry.npm.taobao.org/pify/download/pify-2.3.0.tgz", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", "dev": true } @@ -17429,12 +18524,12 @@ }, "pend": { "version": "1.2.0", - "resolved": "https://registry.npm.taobao.org/pend/download/pend-1.2.0.tgz", + "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", "integrity": "sha1-elfrVQpng/kRUzH89GY9XI4AelA=" }, "performance-now": { "version": "2.1.0", - "resolved": "https://registry.npm.taobao.org/performance-now/download/performance-now-2.1.0.tgz", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=", "dev": true }, @@ -17450,17 +18545,17 @@ }, "pify": { "version": "4.0.1", - "resolved": "https://registry.npm.taobao.org/pify/download/pify-4.0.1.tgz", - "integrity": "sha1-SyzSXFDVmHNcUCkiJP2MbfQeMjE=" + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" }, "pinkie": { "version": "2.0.4", - "resolved": "https://registry.npm.taobao.org/pinkie/download/pinkie-2.0.4.tgz", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=" }, "pinkie-promise": { "version": "2.0.1", - "resolved": "https://registry.npm.taobao.org/pinkie-promise/download/pinkie-promise-2.0.1.tgz", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", "requires": { "pinkie": "^2.0.0" @@ -17477,75 +18572,69 @@ }, "pixelmatch": { "version": "4.0.2", - "resolved": "https://registry.npm.taobao.org/pixelmatch/download/pixelmatch-4.0.2.tgz", + "resolved": "https://registry.npmjs.org/pixelmatch/-/pixelmatch-4.0.2.tgz", "integrity": "sha1-j0fc7FARtHe2fbA8JDvB8wheiFQ=", "requires": { "pngjs": "^3.0.0" } }, "pkg-dir": { - "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/pkg-dir/download/pkg-dir-2.0.0.tgz", - "integrity": "sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", "dev": true, "requires": { - "find-up": "^2.1.0" + "find-up": "^4.0.0" }, "dependencies": { "find-up": { - "version": "2.1.0", - "resolved": "https://registry.npm.taobao.org/find-up/download/find-up-2.1.0.tgz", - "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", "dev": true, "requires": { - "locate-path": "^2.0.0" + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" } }, "locate-path": { - "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/locate-path/download/locate-path-2.0.0.tgz", - "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "dev": true, "requires": { - "p-locate": "^2.0.0", - "path-exists": "^3.0.0" + "p-locate": "^4.1.0" } }, "p-limit": { - "version": "1.3.0", - "resolved": "https://registry.npm.taobao.org/p-limit/download/p-limit-1.3.0.tgz", - "integrity": "sha1-uGvV8MJWkJEcdZD8v8IBDVSzzLg=", + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, "requires": { - "p-try": "^1.0.0" + "p-try": "^2.0.0" } }, "p-locate": { - "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/p-locate/download/p-locate-2.0.0.tgz", - "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "dev": true, "requires": { - "p-limit": "^1.1.0" + "p-limit": "^2.2.0" } }, "p-try": { - "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/p-try/download/p-try-1.0.0.tgz", - "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", - "dev": true - }, - "path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npm.taobao.org/path-exists/download/path-exists-3.0.0.tgz", - "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", "dev": true } } }, "pkg-up": { "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/pkg-up/download/pkg-up-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-2.0.0.tgz", "integrity": "sha1-yBmscoBZpGHKscOImivjxJoATX8=", "dev": true, "requires": { @@ -17554,51 +18643,30 @@ "dependencies": { "find-up": { "version": "2.1.0", - "resolved": "https://registry.npm.taobao.org/find-up/download/find-up-2.1.0.tgz", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", "dev": true, "requires": { "locate-path": "^2.0.0" } - }, - "locate-path": { - "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/locate-path/download/locate-path-2.0.0.tgz", - "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", - "dev": true, - "requires": { - "p-locate": "^2.0.0", - "path-exists": "^3.0.0" - } - }, - "p-limit": { - "version": "1.3.0", - "resolved": "https://registry.npm.taobao.org/p-limit/download/p-limit-1.3.0.tgz", - "integrity": "sha1-uGvV8MJWkJEcdZD8v8IBDVSzzLg=", - "dev": true, - "requires": { - "p-try": "^1.0.0" - } - }, - "p-locate": { - "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/p-locate/download/p-locate-2.0.0.tgz", - "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", - "dev": true, - "requires": { - "p-limit": "^1.1.0" - } - }, - "p-try": { - "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/p-try/download/p-try-1.0.0.tgz", - "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", - "dev": true - }, - "path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npm.taobao.org/path-exists/download/path-exists-3.0.0.tgz", - "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + } + } + }, + "plist": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/plist/-/plist-3.0.1.tgz", + "integrity": "sha512-GpgvHHocGRyQm74b6FWEZZVRroHKE1I0/BTjAmySaohK+cUn+hZpbqXkc3KWgW3gQYkqcQej35FohcT0FRlkRQ==", + "dev": true, + "requires": { + "base64-js": "^1.2.3", + "xmlbuilder": "^9.0.7", + "xmldom": "0.1.x" + }, + "dependencies": { + "xmlbuilder": { + "version": "9.0.7", + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-9.0.7.tgz", + "integrity": "sha1-Ey7mPS7FVlxVfiD0wi35rKaGsQ0=", "dev": true } } @@ -17656,9 +18724,9 @@ } }, "debug": { - "version": "3.2.6", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", - "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, "requires": { "ms": "^2.1.1" @@ -17668,14 +18736,14 @@ }, "posix-character-classes": { "version": "0.1.1", - "resolved": "https://registry.npm.taobao.org/posix-character-classes/download/posix-character-classes-0.1.1.tgz", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=", "dev": true }, "postcss": { - "version": "7.0.32", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.32.tgz", - "integrity": "sha512-03eXong5NLnNCD05xscnGKGDZ98CyzoqPSMjOe6SuoQY7Z2hIj0Ld1g/O/UQRuOle2aRtiIRDg9tDcTGAkLfKw==", + "version": "7.0.35", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.35.tgz", + "integrity": "sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==", "dev": true, "requires": { "chalk": "^2.4.2", @@ -17683,6 +18751,58 @@ "supports-color": "^6.1.0" }, "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, "supports-color": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", @@ -17714,9 +18834,9 @@ } }, "postcss-calc": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-7.0.3.tgz", - "integrity": "sha512-IB/EAEmZhIMEIhG7Ov4x+l47UaXOS1n2f4FBUk/aKllQhtSCxWhTzn0nJgkqN7fo/jcWySvWTSB6Syk9L+31bA==", + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-7.0.5.tgz", + "integrity": "sha512-1tKHutbGtLtEZF6PT4JSihCHfIVldU72mZ8SdZHIYriIZ9fh9k9aWSppaT8rHsyI3dX+KSR+W+Ix9BMY3AODrg==", "dev": true, "requires": { "postcss": "^7.0.27", @@ -17789,36 +18909,6 @@ "postcss-value-parser": "^3.0.0" }, "dependencies": { - "browserslist": { - "version": "4.14.0", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.14.0.tgz", - "integrity": "sha512-pUsXKAF2lVwhmtpeA3LJrZ76jXuusrNyhduuQs7CDFf9foT4Y38aQOserd2lMe5DSSrjf3fx34oHwryuvxAUgQ==", - "dev": true, - "requires": { - "caniuse-lite": "^1.0.30001111", - "electron-to-chromium": "^1.3.523", - "escalade": "^3.0.2", - "node-releases": "^1.1.60" - } - }, - "caniuse-lite": { - "version": "1.0.30001114", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001114.tgz", - "integrity": "sha512-ml/zTsfNBM+T1+mjglWRPgVsu2L76GAaADKX5f4t0pbhttEp0WMawJsHDYlFkVZkoA+89uvBRrVrEE4oqenzXQ==", - "dev": true - }, - "electron-to-chromium": { - "version": "1.3.533", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.533.tgz", - "integrity": "sha512-YqAL+NXOzjBnpY+dcOKDlZybJDCOzgsq4koW3fvyty/ldTmsb4QazZpOWmVvZ2m0t5jbBf7L0lIGU3BUipwG+A==", - "dev": true - }, - "node-releases": { - "version": "1.1.60", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.60.tgz", - "integrity": "sha512-gsO4vjEdQaTusZAEebUWp2a5d7dF5DYoIpDG7WySnk7BuZDW+GPpHXoXXuYawRBr/9t5q54tirPz79kFIWg4dA==", - "dev": true - }, "postcss-value-parser": { "version": "3.3.1", "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", @@ -18006,9 +19096,9 @@ } }, "postcss-font-variant": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-4.0.0.tgz", - "integrity": "sha512-M8BFYKOvCrI2aITzDad7kWuXXTm0YhGdP9Q8HanmN4EF1Hmcgs1KK5rSHylt/lUJe8yLxiSwWAHdScoEiIxztg==", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-4.0.1.tgz", + "integrity": "sha512-I3ADQSTNtLTTd8uxZhtSOrTCQ9G4qUVKPjHiDk0bV75QSxXjVWiJVJ2VLdspGUi9fbW9BcjKJoRvxAH1pckqmA==", "dev": true, "requires": { "postcss": "^7.0.2" @@ -18055,13 +19145,53 @@ } }, "postcss-load-config": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-2.1.0.tgz", - "integrity": "sha512-4pV3JJVPLd5+RueiVVB+gFOAa7GWc25XQcMp86Zexzke69mKf6Nx9LRcQywdz7yZI9n1udOxmLuAwTBypypF8Q==", + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-2.1.2.tgz", + "integrity": "sha512-/rDeGV6vMUo3mwJZmeHfEDvwnTKKqQ0S7OHUi/kJvvtx3aWtyWG2/0ZWnzCt2keEclwN6Tf0DST2v9kITdOKYw==", "dev": true, "requires": { "cosmiconfig": "^5.0.0", "import-cwd": "^2.0.0" + }, + "dependencies": { + "cosmiconfig": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", + "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", + "dev": true, + "requires": { + "import-fresh": "^2.0.0", + "is-directory": "^0.3.1", + "js-yaml": "^3.13.1", + "parse-json": "^4.0.0" + } + }, + "import-fresh": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", + "integrity": "sha1-2BNVwVYS04bGH53dOSLUMEgipUY=", + "dev": true, + "requires": { + "caller-path": "^2.0.0", + "resolve-from": "^3.0.0" + } + }, + "parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "dev": true, + "requires": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + } + }, + "resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", + "dev": true + } } }, "postcss-loader": { @@ -18074,19 +19204,6 @@ "postcss": "^7.0.0", "postcss-load-config": "^2.0.0", "schema-utils": "^1.0.0" - }, - "dependencies": { - "schema-utils": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", - "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", - "dev": true, - "requires": { - "ajv": "^6.1.0", - "ajv-errors": "^1.0.0", - "ajv-keywords": "^3.1.0" - } - } } }, "postcss-logical": { @@ -18141,36 +19258,6 @@ "vendors": "^1.0.0" }, "dependencies": { - "browserslist": { - "version": "4.14.0", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.14.0.tgz", - "integrity": "sha512-pUsXKAF2lVwhmtpeA3LJrZ76jXuusrNyhduuQs7CDFf9foT4Y38aQOserd2lMe5DSSrjf3fx34oHwryuvxAUgQ==", - "dev": true, - "requires": { - "caniuse-lite": "^1.0.30001111", - "electron-to-chromium": "^1.3.523", - "escalade": "^3.0.2", - "node-releases": "^1.1.60" - } - }, - "caniuse-lite": { - "version": "1.0.30001114", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001114.tgz", - "integrity": "sha512-ml/zTsfNBM+T1+mjglWRPgVsu2L76GAaADKX5f4t0pbhttEp0WMawJsHDYlFkVZkoA+89uvBRrVrEE4oqenzXQ==", - "dev": true - }, - "electron-to-chromium": { - "version": "1.3.533", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.533.tgz", - "integrity": "sha512-YqAL+NXOzjBnpY+dcOKDlZybJDCOzgsq4koW3fvyty/ldTmsb4QazZpOWmVvZ2m0t5jbBf7L0lIGU3BUipwG+A==", - "dev": true - }, - "node-releases": { - "version": "1.1.60", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.60.tgz", - "integrity": "sha512-gsO4vjEdQaTusZAEebUWp2a5d7dF5DYoIpDG7WySnk7BuZDW+GPpHXoXXuYawRBr/9t5q54tirPz79kFIWg4dA==", - "dev": true - }, "postcss-selector-parser": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", @@ -18236,36 +19323,6 @@ "uniqs": "^2.0.0" }, "dependencies": { - "browserslist": { - "version": "4.14.0", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.14.0.tgz", - "integrity": "sha512-pUsXKAF2lVwhmtpeA3LJrZ76jXuusrNyhduuQs7CDFf9foT4Y38aQOserd2lMe5DSSrjf3fx34oHwryuvxAUgQ==", - "dev": true, - "requires": { - "caniuse-lite": "^1.0.30001111", - "electron-to-chromium": "^1.3.523", - "escalade": "^3.0.2", - "node-releases": "^1.1.60" - } - }, - "caniuse-lite": { - "version": "1.0.30001114", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001114.tgz", - "integrity": "sha512-ml/zTsfNBM+T1+mjglWRPgVsu2L76GAaADKX5f4t0pbhttEp0WMawJsHDYlFkVZkoA+89uvBRrVrEE4oqenzXQ==", - "dev": true - }, - "electron-to-chromium": { - "version": "1.3.533", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.533.tgz", - "integrity": "sha512-YqAL+NXOzjBnpY+dcOKDlZybJDCOzgsq4koW3fvyty/ldTmsb4QazZpOWmVvZ2m0t5jbBf7L0lIGU3BUipwG+A==", - "dev": true - }, - "node-releases": { - "version": "1.1.60", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.60.tgz", - "integrity": "sha512-gsO4vjEdQaTusZAEebUWp2a5d7dF5DYoIpDG7WySnk7BuZDW+GPpHXoXXuYawRBr/9t5q54tirPz79kFIWg4dA==", - "dev": true - }, "postcss-value-parser": { "version": "3.3.1", "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", @@ -18363,34 +19420,17 @@ }, "dependencies": { "browserslist": { - "version": "4.14.0", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.14.0.tgz", - "integrity": "sha512-pUsXKAF2lVwhmtpeA3LJrZ76jXuusrNyhduuQs7CDFf9foT4Y38aQOserd2lMe5DSSrjf3fx34oHwryuvxAUgQ==", + "version": "4.16.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.16.0.tgz", + "integrity": "sha512-/j6k8R0p3nxOC6kx5JGAxsnhc9ixaWJfYc+TNTzxg6+ARaESAvQGV7h0uNOB4t+pLQJZWzcrMxXOxjgsCj3dqQ==", "dev": true, "requires": { - "caniuse-lite": "^1.0.30001111", - "electron-to-chromium": "^1.3.523", - "escalade": "^3.0.2", - "node-releases": "^1.1.60" + "caniuse-lite": "^1.0.30001165", + "colorette": "^1.2.1", + "electron-to-chromium": "^1.3.621", + "escalade": "^3.1.1", + "node-releases": "^1.1.67" } - }, - "caniuse-lite": { - "version": "1.0.30001114", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001114.tgz", - "integrity": "sha512-ml/zTsfNBM+T1+mjglWRPgVsu2L76GAaADKX5f4t0pbhttEp0WMawJsHDYlFkVZkoA+89uvBRrVrEE4oqenzXQ==", - "dev": true - }, - "electron-to-chromium": { - "version": "1.3.533", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.533.tgz", - "integrity": "sha512-YqAL+NXOzjBnpY+dcOKDlZybJDCOzgsq4koW3fvyty/ldTmsb4QazZpOWmVvZ2m0t5jbBf7L0lIGU3BUipwG+A==", - "dev": true - }, - "node-releases": { - "version": "1.1.60", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.60.tgz", - "integrity": "sha512-gsO4vjEdQaTusZAEebUWp2a5d7dF5DYoIpDG7WySnk7BuZDW+GPpHXoXXuYawRBr/9t5q54tirPz79kFIWg4dA==", - "dev": true } } }, @@ -18511,36 +19551,6 @@ "postcss-value-parser": "^3.0.0" }, "dependencies": { - "browserslist": { - "version": "4.14.0", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.14.0.tgz", - "integrity": "sha512-pUsXKAF2lVwhmtpeA3LJrZ76jXuusrNyhduuQs7CDFf9foT4Y38aQOserd2lMe5DSSrjf3fx34oHwryuvxAUgQ==", - "dev": true, - "requires": { - "caniuse-lite": "^1.0.30001111", - "electron-to-chromium": "^1.3.523", - "escalade": "^3.0.2", - "node-releases": "^1.1.60" - } - }, - "caniuse-lite": { - "version": "1.0.30001114", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001114.tgz", - "integrity": "sha512-ml/zTsfNBM+T1+mjglWRPgVsu2L76GAaADKX5f4t0pbhttEp0WMawJsHDYlFkVZkoA+89uvBRrVrEE4oqenzXQ==", - "dev": true - }, - "electron-to-chromium": { - "version": "1.3.533", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.533.tgz", - "integrity": "sha512-YqAL+NXOzjBnpY+dcOKDlZybJDCOzgsq4koW3fvyty/ldTmsb4QazZpOWmVvZ2m0t5jbBf7L0lIGU3BUipwG+A==", - "dev": true - }, - "node-releases": { - "version": "1.1.60", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.60.tgz", - "integrity": "sha512-gsO4vjEdQaTusZAEebUWp2a5d7dF5DYoIpDG7WySnk7BuZDW+GPpHXoXXuYawRBr/9t5q54tirPz79kFIWg4dA==", - "dev": true - }, "postcss-value-parser": { "version": "3.3.1", "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", @@ -18686,36 +19696,17 @@ }, "dependencies": { "browserslist": { - "version": "4.14.0", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.14.0.tgz", - "integrity": "sha512-pUsXKAF2lVwhmtpeA3LJrZ76jXuusrNyhduuQs7CDFf9foT4Y38aQOserd2lMe5DSSrjf3fx34oHwryuvxAUgQ==", + "version": "4.16.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.16.0.tgz", + "integrity": "sha512-/j6k8R0p3nxOC6kx5JGAxsnhc9ixaWJfYc+TNTzxg6+ARaESAvQGV7h0uNOB4t+pLQJZWzcrMxXOxjgsCj3dqQ==", "dev": true, "requires": { - "caniuse-lite": "^1.0.30001111", - "electron-to-chromium": "^1.3.523", - "escalade": "^3.0.2", - "node-releases": "^1.1.60" - }, - "dependencies": { - "caniuse-lite": { - "version": "1.0.30001114", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001114.tgz", - "integrity": "sha512-ml/zTsfNBM+T1+mjglWRPgVsu2L76GAaADKX5f4t0pbhttEp0WMawJsHDYlFkVZkoA+89uvBRrVrEE4oqenzXQ==", - "dev": true - } + "caniuse-lite": "^1.0.30001165", + "colorette": "^1.2.1", + "electron-to-chromium": "^1.3.621", + "escalade": "^3.1.1", + "node-releases": "^1.1.67" } - }, - "electron-to-chromium": { - "version": "1.3.533", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.533.tgz", - "integrity": "sha512-YqAL+NXOzjBnpY+dcOKDlZybJDCOzgsq4koW3fvyty/ldTmsb4QazZpOWmVvZ2m0t5jbBf7L0lIGU3BUipwG+A==", - "dev": true - }, - "node-releases": { - "version": "1.1.60", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.60.tgz", - "integrity": "sha512-gsO4vjEdQaTusZAEebUWp2a5d7dF5DYoIpDG7WySnk7BuZDW+GPpHXoXXuYawRBr/9t5q54tirPz79kFIWg4dA==", - "dev": true } } }, @@ -18758,38 +19749,6 @@ "caniuse-api": "^3.0.0", "has": "^1.0.0", "postcss": "^7.0.0" - }, - "dependencies": { - "browserslist": { - "version": "4.14.0", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.14.0.tgz", - "integrity": "sha512-pUsXKAF2lVwhmtpeA3LJrZ76jXuusrNyhduuQs7CDFf9foT4Y38aQOserd2lMe5DSSrjf3fx34oHwryuvxAUgQ==", - "dev": true, - "requires": { - "caniuse-lite": "^1.0.30001111", - "electron-to-chromium": "^1.3.523", - "escalade": "^3.0.2", - "node-releases": "^1.1.60" - } - }, - "caniuse-lite": { - "version": "1.0.30001114", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001114.tgz", - "integrity": "sha512-ml/zTsfNBM+T1+mjglWRPgVsu2L76GAaADKX5f4t0pbhttEp0WMawJsHDYlFkVZkoA+89uvBRrVrEE4oqenzXQ==", - "dev": true - }, - "electron-to-chromium": { - "version": "1.3.533", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.533.tgz", - "integrity": "sha512-YqAL+NXOzjBnpY+dcOKDlZybJDCOzgsq4koW3fvyty/ldTmsb4QazZpOWmVvZ2m0t5jbBf7L0lIGU3BUipwG+A==", - "dev": true - }, - "node-releases": { - "version": "1.1.60", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.60.tgz", - "integrity": "sha512-gsO4vjEdQaTusZAEebUWp2a5d7dF5DYoIpDG7WySnk7BuZDW+GPpHXoXXuYawRBr/9t5q54tirPz79kFIWg4dA==", - "dev": true - } } }, "postcss-reduce-transforms": { @@ -18841,9 +19800,9 @@ } }, "postcss-selector-not": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-4.0.0.tgz", - "integrity": "sha512-W+bkBZRhqJaYN8XAnbbZPLWMvZD1wKTu0UxtFKdhtGjWYmxhkUneoeOhRJKdAE5V7ZTlnbHfCR+6bNwK9e1dTQ==", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-4.0.1.tgz", + "integrity": "sha512-YolvBgInEK5/79C+bdFMyzqTg6pkYqDbzZIST/PDMqa/o3qtXenD05apBG2jLgT0/BQ77d4U2UK12jWpilqMAQ==", "dev": true, "requires": { "balanced-match": "^1.0.0", @@ -18851,14 +19810,15 @@ } }, "postcss-selector-parser": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.2.tgz", - "integrity": "sha512-36P2QR59jDTOAiIkqEprfJDsoNrvwFei3eCqKd1Y0tUsBimsq39BLp7RD+JWny3WgB1zGhJX8XVePwm9k4wdBg==", + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.4.tgz", + "integrity": "sha512-gjMeXBempyInaBqpp8gODmwZ52WaYsVOsfr4L4lDQ7n3ncD6mEyySiDtgzCT+NYC0mmeOLvtsF8iaEf0YT6dBw==", "dev": true, "requires": { "cssesc": "^3.0.0", "indexes-of": "^1.0.1", - "uniq": "^1.0.1" + "uniq": "^1.0.1", + "util-deprecate": "^1.0.2" } }, "postcss-svgo": { @@ -18894,8 +19854,8 @@ }, "postcss-value-parser": { "version": "4.1.0", - "resolved": "https://registry.npm.taobao.org/postcss-value-parser/download/postcss-value-parser-4.1.0.tgz", - "integrity": "sha1-RD9qIM7WSBor2k+oUypuVdeJoss=", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz", + "integrity": "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==", "dev": true }, "postcss-values-parser": { @@ -18911,20 +19871,14 @@ }, "prelude-ls": { "version": "1.1.2", - "resolved": "https://registry.npm.taobao.org/prelude-ls/download/prelude-ls-1.1.2.tgz", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=" }, "prepend-http": { "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/prepend-http/download/prepend-http-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", "integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=" }, - "prettier": { - "version": "1.19.1", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-1.19.1.tgz", - "integrity": "sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew==", - "dev": true - }, "prettier-linter-helpers": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", @@ -18935,19 +19889,23 @@ } }, "pretty-bytes": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.3.0.tgz", - "integrity": "sha512-hjGrh+P926p4R4WbaB6OckyRtO0F0/lQBiT+0gnxjV+5kjPBrfVBFCsCLbMqVQeydvIoouYTCmmEURiH3R1Bdg==", - "dev": true - }, - "pretty-error": { - "version": "2.1.1", - "resolved": "https://registry.npm.taobao.org/pretty-error/download/pretty-error-2.1.1.tgz", - "integrity": "sha1-X0+HyPkeWuPzuoerTPXgOxoX8aM=", + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-1.0.4.tgz", + "integrity": "sha1-CiLoIQYJrTVUL4yNXSFZr/B1HIQ=", "dev": true, "requires": { - "renderkid": "^2.0.1", - "utila": "~0.4" + "get-stdin": "^4.0.1", + "meow": "^3.1.0" + } + }, + "pretty-error": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-2.1.2.tgz", + "integrity": "sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw==", + "dev": true, + "requires": { + "lodash": "^4.17.20", + "renderkid": "^2.0.4" } }, "pretty-format": { @@ -18988,32 +19946,96 @@ }, "color-name": { "version": "1.1.3", - "resolved": "https://registry.npm.taobao.org/color-name/download/color-name-1.1.3.tgz", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", "dev": true } } }, - "private": { - "version": "0.1.8", - "resolved": "https://registry.npm.taobao.org/private/download/private-0.1.8.tgz", - "integrity": "sha1-I4Hts2ifelPWUxkAYPz4ItLzaP8=", - "dev": true + "pretty-ms": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/pretty-ms/-/pretty-ms-7.0.1.tgz", + "integrity": "sha512-973driJZvxiGOQ5ONsFhOF/DtzPMOMtgC11kCpUrPGMTgqp2q/1gwzCquocrN33is0VZ5GFHXZYMM9l6h67v2Q==", + "dev": true, + "requires": { + "parse-ms": "^2.1.0" + } }, "process": { - "version": "0.5.2", - "resolved": "https://registry.npm.taobao.org/process/download/process-0.5.2.tgz", - "integrity": "sha1-FjjYqONML0QKkduVq5rrZ3/Bhc8=" + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=" }, "process-nextick-args": { "version": "2.0.1", - "resolved": "https://registry.npm.taobao.org/process-nextick-args/download/process-nextick-args-2.0.1.tgz", - "integrity": "sha1-eCDZsWEgzFXKmud5JoCufbptf+I=" + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" }, "progress": { "version": "2.0.3", - "resolved": "https://registry.npm.taobao.org/progress/download/progress-2.0.3.tgz", - "integrity": "sha1-foz42PW48jnBvGi+tOt4Vn1XLvg=" + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==" + }, + "progress-stream": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/progress-stream/-/progress-stream-1.2.0.tgz", + "integrity": "sha1-LNPP6jO6OonJwSHsM0er6asSX3c=", + "dev": true, + "requires": { + "speedometer": "~0.1.2", + "through2": "~0.2.3" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true + }, + "object-keys": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-0.4.0.tgz", + "integrity": "sha1-KKaq50KN0sOpLz2V8hM13SBOAzY=", + "dev": true + }, + "readable-stream": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", + "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "dev": true + }, + "through2": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/through2/-/through2-0.2.3.tgz", + "integrity": "sha1-6zKE2k6jEbbMis42U3SKUqvyWj8=", + "dev": true, + "requires": { + "readable-stream": "~1.1.9", + "xtend": "~2.1.1" + } + }, + "xtend": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-2.1.2.tgz", + "integrity": "sha1-bv7MKk2tjmlixJAbM3znuoe10os=", + "dev": true, + "requires": { + "object-keys": "~0.4.0" + } + } + } }, "promise": { "version": "8.1.0", @@ -19026,24 +20048,24 @@ }, "promise-inflight": { "version": "1.0.1", - "resolved": "https://registry.npm.taobao.org/promise-inflight/download/promise-inflight-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=", "dev": true }, "prompts": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.3.2.tgz", - "integrity": "sha512-Q06uKs2CkNYVID0VqwfAl9mipo99zkBv/n2JtWY89Yxa3ZabWSrs0e2KTudKVa3peLUvYXMefDqIleLPVUBZMA==", + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.0.tgz", + "integrity": "sha512-awZAKrk3vN6CroQukBL+R9051a4R3zCZBlJm/HBfrSZ8iTpYix3VX1vU4mveiLpiwmOJT4wokTF9m6HUk4KqWQ==", "dev": true, "requires": { "kleur": "^3.0.3", - "sisteransi": "^1.0.4" + "sisteransi": "^1.0.5" } }, "prop-types": { "version": "15.7.2", - "resolved": "https://registry.npm.taobao.org/prop-types/download/prop-types-15.7.2.tgz", - "integrity": "sha1-UsQedbjIfnK52TYOAga5ncv/psU=", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz", + "integrity": "sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==", "dev": true, "requires": { "loose-envify": "^1.4.0", @@ -19090,7 +20112,7 @@ }, "prr": { "version": "1.0.1", - "resolved": "https://registry.npm.taobao.org/prr/download/prr-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=", "dev": true }, @@ -19133,8 +20155,8 @@ }, "pump": { "version": "3.0.0", - "resolved": "https://registry.npm.taobao.org/pump/download/pump-3.0.0.tgz", - "integrity": "sha1-tKIRaBW94vTh6mAjVOjHVWUQemQ=", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", "requires": { "end-of-stream": "^1.1.0", "once": "^1.3.1" @@ -19165,21 +20187,21 @@ }, "punycode": { "version": "2.1.1", - "resolved": "https://registry.npm.taobao.org/punycode/download/punycode-2.1.1.tgz", - "integrity": "sha1-tYsBCsQMIsVldhbI0sLALHv0eew=", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", "dev": true }, "pupa": { - "version": "2.0.1", - "resolved": "https://registry.npm.taobao.org/pupa/download/pupa-2.0.1.tgz", - "integrity": "sha1-29yf9I/76komoGm2+fersFEAhyY=", + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/pupa/-/pupa-2.1.1.tgz", + "integrity": "sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==", "requires": { "escape-goat": "^2.0.0" } }, "q": { "version": "1.5.1", - "resolved": "https://registry.npm.taobao.org/q/download/q-1.5.1.tgz", + "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", "integrity": "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=", "dev": true }, @@ -19191,8 +20213,8 @@ }, "query-string": { "version": "5.1.1", - "resolved": "https://registry.npm.taobao.org/query-string/download/query-string-5.1.1.tgz?cache=0&sync_timestamp=1591853352562&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fquery-string%2Fdownload%2Fquery-string-5.1.1.tgz", - "integrity": "sha1-p4wBK3HBfgXy4/ojGd0zBoLvs8s=", + "resolved": "https://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz", + "integrity": "sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==", "requires": { "decode-uri-component": "^0.2.0", "object-assign": "^4.1.0", @@ -19201,20 +20223,26 @@ }, "querystring": { "version": "0.2.0", - "resolved": "https://registry.npm.taobao.org/querystring/download/querystring-0.2.0.tgz", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=", "dev": true }, "querystring-es3": { "version": "0.2.1", - "resolved": "https://registry.npm.taobao.org/querystring-es3/download/querystring-es3-0.2.1.tgz", + "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=", "dev": true }, "querystringify": { - "version": "2.1.1", - "resolved": "https://registry.npm.taobao.org/querystringify/download/querystringify-2.1.1.tgz", - "integrity": "sha1-YOWl/WSn+L+k0qsu1v30yFutFU4=", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", + "dev": true + }, + "quick-lru": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", + "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", "dev": true }, "raf": { @@ -19228,8 +20256,8 @@ }, "ramda": { "version": "0.26.1", - "resolved": "https://registry.npm.taobao.org/ramda/download/ramda-0.26.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Framda%2Fdownload%2Framda-0.26.1.tgz", - "integrity": "sha1-jUE1HrgRHFU1Nhf8O7/62OTTXQY=", + "resolved": "https://registry.npmjs.org/ramda/-/ramda-0.26.1.tgz", + "integrity": "sha512-hLWjpy7EnsDBb0p+Z3B7rPi3GDeRG5ZtiI33kJhTt+ORCd38AbAIjB/9zRIUoeTbE/AVX5ZkU7m6bznsvrf8eQ==", "dev": true }, "randombytes": { @@ -19280,10 +20308,16 @@ "strip-json-comments": "~2.0.1" } }, + "rcedit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/rcedit/-/rcedit-2.3.0.tgz", + "integrity": "sha512-h1gNEl9Oai1oijwyJ1WYqYSXTStHnOcv1KYljg/8WM4NAg3H1KBK3azIaKkQ1WQl+d7PoJpcBMscPfLXVKgCLQ==", + "dev": true + }, "react": { "version": "16.13.1", - "resolved": "https://registry.npm.taobao.org/react/download/react-16.13.1.tgz", - "integrity": "sha1-LoGIIvGpdDEiwGPWQQ2FweOv5I4=", + "resolved": "https://registry.npmjs.org/react/-/react-16.13.1.tgz", + "integrity": "sha512-YMZQQq32xHLX0bz5Mnibv1/LHb3Sqzngu7xstSM+vrkE5Kzr9xE0yMByK5kMoTK30YVJE61WfbxIFFvfeDKT1w==", "dev": true, "requires": { "loose-envify": "^1.1.0", @@ -19319,156 +20353,196 @@ }, "dependencies": { "core-js": { - "version": "3.6.5", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.6.5.tgz", - "integrity": "sha512-vZVEEwZoIsI+vPEuoF9Iqf5H7/M3eeQqWlQnYa8FSKKePuYTf5MWnxb5SDAzCa60b3JBRS5g9b+Dq7b1y/RCrA==", + "version": "3.8.1", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.8.1.tgz", + "integrity": "sha512-9Id2xHY1W7m8hCl8NkhQn5CufmF/WuR30BTRewvCXc1aZd3kMECwNZ69ndLbekKfakw9Rf2Xyc+QR6E7Gg+obg==", "dev": true } } }, "react-dev-utils": { - "version": "10.2.1", - "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-10.2.1.tgz", - "integrity": "sha512-XxTbgJnYZmxuPtY3y/UV0D8/65NKkmaia4rXzViknVnZeVlklSh8u6TnaEYPfAi/Gh1TP4mEOXHI6jQOPbeakQ==", + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-7.0.5.tgz", + "integrity": "sha512-zJnqqb0x6gd63E3xoz5pXAxBPNaW75Hyz7GgQp0qPhMroBCRQtRvG67AoTZZY1z4yCYVJQZAfQJFdnea0Ujbug==", "dev": true, "requires": { - "@babel/code-frame": "7.8.3", - "address": "1.1.2", - "browserslist": "4.10.0", + "@babel/code-frame": "7.0.0", + "address": "1.0.3", + "browserslist": "4.4.1", "chalk": "2.4.2", - "cross-spawn": "7.0.1", + "cross-spawn": "6.0.5", "detect-port-alt": "1.1.6", - "escape-string-regexp": "2.0.0", - "filesize": "6.0.1", - "find-up": "4.1.0", - "fork-ts-checker-webpack-plugin": "3.1.1", + "escape-string-regexp": "1.0.5", + "filesize": "3.6.1", + "find-up": "3.0.0", "global-modules": "2.0.0", "globby": "8.0.2", - "gzip-size": "5.1.1", + "gzip-size": "5.0.0", "immer": "1.10.0", - "inquirer": "7.0.4", - "is-root": "2.1.0", + "inquirer": "6.2.1", + "is-root": "2.0.0", "loader-utils": "1.2.3", - "open": "^7.0.2", - "pkg-up": "3.1.0", - "react-error-overlay": "^6.0.7", + "opn": "5.4.0", + "pkg-up": "2.0.0", + "react-error-overlay": "^5.1.4", "recursive-readdir": "2.2.2", - "shell-quote": "1.7.2", - "strip-ansi": "6.0.0", + "shell-quote": "1.6.1", + "sockjs-client": "1.3.0", + "strip-ansi": "5.0.0", "text-table": "0.2.0" }, "dependencies": { - "@babel/code-frame": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.8.3.tgz", - "integrity": "sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g==", - "dev": true, - "requires": { - "@babel/highlight": "^7.8.3" - } - }, - "ansi-regex": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", - "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "ansi-escapes": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", + "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==", "dev": true }, - "browserslist": { - "version": "4.10.0", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.10.0.tgz", - "integrity": "sha512-TpfK0TDgv71dzuTsEAlQiHeWQ/tiPqgNZVdv046fvNtBZrjbv2O3TsWCDU0AWGJJKCF/KsjNdLzR9hXOsh/CfA==", + "ansi-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", + "dev": true + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, "requires": { - "caniuse-lite": "^1.0.30001035", - "electron-to-chromium": "^1.3.378", - "node-releases": "^1.1.52", - "pkg-up": "^3.1.0" + "color-convert": "^1.9.0" } }, - "cross-spawn": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.1.tgz", - "integrity": "sha512-u7v4o84SwFpD32Z8IIcPZ6z1/ie24O6RU3RbtL5Y316l3KuHVPx9ItBgWQ6VlfAFnRnTtMUrsQ9MUUTuEZjogg==", + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, "requires": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "cli-cursor": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", + "integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=", + "dev": true, + "requires": { + "restore-cursor": "^2.0.0" + } + }, + "cli-width": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.1.tgz", + "integrity": "sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw==", + "dev": true + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" } }, "emojis-list": { "version": "2.1.0", - "resolved": "https://registry.npm.taobao.org/emojis-list/download/emojis-list-2.1.0.tgz", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=", "dev": true }, - "escape-string-regexp": { + "figures": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", - "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", - "dev": true + "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", + "integrity": "sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=", + "dev": true, + "requires": { + "escape-string-regexp": "^1.0.5" + } }, "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", "dev": true, "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "dependencies": { - "locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "requires": { - "p-locate": "^4.1.0" - } - } + "locate-path": "^3.0.0" } }, + "global-modules": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", + "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", + "dev": true, + "requires": { + "global-prefix": "^3.0.0" + } + }, + "global-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", + "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", + "dev": true, + "requires": { + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, "inquirer": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-7.0.4.tgz", - "integrity": "sha512-Bu5Td5+j11sCkqfqmUTiwv+tWisMtP0L7Q8WrqA2C/BbBhy1YTdFrvjjlrKq8oagA/tLQBski2Gcx/Sqyi2qSQ==", + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-6.2.1.tgz", + "integrity": "sha512-088kl3DRT2dLU5riVMKKr1DlImd6X7smDhpXUCkJDCKvTEJeRiXh0G132HG9u5a+6Ylw9plFRY7RuTnwohYSpg==", "dev": true, "requires": { - "ansi-escapes": "^4.2.1", - "chalk": "^2.4.2", - "cli-cursor": "^3.1.0", + "ansi-escapes": "^3.0.0", + "chalk": "^2.0.0", + "cli-cursor": "^2.1.0", "cli-width": "^2.0.0", - "external-editor": "^3.0.3", - "figures": "^3.0.0", - "lodash": "^4.17.15", - "mute-stream": "0.0.8", + "external-editor": "^3.0.0", + "figures": "^2.0.0", + "lodash": "^4.17.10", + "mute-stream": "0.0.7", "run-async": "^2.2.0", - "rxjs": "^6.5.3", - "string-width": "^4.1.0", - "strip-ansi": "^5.1.0", + "rxjs": "^6.1.0", + "string-width": "^2.1.0", + "strip-ansi": "^5.0.0", "through": "^2.3.6" - }, - "dependencies": { - "strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", - "dev": true, - "requires": { - "ansi-regex": "^4.1.0" - } - } } }, - "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", - "dev": true, - "requires": { - "minimist": "^1.2.0" - } + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true }, "loader-utils": { "version": "1.2.3", @@ -19481,41 +20555,166 @@ "json5": "^1.0.1" } }, - "p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", "dev": true, "requires": { - "p-limit": "^2.2.0" + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" } }, - "pkg-up": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz", - "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==", + "mimic-fn": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", + "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", + "dev": true + }, + "mute-stream": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz", + "integrity": "sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=", + "dev": true + }, + "onetime": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", + "integrity": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=", "dev": true, "requires": { - "find-up": "^3.0.0" + "mimic-fn": "^1.0.0" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "requires": { + "p-limit": "^2.0.0" + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "dev": true + }, + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "dev": true + }, + "restore-cursor": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", + "integrity": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=", + "dev": true, + "requires": { + "onetime": "^2.0.0", + "signal-exit": "^3.0.2" + } + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dev": true, + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "dev": true + }, + "string-width": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "dev": true, + "requires": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" }, "dependencies": { - "find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", "dev": true, "requires": { - "locate-path": "^3.0.0" + "ansi-regex": "^3.0.0" } } } + }, + "strip-ansi": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.0.0.tgz", + "integrity": "sha512-Uu7gQyZI7J7gn5qLn1Np3G9vcYGTVqB+lFTytnDJv83dd8T22aGH451P3jueT2/QemInJDfxHB5Tde5OzgG1Ow==", + "dev": true, + "requires": { + "ansi-regex": "^4.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true + } + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } } } }, "react-dom": { "version": "16.13.1", - "resolved": "https://registry.npm.taobao.org/react-dom/download/react-dom-16.13.1.tgz", - "integrity": "sha1-wb03MxoEhsB47lTEdAcgmTsuDn8=", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-16.13.1.tgz", + "integrity": "sha512-81PIMmVLnCNLO/fFOQxdQkvEq/+Hfpv24XNJfpyZhTRfO0QcmQIF/PgCa1zCOj2w1hrn12MFLyaJ/G0+Mxtfag==", "dev": true, "requires": { "loose-envify": "^1.1.0", @@ -19525,15 +20724,15 @@ } }, "react-error-overlay": { - "version": "6.0.7", - "resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.7.tgz", - "integrity": "sha512-TAv1KJFh3RhqxNvhzxj6LeT5NWklP6rDr2a0jaTfsZ5wSZWHOGeqQyejUp3xxLfPt2UpyJEcVQB/zyPcmonNFA==", + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-5.1.6.tgz", + "integrity": "sha512-X1Y+0jR47ImDVr54Ab6V9eGk0Hnu7fVWGeHQSOXHf/C2pF9c6uy3gef8QUeuUiWlNb0i08InPSE5a/KJzNzw1Q==", "dev": true }, "react-i18next": { - "version": "11.7.3", - "resolved": "https://registry.npmjs.org/react-i18next/-/react-i18next-11.7.3.tgz", - "integrity": "sha512-7sYZqVZgdaS9Z0ZH6nuJFErCD0zz5wK3jR4/xCrWjZcxHHF3GRu7BXdicbSPprZV4ZYz7LJzxxMHO7dg5Qb70A==", + "version": "11.8.4", + "resolved": "https://registry.npmjs.org/react-i18next/-/react-i18next-11.8.4.tgz", + "integrity": "sha512-QlPJfX+Roi+jEQ6frBSsLHHH+VWbUoCl6wZDT8XHMd6PsSgepjgD2sZf/h7F46JnHeuy0U+SxY3TtrJF+aDIyg==", "dev": true, "requires": { "@babel/runtime": "^7.3.1", @@ -19542,8 +20741,8 @@ }, "react-is": { "version": "16.13.1", - "resolved": "https://registry.npm.taobao.org/react-is/download/react-is-16.13.1.tgz", - "integrity": "sha1-eJcppNw23imZ3BVt1sHZwYzqVqQ=", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", "dev": true }, "react-redux": { @@ -19620,26 +20819,371 @@ "workbox-webpack-plugin": "4.3.1" }, "dependencies": { + "@typescript-eslint/eslint-plugin": { + "version": "2.34.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-2.34.0.tgz", + "integrity": "sha512-4zY3Z88rEE99+CNvTbXSyovv2z9PNOVffTWD2W8QF5s2prBQtwN2zadqERcrHpcR7O/+KMI3fcTAmUUhK/iQcQ==", + "dev": true, + "requires": { + "@typescript-eslint/experimental-utils": "2.34.0", + "functional-red-black-tree": "^1.0.1", + "regexpp": "^3.0.0", + "tsutils": "^3.17.1" + } + }, + "@typescript-eslint/experimental-utils": { + "version": "2.34.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-2.34.0.tgz", + "integrity": "sha512-eS6FTkq+wuMJ+sgtuNTtcqavWXqsflWcfBnlYhg/nS4aZ1leewkXGbvBhaapn1q6qf4M71bsR1tez5JTRMuqwA==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.3", + "@typescript-eslint/typescript-estree": "2.34.0", + "eslint-scope": "^5.0.0", + "eslint-utils": "^2.0.0" + } + }, + "@typescript-eslint/parser": { + "version": "2.34.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-2.34.0.tgz", + "integrity": "sha512-03ilO0ucSD0EPTw2X4PntSIRFtDPWjrVq7C3/Z3VQHRC7+13YB55rcJI3Jt+YgeHbjUdJPcPa7b23rXCBokuyA==", + "dev": true, + "requires": { + "@types/eslint-visitor-keys": "^1.0.0", + "@typescript-eslint/experimental-utils": "2.34.0", + "@typescript-eslint/typescript-estree": "2.34.0", + "eslint-visitor-keys": "^1.1.0" + } + }, + "@typescript-eslint/typescript-estree": { + "version": "2.34.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-2.34.0.tgz", + "integrity": "sha512-OMAr+nJWKdlVM9LOqCqh3pQQPwxHAN7Du8DR6dmwCrAmxtiXQnhHJ6tBNtf+cggqfo51SG/FCwnKhXCIM7hnVg==", + "dev": true, + "requires": { + "debug": "^4.1.1", + "eslint-visitor-keys": "^1.1.0", + "glob": "^7.1.6", + "is-glob": "^4.0.1", + "lodash": "^4.17.15", + "semver": "^7.3.2", + "tsutils": "^3.17.1" + }, + "dependencies": { + "semver": { + "version": "7.3.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", + "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, + "@webassemblyjs/ast": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.8.5.tgz", + "integrity": "sha512-aJMfngIZ65+t71C3y2nBBg5FFG0Okt9m0XEgWZ7Ywgn1oMAT8cNwx00Uv1cQyHtidq0Xn94R4TAywO+LCQ+ZAQ==", + "dev": true, + "requires": { + "@webassemblyjs/helper-module-context": "1.8.5", + "@webassemblyjs/helper-wasm-bytecode": "1.8.5", + "@webassemblyjs/wast-parser": "1.8.5" + } + }, + "@webassemblyjs/floating-point-hex-parser": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.8.5.tgz", + "integrity": "sha512-9p+79WHru1oqBh9ewP9zW95E3XAo+90oth7S5Re3eQnECGq59ly1Ri5tsIipKGpiStHsUYmY3zMLqtk3gTcOtQ==", + "dev": true + }, + "@webassemblyjs/helper-api-error": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.8.5.tgz", + "integrity": "sha512-Za/tnzsvnqdaSPOUXHyKJ2XI7PDX64kWtURyGiJJZKVEdFOsdKUCPTNEVFZq3zJ2R0G5wc2PZ5gvdTRFgm81zA==", + "dev": true + }, + "@webassemblyjs/helper-buffer": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.8.5.tgz", + "integrity": "sha512-Ri2R8nOS0U6G49Q86goFIPNgjyl6+oE1abW1pS84BuhP1Qcr5JqMwRFT3Ah3ADDDYGEgGs1iyb1DGX+kAi/c/Q==", + "dev": true + }, + "@webassemblyjs/helper-code-frame": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.8.5.tgz", + "integrity": "sha512-VQAadSubZIhNpH46IR3yWO4kZZjMxN1opDrzePLdVKAZ+DFjkGD/rf4v1jap744uPVU6yjL/smZbRIIJTOUnKQ==", + "dev": true, + "requires": { + "@webassemblyjs/wast-printer": "1.8.5" + } + }, + "@webassemblyjs/helper-fsm": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.8.5.tgz", + "integrity": "sha512-kRuX/saORcg8se/ft6Q2UbRpZwP4y7YrWsLXPbbmtepKr22i8Z4O3V5QE9DbZK908dh5Xya4Un57SDIKwB9eow==", + "dev": true + }, + "@webassemblyjs/helper-module-context": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.8.5.tgz", + "integrity": "sha512-/O1B236mN7UNEU4t9X7Pj38i4VoU8CcMHyy3l2cV/kIF4U5KoHXDVqcDuOs1ltkac90IM4vZdHc52t1x8Yfs3g==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.8.5", + "mamacro": "^0.0.3" + } + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.8.5.tgz", + "integrity": "sha512-Cu4YMYG3Ddl72CbmpjU/wbP6SACcOPVbHN1dI4VJNJVgFwaKf1ppeFJrwydOG3NDHxVGuCfPlLZNyEdIYlQ6QQ==", + "dev": true + }, + "@webassemblyjs/helper-wasm-section": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.8.5.tgz", + "integrity": "sha512-VV083zwR+VTrIWWtgIUpqfvVdK4ff38loRmrdDBgBT8ADXYsEZ5mPQ4Nde90N3UYatHdYoDIFb7oHzMncI02tA==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.8.5", + "@webassemblyjs/helper-buffer": "1.8.5", + "@webassemblyjs/helper-wasm-bytecode": "1.8.5", + "@webassemblyjs/wasm-gen": "1.8.5" + } + }, + "@webassemblyjs/ieee754": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.8.5.tgz", + "integrity": "sha512-aaCvQYrvKbY/n6wKHb/ylAJr27GglahUO89CcGXMItrOBqRarUMxWLJgxm9PJNuKULwN5n1csT9bYoMeZOGF3g==", + "dev": true, + "requires": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "@webassemblyjs/leb128": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.8.5.tgz", + "integrity": "sha512-plYUuUwleLIziknvlP8VpTgO4kqNaH57Y3JnNa6DLpu/sGcP6hbVdfdX5aHAV716pQBKrfuU26BJK29qY37J7A==", + "dev": true, + "requires": { + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/utf8": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.8.5.tgz", + "integrity": "sha512-U7zgftmQriw37tfD934UNInokz6yTmn29inT2cAetAsaU9YeVCveWEwhKL1Mg4yS7q//NGdzy79nlXh3bT8Kjw==", + "dev": true + }, + "@webassemblyjs/wasm-edit": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.8.5.tgz", + "integrity": "sha512-A41EMy8MWw5yvqj7MQzkDjU29K7UJq1VrX2vWLzfpRHt3ISftOXqrtojn7nlPsZ9Ijhp5NwuODuycSvfAO/26Q==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.8.5", + "@webassemblyjs/helper-buffer": "1.8.5", + "@webassemblyjs/helper-wasm-bytecode": "1.8.5", + "@webassemblyjs/helper-wasm-section": "1.8.5", + "@webassemblyjs/wasm-gen": "1.8.5", + "@webassemblyjs/wasm-opt": "1.8.5", + "@webassemblyjs/wasm-parser": "1.8.5", + "@webassemblyjs/wast-printer": "1.8.5" + } + }, + "@webassemblyjs/wasm-gen": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.8.5.tgz", + "integrity": "sha512-BCZBT0LURC0CXDzj5FXSc2FPTsxwp3nWcqXQdOZE4U7h7i8FqtFK5Egia6f9raQLpEKT1VL7zr4r3+QX6zArWg==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.8.5", + "@webassemblyjs/helper-wasm-bytecode": "1.8.5", + "@webassemblyjs/ieee754": "1.8.5", + "@webassemblyjs/leb128": "1.8.5", + "@webassemblyjs/utf8": "1.8.5" + } + }, + "@webassemblyjs/wasm-opt": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.8.5.tgz", + "integrity": "sha512-HKo2mO/Uh9A6ojzu7cjslGaHaUU14LdLbGEKqTR7PBKwT6LdPtLLh9fPY33rmr5wcOMrsWDbbdCHq4hQUdd37Q==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.8.5", + "@webassemblyjs/helper-buffer": "1.8.5", + "@webassemblyjs/wasm-gen": "1.8.5", + "@webassemblyjs/wasm-parser": "1.8.5" + } + }, + "@webassemblyjs/wasm-parser": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.8.5.tgz", + "integrity": "sha512-pi0SYE9T6tfcMkthwcgCpL0cM9nRYr6/6fjgDtL6q/ZqKHdMWvxitRi5JcZ7RI4SNJJYnYNaWy5UUrHQy998lw==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.8.5", + "@webassemblyjs/helper-api-error": "1.8.5", + "@webassemblyjs/helper-wasm-bytecode": "1.8.5", + "@webassemblyjs/ieee754": "1.8.5", + "@webassemblyjs/leb128": "1.8.5", + "@webassemblyjs/utf8": "1.8.5" + } + }, + "@webassemblyjs/wast-parser": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.8.5.tgz", + "integrity": "sha512-daXC1FyKWHF1i11obK086QRlsMsY4+tIOKgBqI1lxAnkp9xe9YMcgOxm9kLe+ttjs5aWV2KKE1TWJCN57/Btsg==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.8.5", + "@webassemblyjs/floating-point-hex-parser": "1.8.5", + "@webassemblyjs/helper-api-error": "1.8.5", + "@webassemblyjs/helper-code-frame": "1.8.5", + "@webassemblyjs/helper-fsm": "1.8.5", + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/wast-printer": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.8.5.tgz", + "integrity": "sha512-w0U0pD4EhlnvRyeJzBqaVSJAo9w/ce7/WPogeXLzGkO6hzhr4GnQIZ4W4uUt5b9ooAaXPtnXlj0gzsXEOUNYMg==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.8.5", + "@webassemblyjs/wast-parser": "1.8.5", + "@xtuc/long": "4.2.2" + } + }, + "acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "dev": true + }, + "address": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/address/-/address-1.1.2.tgz", + "integrity": "sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==", + "dev": true + }, "ansi-regex": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", "dev": true }, - "aria-query": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-3.0.0.tgz", - "integrity": "sha1-ZbP8wcoRVajJrmTW7uKX8V1RM8w=", + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, "requires": { - "ast-types-flow": "0.0.7", - "commander": "^2.11.0" + "color-convert": "^1.9.0" } }, - "commander": { - "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "browserslist": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.10.0.tgz", + "integrity": "sha512-TpfK0TDgv71dzuTsEAlQiHeWQ/tiPqgNZVdv046fvNtBZrjbv2O3TsWCDU0AWGJJKCF/KsjNdLzR9hXOsh/CfA==", + "dev": true, + "requires": { + "caniuse-lite": "^1.0.30001035", + "electron-to-chromium": "^1.3.378", + "node-releases": "^1.1.52", + "pkg-up": "^3.1.0" + } + }, + "cacache": { + "version": "13.0.1", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-13.0.1.tgz", + "integrity": "sha512-5ZvAxd05HDDU+y9BVvcqYu2LLXmPnQ0hW62h32g4xBTgL/MppR4/04NHfj/ycM2y6lmTnbw6HVi+1eN0Psba6w==", + "dev": true, + "requires": { + "chownr": "^1.1.2", + "figgy-pudding": "^3.5.1", + "fs-minipass": "^2.0.0", + "glob": "^7.1.4", + "graceful-fs": "^4.2.2", + "infer-owner": "^1.0.4", + "lru-cache": "^5.1.1", + "minipass": "^3.0.0", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.2", + "mkdirp": "^0.5.1", + "move-concurrently": "^1.0.1", + "p-map": "^3.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^2.7.1", + "ssri": "^7.0.0", + "unique-filename": "^1.1.1" + }, + "dependencies": { + "lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "requires": { + "yallist": "^3.0.2" + } + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + } + } + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "cli-width": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.1.tgz", + "integrity": "sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw==", + "dev": true + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", "dev": true }, "cross-spawn": { @@ -19663,10 +21207,10 @@ } } }, - "emoji-regex": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", - "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "emojis-list": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", + "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=", "dev": true }, "eslint": { @@ -19712,15 +21256,23 @@ "table": "^5.2.3", "text-table": "^0.2.0", "v8-compile-cache": "^2.0.3" - } - }, - "eslint-plugin-flowtype": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-4.6.0.tgz", - "integrity": "sha512-W5hLjpFfZyZsXfo5anlu7HM970JBDqbEshAJUkeczP6BFCIfJXuiIBQXyberLRtOStT0OGPF8efeTbxlHk4LpQ==", - "dev": true, - "requires": { - "lodash": "^4.17.15" + }, + "dependencies": { + "eslint-utils": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.4.3.tgz", + "integrity": "sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q==", + "dev": true, + "requires": { + "eslint-visitor-keys": "^1.1.0" + } + }, + "regexpp": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-2.0.1.tgz", + "integrity": "sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw==", + "dev": true + } } }, "eslint-plugin-import": { @@ -19764,23 +21316,6 @@ } } }, - "eslint-plugin-jsx-a11y": { - "version": "6.2.3", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.2.3.tgz", - "integrity": "sha512-CawzfGt9w83tyuVekn0GDPU9ytYtxyxyFZ3aSWROmnRRFQFT2BiPJd7jvRdzNDi6oLWaS2asMeYSNMjWTV4eNg==", - "dev": true, - "requires": { - "@babel/runtime": "^7.4.5", - "aria-query": "^3.0.0", - "array-includes": "^3.0.3", - "ast-types-flow": "^0.0.7", - "axobject-query": "^2.0.2", - "damerau-levenshtein": "^1.0.4", - "emoji-regex": "^7.0.2", - "has": "^1.0.3", - "jsx-ast-utils": "^2.2.1" - } - }, "eslint-plugin-react": { "version": "7.19.0", "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.19.0.tgz", @@ -19811,31 +21346,33 @@ } }, "resolve": { - "version": "1.17.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.17.0.tgz", - "integrity": "sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==", + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.19.0.tgz", + "integrity": "sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==", "dev": true, "requires": { + "is-core-module": "^2.1.0", "path-parse": "^1.0.6" } } } }, - "eslint-plugin-react-hooks": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-1.7.0.tgz", - "integrity": "sha512-iXTCFcOmlWvw4+TOE8CLWj6yX1GwzT0Y6cUfHHZqWnSk144VmVIRcVGtUAzrLES7C798lmvnt02C7rxaOX1HNA==", - "dev": true - }, - "eslint-utils": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.4.3.tgz", - "integrity": "sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q==", + "eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", "dev": true, "requires": { - "eslint-visitor-keys": "^1.1.0" + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" } }, + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true + }, "espree": { "version": "6.2.1", "resolved": "https://registry.npmjs.org/espree/-/espree-6.2.1.tgz", @@ -19847,6 +21384,109 @@ "eslint-visitor-keys": "^1.1.0" } }, + "file-entry-cache": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-5.0.1.tgz", + "integrity": "sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g==", + "dev": true, + "requires": { + "flat-cache": "^2.0.1" + } + }, + "filesize": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/filesize/-/filesize-6.0.1.tgz", + "integrity": "sha512-u4AYWPgbI5GBhs6id1KdImZWn5yfyFrrQ8OWZdN7ZMfA8Bf4HcO0BGo9bmUIEV8yrp8I1xVfJ/dn90GtFNNJcg==", + "dev": true + }, + "find-cache-dir": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz", + "integrity": "sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==", + "dev": true, + "requires": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + } + }, + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "dependencies": { + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "requires": { + "p-locate": "^4.1.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "requires": { + "p-limit": "^2.2.0" + } + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true + } + } + }, + "flat-cache": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz", + "integrity": "sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA==", + "dev": true, + "requires": { + "flatted": "^2.0.0", + "rimraf": "2.6.3", + "write": "1.0.3" + } + }, + "flatted": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz", + "integrity": "sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==", + "dev": true + }, + "fork-ts-checker-webpack-plugin": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-3.1.1.tgz", + "integrity": "sha512-DuVkPNrM12jR41KM2e+N+styka0EgLkTnXmNcXdgOM37vtGeY+oCBK/Jx0hzSeEU6memFCtWb4htrHPMDfwwUQ==", + "dev": true, + "requires": { + "babel-code-frame": "^6.22.0", + "chalk": "^2.4.1", + "chokidar": "^3.3.0", + "micromatch": "^3.1.10", + "minimatch": "^3.0.4", + "semver": "^5.6.0", + "tapable": "^1.0.0", + "worker-rpc": "^0.1.0" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + } + } + }, "fs-extra": { "version": "8.1.0", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", @@ -19858,6 +21498,15 @@ "universalify": "^0.1.0" } }, + "fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "dev": true, + "requires": { + "minipass": "^3.0.0" + } + }, "fsevents": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.2.tgz", @@ -19865,31 +21514,373 @@ "dev": true, "optional": true }, - "globals": { - "version": "12.4.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz", - "integrity": "sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==", + "global-modules": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", + "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", "dev": true, "requires": { - "type-fest": "^0.8.1" + "global-prefix": "^3.0.0" + } + }, + "global-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", + "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", + "dev": true, + "requires": { + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" + } + }, + "gzip-size": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-5.1.1.tgz", + "integrity": "sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==", + "dev": true, + "requires": { + "duplexer": "^0.1.1", + "pify": "^4.0.1" + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "html-webpack-plugin": { + "version": "4.0.0-beta.11", + "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-4.0.0-beta.11.tgz", + "integrity": "sha512-4Xzepf0qWxf8CGg7/WQM5qBB2Lc/NFI7MhU59eUDTkuQp3skZczH4UA1d6oQyDEIoMDgERVhRyTdtUPZ5s5HBg==", + "dev": true, + "requires": { + "html-minifier-terser": "^5.0.1", + "loader-utils": "^1.2.3", + "lodash": "^4.17.15", + "pretty-error": "^2.1.1", + "tapable": "^1.1.3", + "util.promisify": "1.0.0" + } + }, + "ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "dev": true + }, + "is-root": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz", + "integrity": "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==", + "dev": true + }, + "is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=", + "dev": true + }, + "jest-worker": { + "version": "25.5.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-25.5.0.tgz", + "integrity": "sha512-/dsSmUkIy5EBGfv/IjjqmFxrNAUpBERfGs1oHROyD7yxjG/w+t0GOJDX8O1k32ySmd7+a5IhnJU2qQFcJ4n1vw==", + "dev": true, + "requires": { + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "jsx-ast-utils": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-2.4.1.tgz", + "integrity": "sha512-z1xSldJ6imESSzOjd3NNkieVJKRlKYSOtMG8SFyCj2FIrvSaSuli/WjpBkEzCBoR9bYYYFgqJw61Xhu7Lcgk+w==", + "dev": true, + "requires": { + "array-includes": "^3.1.1", + "object.assign": "^4.1.0" + } + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "requires": { + "semver": "^6.0.0" + } + }, + "minipass": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.3.tgz", + "integrity": "sha512-Mgd2GdMVzY+x3IJ+oHnVM+KG3lA5c8tnabyJKmHSaG2kAGpudxuOf8ToDkhumF7UzME7DecbQE9uOZhNm7PuJg==", + "dev": true, + "requires": { + "yallist": "^4.0.0" } }, "ms": { "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", "dev": true }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "requires": { + "p-limit": "^2.0.0" + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "dev": true + }, "path-key": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", "dev": true }, - "regexpp": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-2.0.1.tgz", - "integrity": "sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw==", + "pkg-up": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz", + "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==", + "dev": true, + "requires": { + "find-up": "^3.0.0" + }, + "dependencies": { + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "requires": { + "locate-path": "^3.0.0" + } + } + } + }, + "react-dev-utils": { + "version": "10.2.1", + "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-10.2.1.tgz", + "integrity": "sha512-XxTbgJnYZmxuPtY3y/UV0D8/65NKkmaia4rXzViknVnZeVlklSh8u6TnaEYPfAi/Gh1TP4mEOXHI6jQOPbeakQ==", + "dev": true, + "requires": { + "@babel/code-frame": "7.8.3", + "address": "1.1.2", + "browserslist": "4.10.0", + "chalk": "2.4.2", + "cross-spawn": "7.0.1", + "detect-port-alt": "1.1.6", + "escape-string-regexp": "2.0.0", + "filesize": "6.0.1", + "find-up": "4.1.0", + "fork-ts-checker-webpack-plugin": "3.1.1", + "global-modules": "2.0.0", + "globby": "8.0.2", + "gzip-size": "5.1.1", + "immer": "1.10.0", + "inquirer": "7.0.4", + "is-root": "2.1.0", + "loader-utils": "1.2.3", + "open": "^7.0.2", + "pkg-up": "3.1.0", + "react-error-overlay": "^6.0.7", + "recursive-readdir": "2.2.2", + "shell-quote": "1.7.2", + "strip-ansi": "6.0.0", + "text-table": "0.2.0" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.8.3.tgz", + "integrity": "sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g==", + "dev": true, + "requires": { + "@babel/highlight": "^7.8.3" + } + }, + "cross-spawn": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.1.tgz", + "integrity": "sha512-u7v4o84SwFpD32Z8IIcPZ6z1/ie24O6RU3RbtL5Y316l3KuHVPx9ItBgWQ6VlfAFnRnTtMUrsQ9MUUTuEZjogg==", + "dev": true, + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true + }, + "inquirer": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-7.0.4.tgz", + "integrity": "sha512-Bu5Td5+j11sCkqfqmUTiwv+tWisMtP0L7Q8WrqA2C/BbBhy1YTdFrvjjlrKq8oagA/tLQBski2Gcx/Sqyi2qSQ==", + "dev": true, + "requires": { + "ansi-escapes": "^4.2.1", + "chalk": "^2.4.2", + "cli-cursor": "^3.1.0", + "cli-width": "^2.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.15", + "mute-stream": "0.0.8", + "run-async": "^2.2.0", + "rxjs": "^6.5.3", + "string-width": "^4.1.0", + "strip-ansi": "^5.1.0", + "through": "^2.3.6" + }, + "dependencies": { + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "loader-utils": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz", + "integrity": "sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^2.0.0", + "json5": "^1.0.1" + } + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", + "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", + "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", + "dev": true + } + } + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "react-error-overlay": { + "version": "6.0.8", + "resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.8.tgz", + "integrity": "sha512-HvPuUQnLp5H7TouGq3kzBeioJmXms1wHy9EGjz2OURWBp4qZO6AfGEcnxts1D/CbwPLRAgTMPCEgYhA3sEM4vw==", "dev": true }, "resolve": { @@ -19901,6 +21892,26 @@ "path-parse": "^1.0.6" } }, + "rimraf": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", + "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + } + }, "semver": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", @@ -19922,6 +21933,22 @@ "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", "dev": true }, + "shell-quote": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.2.tgz", + "integrity": "sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==", + "dev": true + }, + "ssri": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-7.1.0.tgz", + "integrity": "sha512-77/WrDZUWocK0mvA5NTRQyveUf+wsrIc6vyrxpS8tVvYBcX215QbafrJR3KtkpskIzoFLqqNuuYQvxaMjXJ/0g==", + "dev": true, + "requires": { + "figgy-pudding": "^3.5.1", + "minipass": "^3.1.1" + } + }, "strip-ansi": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", @@ -19937,11 +21964,31 @@ "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", "dev": true }, - "type-fest": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", - "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", - "dev": true + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + }, + "terser-webpack-plugin": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-2.3.8.tgz", + "integrity": "sha512-/fKw3R+hWyHfYx7Bv6oPqmk4HGQcrWLtV3X6ggvPuwPNHSnzvVV51z6OaaCOus4YLjutYGOz3pEpbhe6Up2s1w==", + "dev": true, + "requires": { + "cacache": "^13.0.1", + "find-cache-dir": "^3.3.1", + "jest-worker": "^25.4.0", + "p-limit": "^2.3.0", + "schema-utils": "^2.6.6", + "serialize-javascript": "^4.0.0", + "source-map": "^0.6.1", + "terser": "^4.6.12", + "webpack-sources": "^1.4.3" + } }, "universalify": { "version": "0.1.2", @@ -19949,6 +21996,175 @@ "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", "dev": true }, + "webpack": { + "version": "4.42.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.42.0.tgz", + "integrity": "sha512-EzJRHvwQyBiYrYqhyjW9AqM90dE4+s1/XtCfn7uWg6cS72zH+2VPFAlsnW0+W0cDi0XRjNKUMoJtpSi50+Ph6w==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.8.5", + "@webassemblyjs/helper-module-context": "1.8.5", + "@webassemblyjs/wasm-edit": "1.8.5", + "@webassemblyjs/wasm-parser": "1.8.5", + "acorn": "^6.2.1", + "ajv": "^6.10.2", + "ajv-keywords": "^3.4.1", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^4.1.0", + "eslint-scope": "^4.0.3", + "json-parse-better-errors": "^1.0.2", + "loader-runner": "^2.4.0", + "loader-utils": "^1.2.3", + "memory-fs": "^0.4.1", + "micromatch": "^3.1.10", + "mkdirp": "^0.5.1", + "neo-async": "^2.6.1", + "node-libs-browser": "^2.2.1", + "schema-utils": "^1.0.0", + "tapable": "^1.1.3", + "terser-webpack-plugin": "^1.4.3", + "watchpack": "^1.6.0", + "webpack-sources": "^1.4.1" + }, + "dependencies": { + "acorn": { + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz", + "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==", + "dev": true + }, + "cacache": { + "version": "12.0.4", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-12.0.4.tgz", + "integrity": "sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==", + "dev": true, + "requires": { + "bluebird": "^3.5.5", + "chownr": "^1.1.1", + "figgy-pudding": "^3.5.1", + "glob": "^7.1.4", + "graceful-fs": "^4.1.15", + "infer-owner": "^1.0.3", + "lru-cache": "^5.1.1", + "mississippi": "^3.0.0", + "mkdirp": "^0.5.1", + "move-concurrently": "^1.0.1", + "promise-inflight": "^1.0.1", + "rimraf": "^2.6.3", + "ssri": "^6.0.1", + "unique-filename": "^1.1.1", + "y18n": "^4.0.0" + } + }, + "eslint-scope": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz", + "integrity": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==", + "dev": true, + "requires": { + "esrecurse": "^4.1.0", + "estraverse": "^4.1.1" + } + }, + "find-cache-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", + "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", + "dev": true, + "requires": { + "commondir": "^1.0.1", + "make-dir": "^2.0.0", + "pkg-dir": "^3.0.0" + } + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "requires": { + "locate-path": "^3.0.0" + } + }, + "lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "requires": { + "yallist": "^3.0.2" + } + }, + "make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "dev": true, + "requires": { + "pify": "^4.0.1", + "semver": "^5.6.0" + } + }, + "pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "dev": true, + "requires": { + "find-up": "^3.0.0" + } + }, + "schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "dev": true, + "requires": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + } + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + }, + "ssri": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-6.0.1.tgz", + "integrity": "sha512-3Wge10hNcT1Kur4PDFwEieXSCMCJs/7WvSACcrMYrNp+b8kDL1/0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx/QA==", + "dev": true, + "requires": { + "figgy-pudding": "^3.5.1" + } + }, + "terser-webpack-plugin": { + "version": "1.4.5", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz", + "integrity": "sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==", + "dev": true, + "requires": { + "cacache": "^12.0.2", + "find-cache-dir": "^2.1.0", + "is-wsl": "^1.1.0", + "schema-utils": "^1.0.0", + "serialize-javascript": "^4.0.0", + "source-map": "^0.6.1", + "terser": "^4.1.2", + "webpack-sources": "^1.4.0", + "worker-farm": "^1.7.0" + } + }, + "yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + } + } + }, "which": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", @@ -19959,20 +22175,32 @@ } }, "xregexp": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/xregexp/-/xregexp-4.3.0.tgz", - "integrity": "sha512-7jXDIFXh5yJ/orPn4SXjuVrWWoi4Cr8jfV1eHv9CixKSbU+jY4mxfrBwAuDvupPNKpMUY+FeIqsVw/JLT9+B8g==", + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/xregexp/-/xregexp-4.4.1.tgz", + "integrity": "sha512-2u9HwfadaJaY9zHtRRnH6BY6CQVNQKkYm3oLtC9gJXXzfsbACg5X5e4EZZGVAH+YIfa+QA9lsFQTTe3HURF3ag==", "dev": true, "requires": { - "@babel/runtime-corejs3": "^7.8.3" + "@babel/runtime-corejs3": "^7.12.1" } + }, + "y18n": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz", + "integrity": "sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==", + "dev": true + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true } } }, "react-sortable-hoc": { "version": "1.11.0", - "resolved": "https://registry.npm.taobao.org/react-sortable-hoc/download/react-sortable-hoc-1.11.0.tgz", - "integrity": "sha1-/kAiNiu6/EuDb1EEuWdmCKQKJ48=", + "resolved": "https://registry.npmjs.org/react-sortable-hoc/-/react-sortable-hoc-1.11.0.tgz", + "integrity": "sha512-v1CDCvdfoR3zLGNp6qsBa4J1BWMEVH25+UKxF/RvQRh+mrB+emqtVHMgZ+WreUiKJoEaiwYoScaueIKhMVBHUg==", "dev": true, "requires": { "@babel/runtime": "^7.2.0", @@ -19982,8 +22210,8 @@ }, "react-transition-group": { "version": "4.4.1", - "resolved": "https://registry.npm.taobao.org/react-transition-group/download/react-transition-group-4.4.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Freact-transition-group%2Fdownload%2Freact-transition-group-4.4.1.tgz", - "integrity": "sha1-Y4aPkyWjjqXulTXYKDJ/hXczRck=", + "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.1.tgz", + "integrity": "sha512-Djqr7OQ2aPUiYurhPalTrVy9ddmFCCzwhqQmtN+J3+3DzLO209Fdr70QrN8Z3DsglWql6iY1lDWAfpFiBtuKGw==", "dev": true, "requires": { "@babel/runtime": "^7.5.5", @@ -19994,8 +22222,8 @@ }, "react-window": { "version": "1.8.5", - "resolved": "https://registry.npm.taobao.org/react-window/download/react-window-1.8.5.tgz", - "integrity": "sha1-pWs5MH55l5chAh9dBqZ3QuzKUtE=", + "resolved": "https://registry.npmjs.org/react-window/-/react-window-1.8.5.tgz", + "integrity": "sha512-HeTwlNa37AFa8MDZFZOKcNEkuF2YflA0hpGPiTT9vR7OawEt+GZbfM6wqkBahD3D3pUjIabQYzsnY/BSJbgq6Q==", "dev": true, "requires": { "@babel/runtime": "^7.0.0", @@ -20004,8 +22232,8 @@ }, "react-window-infinite-loader": { "version": "1.0.5", - "resolved": "https://registry.npm.taobao.org/react-window-infinite-loader/download/react-window-infinite-loader-1.0.5.tgz", - "integrity": "sha1-b+CU1TioiXjCybYjBSvFDLKMKrw=", + "resolved": "https://registry.npmjs.org/react-window-infinite-loader/-/react-window-infinite-loader-1.0.5.tgz", + "integrity": "sha512-IcPIq8lADK3zsAcqoLqQGyduicqR6jWkiK2VUX5sKSI9X/rou6OWlOEexnGyujdNTG7hSG8OVBFEhLSDs4qrxg==", "dev": true }, "read-config-file": { @@ -20019,30 +22247,33 @@ "js-yaml": "^3.13.1", "json5": "^2.1.2", "lazy-val": "^1.0.4" + }, + "dependencies": { + "json5": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz", + "integrity": "sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + } } }, "read-pkg": { - "version": "4.0.1", - "resolved": "https://registry.npm.taobao.org/read-pkg/download/read-pkg-4.0.1.tgz", - "integrity": "sha1-ljYlN48+HE1IyFhytabsfV0JMjc=", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz", + "integrity": "sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg=", "dev": true, "requires": { + "load-json-file": "^2.0.0", "normalize-package-data": "^2.3.2", - "parse-json": "^4.0.0", - "pify": "^3.0.0" - }, - "dependencies": { - "pify": { - "version": "3.0.0", - "resolved": "https://registry.npm.taobao.org/pify/download/pify-3.0.0.tgz", - "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", - "dev": true - } + "path-type": "^2.0.0" } }, "read-pkg-up": { "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/read-pkg-up/download/read-pkg-up-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz", "integrity": "sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4=", "dev": true, "requires": { @@ -20052,80 +22283,33 @@ "dependencies": { "find-up": { "version": "2.1.0", - "resolved": "https://registry.npm.taobao.org/find-up/download/find-up-2.1.0.tgz", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", "dev": true, "requires": { "locate-path": "^2.0.0" } - }, - "locate-path": { - "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/locate-path/download/locate-path-2.0.0.tgz", - "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", - "dev": true, - "requires": { - "p-locate": "^2.0.0", - "path-exists": "^3.0.0" - } - }, - "p-limit": { - "version": "1.3.0", - "resolved": "https://registry.npm.taobao.org/p-limit/download/p-limit-1.3.0.tgz", - "integrity": "sha1-uGvV8MJWkJEcdZD8v8IBDVSzzLg=", - "dev": true, - "requires": { - "p-try": "^1.0.0" - } - }, - "p-locate": { - "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/p-locate/download/p-locate-2.0.0.tgz", - "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", - "dev": true, - "requires": { - "p-limit": "^1.1.0" - } - }, - "p-try": { - "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/p-try/download/p-try-1.0.0.tgz", - "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", - "dev": true - }, - "path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npm.taobao.org/path-exists/download/path-exists-3.0.0.tgz", - "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", - "dev": true - }, - "read-pkg": { - "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/read-pkg/download/read-pkg-2.0.0.tgz", - "integrity": "sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg=", - "dev": true, - "requires": { - "load-json-file": "^2.0.0", - "normalize-package-data": "^2.3.2", - "path-type": "^2.0.0" - } } } }, "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-3.6.0.tgz", - "integrity": "sha1-M3u9o63AcGvT4CRCaihtS0sskZg=", + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" } }, "readdirp": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.4.0.tgz", - "integrity": "sha512-0xe001vZBnJEK+uKcj8qOhyAKPzIT+gStxWr3LCB0DwcXR5NZJ3IaC+yGnHCYzB/S7ov3m3EEbZI2zeNvX+hGQ==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz", + "integrity": "sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==", "requires": { "picomatch": "^2.2.1" } @@ -20139,28 +22323,29 @@ "util.promisify": "^1.0.0" } }, - "rechoir": { - "version": "0.6.2", - "resolved": "https://registry.npm.taobao.org/rechoir/download/rechoir-0.6.2.tgz", - "integrity": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=", - "dev": true, - "requires": { - "resolve": "^1.1.6" - } - }, "recursive-readdir": { "version": "2.2.2", - "resolved": "https://registry.npm.taobao.org/recursive-readdir/download/recursive-readdir-2.2.2.tgz", - "integrity": "sha1-mUb7MnThYo3m42svZxSVO0hFCU8=", + "resolved": "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.2.tgz", + "integrity": "sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg==", "dev": true, "requires": { "minimatch": "3.0.4" } }, + "redent": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz", + "integrity": "sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=", + "dev": true, + "requires": { + "indent-string": "^2.1.0", + "strip-indent": "^1.0.1" + } + }, "redux": { "version": "4.0.5", - "resolved": "https://registry.npm.taobao.org/redux/download/redux-4.0.5.tgz", - "integrity": "sha1-TbXeWBbheJHeioDEJCMtBvBR2T8=", + "resolved": "https://registry.npmjs.org/redux/-/redux-4.0.5.tgz", + "integrity": "sha512-VSz1uMAH24DM6MF72vcojpYPtrTUu3ByVWfPL1nPfVRb5mZVTve5GnNCUV53QM/BZ66xfWrm0CTWoM+Xlz8V1w==", "dev": true, "requires": { "loose-envify": "^1.4.0", @@ -20169,14 +22354,19 @@ }, "redux-thunk": { "version": "2.3.0", - "resolved": "https://registry.npm.taobao.org/redux-thunk/download/redux-thunk-2.3.0.tgz", - "integrity": "sha1-UcLBmhhe1Rh6qpotCLZm0NZGdiI=", + "resolved": "https://registry.npmjs.org/redux-thunk/-/redux-thunk-2.3.0.tgz", + "integrity": "sha512-km6dclyFnmcvxhAcrQV2AkZmPQjzPDjgVlQtR0EQjxZPyJ0BnMf3in1ryuR8A2qU0HldVRfxYXbFSKlI3N7Slw==", "dev": true }, + "reflect-metadata": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.1.13.tgz", + "integrity": "sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg==" + }, "regedit": { "version": "3.0.3", - "resolved": "https://registry.npm.taobao.org/regedit/download/regedit-3.0.3.tgz", - "integrity": "sha1-DCGI4V9nDefVdAxc6pu+vplJd0k=", + "resolved": "https://registry.npmjs.org/regedit/-/regedit-3.0.3.tgz", + "integrity": "sha512-SpHmMKOtiEYx0MiRRC48apBsmThoZ4svZNsYoK8leHd5bdUHV1nYb8pk8gh6Moou7/S9EDi1QsjBTpyXVQrPuQ==", "requires": { "debug": "^4.1.0", "if-async": "^3.7.4", @@ -20185,9 +22375,9 @@ } }, "regenerate": { - "version": "1.4.1", - "resolved": "https://registry.npm.taobao.org/regenerate/download/regenerate-1.4.1.tgz", - "integrity": "sha1-ytkq2Oa1kXc0hfvgWkhcr09Ffm8=", + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", "dev": true }, "regenerate-unicode-properties": { @@ -20200,25 +22390,23 @@ } }, "regenerator-runtime": { - "version": "0.13.5", - "resolved": "https://registry.npm.taobao.org/regenerator-runtime/download/regenerator-runtime-0.13.5.tgz", - "integrity": "sha1-2Hih0JS0MG0QuQlkhLM+vVXiZpc=" + "version": "0.13.7", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", + "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==" }, "regenerator-transform": { - "version": "0.10.1", - "resolved": "https://registry.npm.taobao.org/regenerator-transform/download/regenerator-transform-0.10.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fregenerator-transform%2Fdownload%2Fregenerator-transform-0.10.1.tgz", - "integrity": "sha1-HkmWg3Ix2ot/PPQRTXG1aRoGgN0=", + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.5.tgz", + "integrity": "sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==", "dev": true, "requires": { - "babel-runtime": "^6.18.0", - "babel-types": "^6.19.0", - "private": "^0.1.6" + "@babel/runtime": "^7.8.4" } }, "regex-not": { "version": "1.0.2", - "resolved": "https://registry.npm.taobao.org/regex-not/download/regex-not-1.0.2.tgz", - "integrity": "sha1-H07OJ+ALC2XgJHpoEOaoXYOldSw=", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", "dev": true, "requires": { "extend-shallow": "^3.0.2", @@ -20245,6 +22433,27 @@ "requires": { "define-properties": "^1.1.3", "es-abstract": "^1.17.0-next.1" + }, + "dependencies": { + "es-abstract": { + "version": "1.17.7", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.7.tgz", + "integrity": "sha512-VBl/gnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt/Dw8ezpcOHYZXa/J96O8vx+g4x65YKhxOwDUh63aS5g==", + "dev": true, + "requires": { + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1", + "is-callable": "^1.2.2", + "is-regex": "^1.1.1", + "object-inspect": "^1.8.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.1", + "string.prototype.trimend": "^1.0.1", + "string.prototype.trimstart": "^1.0.1" + } + } } }, "regexpp": { @@ -20254,20 +22463,23 @@ "dev": true }, "regexpu-core": { - "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/regexpu-core/download/regexpu-core-2.0.0.tgz", - "integrity": "sha1-SdA4g3uNz4v6W5pCE5k45uoq4kA=", + "version": "4.7.1", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.1.tgz", + "integrity": "sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ==", "dev": true, "requires": { - "regenerate": "^1.2.1", - "regjsgen": "^0.2.0", - "regjsparser": "^0.1.4" + "regenerate": "^1.4.0", + "regenerate-unicode-properties": "^8.2.0", + "regjsgen": "^0.5.1", + "regjsparser": "^0.6.4", + "unicode-match-property-ecmascript": "^1.0.4", + "unicode-match-property-value-ecmascript": "^1.2.0" } }, "registry-auth-token": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-4.2.0.tgz", - "integrity": "sha512-P+lWzPrsgfN+UEpDS3U8AQKg/UjZX6mQSJueZj3EK+vNESoqBSpBUD3gmu4sF9lOsjXWjF11dQKUqemf3veq1w==", + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-4.2.1.tgz", + "integrity": "sha512-6gkSb4U6aWJB4SF2ZvLb76yCBjcvufXBqvvEx1HbmKPkutswjW1xNVRY0+daljIYRbogN7O0etYSlbiaEQyMyw==", "dev": true, "requires": { "rc": "^1.2.8" @@ -20283,15 +22495,15 @@ } }, "regjsgen": { - "version": "0.2.0", - "resolved": "https://registry.npm.taobao.org/regjsgen/download/regjsgen-0.2.0.tgz", - "integrity": "sha1-bAFq3qxVT3WCP+N6wFuS1aTtsfc=", + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.2.tgz", + "integrity": "sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==", "dev": true }, "regjsparser": { - "version": "0.1.5", - "resolved": "https://registry.npm.taobao.org/regjsparser/download/regjsparser-0.1.5.tgz", - "integrity": "sha1-fuj4Tcb6eS0/0K4ijSS9lJ6tIFw=", + "version": "0.6.4", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.4.tgz", + "integrity": "sha512-64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw==", "dev": true, "requires": { "jsesc": "~0.5.0" @@ -20299,7 +22511,7 @@ "dependencies": { "jsesc": { "version": "0.5.0", - "resolved": "https://registry.npm.taobao.org/jsesc/download/jsesc-0.5.0.tgz", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=", "dev": true } @@ -20307,101 +22519,38 @@ }, "relateurl": { "version": "0.2.7", - "resolved": "https://registry.npm.taobao.org/relateurl/download/relateurl-0.2.7.tgz", + "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", "integrity": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=", "dev": true }, "remove-trailing-separator": { "version": "1.1.0", - "resolved": "https://registry.npm.taobao.org/remove-trailing-separator/download/remove-trailing-separator-1.1.0.tgz", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=", "dev": true }, "renderkid": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-2.0.3.tgz", - "integrity": "sha512-z8CLQp7EZBPCwCnncgf9C4XAi3WR0dv+uWu/PjIyhhAb5d6IJ/QZqlHFprHeKT+59//V6BNUsLbvN8+2LarxGA==", + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-2.0.4.tgz", + "integrity": "sha512-K2eXrSOJdq+HuKzlcjOlGoOarUu5SDguDEhE7+Ah4zuOWL40j8A/oHvLlLob9PSTNvVnBd+/q0Er1QfpEuem5g==", "dev": true, "requires": { "css-select": "^1.1.0", "dom-converter": "^0.2", "htmlparser2": "^3.3.0", - "strip-ansi": "^3.0.0", - "utila": "^0.4.0" + "lodash": "^4.17.20", + "strip-ansi": "^3.0.0" }, "dependencies": { "ansi-regex": { "version": "2.1.1", - "resolved": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-2.1.1.tgz", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", "dev": true }, - "css-select": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz", - "integrity": "sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg=", - "dev": true, - "requires": { - "boolbase": "~1.0.0", - "css-what": "2.1", - "domutils": "1.5.1", - "nth-check": "~1.0.1" - } - }, - "css-what": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz", - "integrity": "sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg==", - "dev": true - }, - "domelementtype": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", - "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==", - "dev": true - }, - "domhandler": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz", - "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==", - "dev": true, - "requires": { - "domelementtype": "1" - } - }, - "domutils": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz", - "integrity": "sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8=", - "dev": true, - "requires": { - "dom-serializer": "0", - "domelementtype": "1" - } - }, - "entities": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz", - "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==", - "dev": true - }, - "htmlparser2": { - "version": "3.10.1", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz", - "integrity": "sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==", - "dev": true, - "requires": { - "domelementtype": "^1.3.1", - "domhandler": "^2.3.0", - "domutils": "^1.5.1", - "entities": "^1.1.1", - "inherits": "^2.0.1", - "readable-stream": "^3.1.1" - } - }, "strip-ansi": { "version": "3.0.1", - "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-3.0.1.tgz", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", "dev": true, "requires": { @@ -20412,16 +22561,25 @@ }, "repeat-element": { "version": "1.1.3", - "resolved": "https://registry.npm.taobao.org/repeat-element/download/repeat-element-1.1.3.tgz", - "integrity": "sha1-eC4NglwMWjuzlzH4Tv7mt0Lmsc4=", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz", + "integrity": "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==", "dev": true }, "repeat-string": { "version": "1.6.1", - "resolved": "https://registry.npm.taobao.org/repeat-string/download/repeat-string-1.6.1.tgz", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", "dev": true }, + "repeating": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz", + "integrity": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=", + "dev": true, + "requires": { + "is-finite": "^1.0.0" + } + }, "request": { "version": "2.88.2", "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", @@ -20480,19 +22638,19 @@ }, "require-directory": { "version": "2.1.1", - "resolved": "https://registry.npm.taobao.org/require-directory/download/require-directory-2.1.1.tgz", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", "dev": true }, "require-main-filename": { "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/require-main-filename/download/require-main-filename-2.0.0.tgz", - "integrity": "sha1-0LMp7MfMD2Fkn2IhW+aa9UqomJs=", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", "dev": true }, "requires-port": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/requires-port/download/requires-port-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=", "dev": true }, @@ -20504,22 +22662,29 @@ }, "reserved-words": { "version": "0.1.2", - "resolved": "https://registry.npm.taobao.org/reserved-words/download/reserved-words-0.1.2.tgz", + "resolved": "https://registry.npmjs.org/reserved-words/-/reserved-words-0.1.2.tgz", "integrity": "sha1-AKCUD5jNUBrqqsMWQR2a3FKzGrE=", "dev": true }, "resolve": { - "version": "1.17.0", - "resolved": "https://registry.npm.taobao.org/resolve/download/resolve-1.17.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fresolve%2Fdownload%2Fresolve-1.17.0.tgz", - "integrity": "sha1-sllBtUloIxzC0bt2p5y38sC/hEQ=", + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.19.0.tgz", + "integrity": "sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==", "dev": true, "requires": { + "is-core-module": "^2.1.0", "path-parse": "^1.0.6" } }, + "resolve-alpn": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.0.0.tgz", + "integrity": "sha512-rTuiIEqFmGxne4IovivKSDzld2lWW9QCjqv80SYjPgf+gS35eaCAjaP54CCwGAwBtnCsvNLYtqxe1Nw+i6JEmA==", + "dev": true + }, "resolve-cwd": { "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/resolve-cwd/download/resolve-cwd-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz", "integrity": "sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=", "dev": true, "requires": { @@ -20528,21 +22693,40 @@ "dependencies": { "resolve-from": { "version": "3.0.0", - "resolved": "https://registry.npm.taobao.org/resolve-from/download/resolve-from-3.0.0.tgz", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", "dev": true } } }, + "resolve-dir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz", + "integrity": "sha1-eaQGRMNivoLybv/nOcm7U4IEb0M=", + "dev": true, + "requires": { + "expand-tilde": "^2.0.0", + "global-modules": "^1.0.0" + } + }, "resolve-from": { "version": "4.0.0", - "resolved": "https://registry.npm.taobao.org/resolve-from/download/resolve-from-4.0.0.tgz", - "integrity": "sha1-SrzYUq0y3Xuqv+m0DgCjbbXzkuY=", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", "dev": true }, + "resolve-package": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/resolve-package/-/resolve-package-1.0.1.tgz", + "integrity": "sha1-aG9wsYi9fWdfW7xCgszaBgq7nSc=", + "dev": true, + "requires": { + "get-installed-path": "^2.0.3" + } + }, "resolve-url": { "version": "0.2.1", - "resolved": "https://registry.npm.taobao.org/resolve-url/download/resolve-url-0.2.1.tgz?cache=0&sync_timestamp=1585438700247&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fresolve-url%2Fdownload%2Fresolve-url-0.2.1.tgz", + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=", "dev": true }, @@ -20564,20 +22748,69 @@ "source-map": "0.6.1" }, "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, "emojis-list": { "version": "2.1.0", - "resolved": "https://registry.npm.taobao.org/emojis-list/download/emojis-list-2.1.0.tgz", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=", "dev": true }, - "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", - "dev": true, - "requires": { - "minimist": "^1.2.0" - } + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true }, "loader-utils": { "version": "1.2.3", @@ -20614,7 +22847,7 @@ }, "responselike": { "version": "1.0.2", - "resolved": "https://registry.npm.taobao.org/responselike/download/responselike-1.0.2.tgz", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", "integrity": "sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=", "requires": { "lowercase-keys": "^1.0.0" @@ -20632,19 +22865,25 @@ }, "ret": { "version": "0.1.15", - "resolved": "https://registry.npm.taobao.org/ret/download/ret-0.1.15.tgz", - "integrity": "sha1-uKSCXVvbH8P29Twrwz+BOIaBx7w=", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", "dev": true }, "retry": { "version": "0.12.0", - "resolved": "https://registry.npm.taobao.org/retry/download/retry-0.12.0.tgz", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", "integrity": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=", "dev": true }, + "reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true + }, "rework": { "version": "1.0.1", - "resolved": "https://registry.npm.taobao.org/rework/download/rework-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/rework/-/rework-1.0.1.tgz", "integrity": "sha1-MIBqhBNCtUUQqkEQhQzUhTQUSqc=", "dev": true, "requires": { @@ -20654,7 +22893,7 @@ "dependencies": { "convert-source-map": { "version": "0.3.5", - "resolved": "https://registry.npm.taobao.org/convert-source-map/download/convert-source-map-0.3.5.tgz", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-0.3.5.tgz", "integrity": "sha1-8dgClQr33SYxof6+BZZVDIarMZA=", "dev": true } @@ -20662,19 +22901,19 @@ }, "rework-visit": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/rework-visit/download/rework-visit-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/rework-visit/-/rework-visit-1.0.0.tgz", "integrity": "sha1-mUWygD8hni96ygCtuLyfZA+ELJo=", "dev": true }, "rgb-regex": { "version": "1.0.1", - "resolved": "https://registry.npm.taobao.org/rgb-regex/download/rgb-regex-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/rgb-regex/-/rgb-regex-1.0.1.tgz", "integrity": "sha1-wODWiC3w4jviVKR16O3UGRX+rrE=", "dev": true }, "rgba-regex": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/rgba-regex/download/rgba-regex-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/rgba-regex/-/rgba-regex-1.0.0.tgz", "integrity": "sha1-QzdOLiyglosO8VI0YLfXMP8i7rM=", "dev": true }, @@ -20726,6 +22965,141 @@ } } }, + "rollup-plugin-copy": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/rollup-plugin-copy/-/rollup-plugin-copy-3.3.0.tgz", + "integrity": "sha512-euDjCUSBXZa06nqnwCNADbkAcYDfzwowfZQkto9K/TFhiH+QG7I4PUsEMwM9tDgomGWJc//z7KLW8t+tZwxADA==", + "dev": true, + "requires": { + "@types/fs-extra": "^8.0.1", + "colorette": "^1.1.0", + "fs-extra": "^8.1.0", + "globby": "10.0.1", + "is-plain-object": "^3.0.0" + }, + "dependencies": { + "@nodelib/fs.stat": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.3.tgz", + "integrity": "sha512-bQBFruR2TAwoevBEd/NWMoAAtNGzTRgdrqnYCc7dhzfoNvqPzLyqlEQnzZ3kVnNrSp25iyxE00/3h2fqGAGArA==", + "dev": true + }, + "@types/fs-extra": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-8.1.1.tgz", + "integrity": "sha512-TcUlBem321DFQzBNuz8p0CLLKp0VvF/XH9E4KHNmgwyp4E3AfgI5cjiIVZWlbfThBop2qxFIh4+LeY6hVWWZ2w==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true + }, + "dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "requires": { + "path-type": "^4.0.0" + } + }, + "fast-glob": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.4.tgz", + "integrity": "sha512-kr/Oo6PX51265qeuCYsyGypiO5uJFgBS0jksyG7FUeCyQzNwYnzrNIMR1NXfkZXsMYXYLRAHgISHBz8gQcxKHQ==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.0", + "merge2": "^1.3.0", + "micromatch": "^4.0.2", + "picomatch": "^2.2.1" + } + }, + "fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "globby": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/globby/-/globby-10.0.1.tgz", + "integrity": "sha512-sSs4inE1FB2YQiymcmTv6NWENryABjUNPeWhOvmn4SjtKybglsyPZxFB3U1/+L1bYi0rNZDqCLlHyLYDl1Pq5A==", + "dev": true, + "requires": { + "@types/glob": "^7.1.1", + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.0.3", + "glob": "^7.1.3", + "ignore": "^5.1.1", + "merge2": "^1.2.3", + "slash": "^3.0.0" + } + }, + "ignore": { + "version": "5.1.8", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz", + "integrity": "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==", + "dev": true + }, + "is-plain-object": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-3.0.1.tgz", + "integrity": "sha512-Xnpx182SBMrr/aBik8y+GuR4U1L9FqMSojwDQwPMmxyC6bvEqly9UBCxhauBF5vNh2gwWJNX6oDV7O+OM4z34g==", + "dev": true + }, + "jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "micromatch": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz", + "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==", + "dev": true, + "requires": { + "braces": "^3.0.1", + "picomatch": "^2.0.5" + } + }, + "path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true + }, + "universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true + } + } + }, "rsvp": { "version": "4.8.5", "resolved": "https://registry.npmjs.org/rsvp/-/rsvp-4.8.5.tgz", @@ -20734,13 +23108,19 @@ }, "run-async": { "version": "2.4.1", - "resolved": "https://registry.npm.taobao.org/run-async/download/run-async-2.4.1.tgz", - "integrity": "sha1-hEDsz5nqPnC9QJ1JqriOEMGJpFU=", + "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", + "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", + "dev": true + }, + "run-parallel": { + "version": "1.1.10", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.10.tgz", + "integrity": "sha512-zb/1OuZ6flOlH6tQyMPUrE3x3Ulxjlo9WIVXR4yVYi4H9UXQaeIsPbLn2R3O3vQCnDKkAl2qHiuocKKX4Tz/Sw==", "dev": true }, "run-queue": { "version": "1.0.3", - "resolved": "https://registry.npm.taobao.org/run-queue/download/run-queue-1.0.3.tgz", + "resolved": "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz", "integrity": "sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=", "dev": true, "requires": { @@ -20748,22 +23128,30 @@ } }, "rxjs": { - "version": "6.5.5", - "resolved": "https://registry.npm.taobao.org/rxjs/download/rxjs-6.5.5.tgz", - "integrity": "sha1-xciE4wlMjP7jG/J+uH5UzPyH+ew=", + "version": "6.6.3", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.3.tgz", + "integrity": "sha512-trsQc+xYYXZ3urjOiJOuCOa5N3jAZ3eiSpQB5hIT8zGlL2QfnHLJ2r7GMkBGuIausdJN1OneaI6gQlsqNHHmZQ==", "dev": true, "requires": { "tslib": "^1.9.0" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + } } }, "safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.2.1.tgz", - "integrity": "sha1-Hq+fqb2x/dTsdfWPnNtOa3gn7sY=" + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" }, "safe-regex": { "version": "1.1.0", - "resolved": "https://registry.npm.taobao.org/safe-regex/download/safe-regex-1.1.0.tgz", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", "dev": true, "requires": { @@ -20772,8 +23160,8 @@ }, "safer-buffer": { "version": "2.1.2", - "resolved": "https://registry.npm.taobao.org/safer-buffer/download/safer-buffer-2.1.2.tgz", - "integrity": "sha1-RPoWGwGHuVSd2Eu5GAL5vYOFzWo=" + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" }, "sane": { "version": "4.1.0", @@ -20790,6 +23178,27 @@ "micromatch": "^3.1.4", "minimist": "^1.1.1", "walker": "~1.0.5" + }, + "dependencies": { + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dev": true, + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + } + }, + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "dev": true, + "requires": { + "remove-trailing-separator": "^1.0.1" + } + } } }, "sanitize-filename": { @@ -20820,44 +23229,29 @@ "semver": "^6.3.0" }, "dependencies": { - "clone-deep": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", - "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", "dev": true, "requires": { - "is-plain-object": "^2.0.4", - "kind-of": "^6.0.2", - "shallow-clone": "^3.0.0" + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" } }, - "kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true - }, "semver": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true - }, - "shallow-clone": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", - "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", - "dev": true, - "requires": { - "kind-of": "^6.0.2" - } } } }, "sax": { "version": "1.2.4", - "resolved": "https://registry.npm.taobao.org/sax/download/sax-1.2.4.tgz", - "integrity": "sha1-KBYjTiN4vdxOU1T6tcqold9xANk=" + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" }, "saxes": { "version": "3.1.11", @@ -20870,8 +23264,8 @@ }, "scheduler": { "version": "0.19.1", - "resolved": "https://registry.npm.taobao.org/scheduler/download/scheduler-0.19.1.tgz?cache=0&sync_timestamp=1588782816669&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fscheduler%2Fdownload%2Fscheduler-0.19.1.tgz", - "integrity": "sha1-Tz4u0sGn1laB9MhU+oxaHMtA8ZY=", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.19.1.tgz", + "integrity": "sha512-n/zwRWRYSUj0/3g/otKDRPMh6qv2SYMWNq85IEa8iZyAv8od9zDYpGSnpBEjNgcMNq6Scbu5KfIPxNF72R/2EA==", "dev": true, "requires": { "loose-envify": "^1.1.0", @@ -20879,43 +23273,43 @@ } }, "schema-utils": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz", - "integrity": "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==", + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", "dev": true, "requires": { - "@types/json-schema": "^7.0.4", - "ajv": "^6.12.2", - "ajv-keywords": "^3.4.1" + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" } }, "seek-bzip": { - "version": "1.0.5", - "resolved": "https://registry.npm.taobao.org/seek-bzip/download/seek-bzip-1.0.5.tgz", - "integrity": "sha1-z+kXyz0nS8/6x5J1ivUxc+sfq9w=", + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/seek-bzip/-/seek-bzip-1.0.6.tgz", + "integrity": "sha512-e1QtP3YL5tWww8uKaOCQ18UxIT2laNBXHjV/S2WYCiK4udiv8lkG89KRIoCjUagnAmCBurjF4zEVX2ByBbnCjQ==", "requires": { - "commander": "~2.8.1" + "commander": "^2.8.1" } }, "select-hose": { "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/select-hose/download/select-hose-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", "integrity": "sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=", "dev": true }, "selfsigned": { - "version": "1.10.7", - "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.7.tgz", - "integrity": "sha512-8M3wBCzeWIJnQfl43IKwOmC4H/RAp50S8DF60znzjW5GVqTcSe2vWclt7hmYVPkKPlHWOu5EaWOMZ2Y6W8ZXTA==", + "version": "1.10.8", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.8.tgz", + "integrity": "sha512-2P4PtieJeEwVgTU9QEcwIRDQ/mXJLX8/+I3ur+Pg16nS8oNbrGxEso9NyYWy8NAmXiNl4dlAp5MwoNeCWzON4w==", "dev": true, "requires": { - "node-forge": "0.9.0" + "node-forge": "^0.10.0" } }, "semver": { "version": "7.3.2", - "resolved": "https://registry.npm.taobao.org/semver/download/semver-7.3.2.tgz?cache=0&sync_timestamp=1586886301819&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-7.3.2.tgz", - "integrity": "sha1-YElisFK4HtB4aq6EOJ/7pw/9OTg=" + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz", + "integrity": "sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==" }, "semver-compare": { "version": "1.0.0", @@ -20973,7 +23367,7 @@ "dependencies": { "ms": { "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", "dev": true } @@ -21008,7 +23402,7 @@ }, "serve-index": { "version": "1.9.1", - "resolved": "https://registry.npm.taobao.org/serve-index/download/serve-index-1.9.1.tgz", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", "integrity": "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=", "dev": true, "requires": { @@ -21032,7 +23426,7 @@ }, "http-errors": { "version": "1.6.3", - "resolved": "https://registry.npm.taobao.org/http-errors/download/http-errors-1.6.3.tgz", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", "dev": true, "requires": { @@ -21044,13 +23438,13 @@ }, "inherits": { "version": "2.0.3", - "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.3.tgz", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", "dev": true }, "ms": { "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", "dev": true }, @@ -21076,14 +23470,14 @@ }, "set-blocking": { "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/set-blocking/download/set-blocking-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", "dev": true }, "set-value": { "version": "2.0.1", - "resolved": "https://registry.npm.taobao.org/set-value/download/set-value-2.0.1.tgz?cache=0&sync_timestamp=1585775409029&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fset-value%2Fdownload%2Fset-value-2.0.1.tgz", - "integrity": "sha1-oY1AUw5vB95CKMfe/kInr4ytAFs=", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", "dev": true, "requires": { "extend-shallow": "^2.0.1", @@ -21094,7 +23488,7 @@ "dependencies": { "extend-shallow": { "version": "2.0.1", - "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-2.0.1.tgz", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", "dev": true, "requires": { @@ -21105,14 +23499,14 @@ }, "setimmediate": { "version": "1.0.5", - "resolved": "https://registry.npm.taobao.org/setimmediate/download/setimmediate-1.0.5.tgz", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=", "dev": true }, "setprototypeof": { "version": "1.1.1", - "resolved": "https://registry.npm.taobao.org/setprototypeof/download/setprototypeof-1.1.1.tgz", - "integrity": "sha1-fpWsskqpL1iF4KvvW6ExMw1K5oM=" + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", + "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==" }, "sha.js": { "version": "2.4.11", @@ -21125,32 +23519,12 @@ } }, "shallow-clone": { - "version": "0.1.2", - "resolved": "https://registry.npm.taobao.org/shallow-clone/download/shallow-clone-0.1.2.tgz", - "integrity": "sha1-WQnodLp3EG1zrEFM/sH/yofZcGA=", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", + "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", "dev": true, "requires": { - "is-extendable": "^0.1.1", - "kind-of": "^2.0.1", - "lazy-cache": "^0.2.3", - "mixin-object": "^2.0.1" - }, - "dependencies": { - "kind-of": { - "version": "2.0.1", - "resolved": "https://registry.npm.taobao.org/kind-of/download/kind-of-2.0.1.tgz", - "integrity": "sha1-AY7HpM5+OobLkUG+UZ0kyPqpgbU=", - "dev": true, - "requires": { - "is-buffer": "^1.0.2" - } - }, - "lazy-cache": { - "version": "0.2.7", - "resolved": "https://registry.npm.taobao.org/lazy-cache/download/lazy-cache-0.2.7.tgz", - "integrity": "sha1-f+3fLctu23fRHvHRF6tf/fCrG2U=", - "dev": true - } + "kind-of": "^6.0.2" } }, "shallowequal": { @@ -21161,8 +23535,8 @@ }, "shebang-command": { "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/shebang-command/download/shebang-command-2.0.0.tgz", - "integrity": "sha1-zNCvT4g1+9wmW4JGGq8MNmY/NOo=", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", "dev": true, "requires": { "shebang-regex": "^3.0.0" @@ -21170,25 +23544,20 @@ }, "shebang-regex": { "version": "3.0.0", - "resolved": "https://registry.npm.taobao.org/shebang-regex/download/shebang-regex-3.0.0.tgz", - "integrity": "sha1-rhbxZE2HPsrYQ7AwexQzYtTEIXI=", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", "dev": true }, "shell-quote": { - "version": "1.7.2", - "resolved": "https://registry.npm.taobao.org/shell-quote/download/shell-quote-1.7.2.tgz", - "integrity": "sha1-Z6fQLHbJ2iT5nSCAj8re0ODgS+I=", - "dev": true - }, - "shelljs": { - "version": "0.8.4", - "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.4.tgz", - "integrity": "sha512-7gk3UZ9kOfPLIAbslLzyWeGiEqx9e3rxwZM0KE6EL8GlGwjym9Mrlx5/p33bWTu9YG6vcS4MBxYZDHYr5lr8BQ==", + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.6.1.tgz", + "integrity": "sha1-9HgZSczkAmlxJ0MOo7PFR29IF2c=", "dev": true, "requires": { - "glob": "^7.0.0", - "interpret": "^1.0.0", - "rechoir": "^0.6.2" + "array-filter": "~0.0.0", + "array-map": "~0.0.0", + "array-reduce": "~0.0.0", + "jsonify": "~0.0.0" } }, "shellwords": { @@ -21198,33 +23567,26 @@ "dev": true }, "side-channel": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.2.tgz", - "integrity": "sha512-7rL9YlPHg7Ancea1S96Pa8/QWb4BtXL/TZvS6B8XFetGBeuhAsfmUspK6DokBeZ64+Kj9TCNRD/30pVz1BvQNA==", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.3.tgz", + "integrity": "sha512-A6+ByhlLkksFoUepsGxfj5x1gTSrs+OydsRptUxeNCabQpCFUvcwIczgOigI8vhY/OJCnPnyE9rGiwgvr9cS1g==", "dev": true, "requires": { - "es-abstract": "^1.17.0-next.1", - "object-inspect": "^1.7.0" + "es-abstract": "^1.18.0-next.0", + "object-inspect": "^1.8.0" } }, "signal-exit": { "version": "3.0.3", - "resolved": "https://registry.npm.taobao.org/signal-exit/download/signal-exit-3.0.3.tgz", - "integrity": "sha1-oUEMLt2PB3sItOJTyOrPyvBXRhw=" + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz", + "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==" }, "simple-swizzle": { "version": "0.2.2", - "resolved": "https://registry.npm.taobao.org/simple-swizzle/download/simple-swizzle-0.2.2.tgz", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=", "requires": { "is-arrayish": "^0.3.1" - }, - "dependencies": { - "is-arrayish": { - "version": "0.3.2", - "resolved": "https://registry.npm.taobao.org/is-arrayish/download/is-arrayish-0.3.2.tgz", - "integrity": "sha1-RXSirlb3qyBolvtDHq7tBm/fjwM=" - } } }, "simplebar": { @@ -21240,19 +23602,20 @@ }, "dependencies": { "core-js": { - "version": "3.6.5", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.6.5.tgz", - "integrity": "sha512-vZVEEwZoIsI+vPEuoF9Iqf5H7/M3eeQqWlQnYa8FSKKePuYTf5MWnxb5SDAzCa60b3JBRS5g9b+Dq7b1y/RCrA==", + "version": "3.8.1", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.8.1.tgz", + "integrity": "sha512-9Id2xHY1W7m8hCl8NkhQn5CufmF/WuR30BTRewvCXc1aZd3kMECwNZ69ndLbekKfakw9Rf2Xyc+QR6E7Gg+obg==", "dev": true } } }, "simplebar-core": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/simplebar-core/-/simplebar-core-1.0.2.tgz", - "integrity": "sha512-01BSmdUphVatUB78rjDMZzkfawW7iYX1+zJmKJRsGzj5BnOmBgKC6zYrUbg3DdR0j3wPwdKjbUfcanV+kQwrcg==", + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/simplebar-core/-/simplebar-core-1.0.6.tgz", + "integrity": "sha512-QkVyus6srcqAWRpdAdcqaWuZP6z3Fd/Ot+QCyvb7Pnt2hZyZHglHcYVXmoDB4hKdJuZfDe1/G/0a4o+Qhzxw4Q==", "dev": true, "requires": { + "@babel/runtime": "^7.11.2", "can-use-dom": "^0.1.0", "lodash-es": "^4.17.15" } @@ -21270,13 +23633,59 @@ }, "dependencies": { "core-js": { - "version": "3.6.5", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.6.5.tgz", - "integrity": "sha512-vZVEEwZoIsI+vPEuoF9Iqf5H7/M3eeQqWlQnYa8FSKKePuYTf5MWnxb5SDAzCa60b3JBRS5g9b+Dq7b1y/RCrA==", + "version": "3.8.1", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.8.1.tgz", + "integrity": "sha512-9Id2xHY1W7m8hCl8NkhQn5CufmF/WuR30BTRewvCXc1aZd3kMECwNZ69ndLbekKfakw9Rf2Xyc+QR6E7Gg+obg==", "dev": true } } }, + "single-line-log": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/single-line-log/-/single-line-log-1.1.2.tgz", + "integrity": "sha1-wvg/Jzo+GhbtsJlWYdoO1e8DM2Q=", + "dev": true, + "requires": { + "string-width": "^1.0.1" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "dev": true, + "requires": { + "number-is-nan": "^1.0.0" + } + }, + "string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "dev": true, + "requires": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + } + } + }, "sisteransi": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", @@ -21284,9 +23693,9 @@ "dev": true }, "slash": { - "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/slash/download/slash-2.0.0.tgz", - "integrity": "sha1-3lUoUaF1nfOo8gZTVEL17E3eq0Q=", + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz", + "integrity": "sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=", "dev": true }, "slice-ansi": { @@ -21306,8 +23715,8 @@ }, "snapdragon": { "version": "0.8.2", - "resolved": "https://registry.npm.taobao.org/snapdragon/download/snapdragon-0.8.2.tgz", - "integrity": "sha1-ZJIufFZbDhQgS6GqfWlkJ40lGC0=", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", "dev": true, "requires": { "base": "^0.11.1", @@ -21322,8 +23731,8 @@ "dependencies": { "debug": { "version": "2.6.9", - "resolved": "https://registry.npm.taobao.org/debug/download/debug-2.6.9.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fdebug%2Fdownload%2Fdebug-2.6.9.tgz", - "integrity": "sha1-XRKFFd8TT/Mn6QpMk/Tgd6U2NB8=", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, "requires": { "ms": "2.0.0" @@ -21331,7 +23740,7 @@ }, "define-property": { "version": "0.2.5", - "resolved": "https://registry.npm.taobao.org/define-property/download/define-property-0.2.5.tgz", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", "dev": true, "requires": { @@ -21340,7 +23749,7 @@ }, "extend-shallow": { "version": "2.0.1", - "resolved": "https://registry.npm.taobao.org/extend-shallow/download/extend-shallow-2.0.1.tgz", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", "dev": true, "requires": { @@ -21349,13 +23758,13 @@ }, "ms": { "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/ms/download/ms-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", "dev": true }, "source-map": { "version": "0.5.7", - "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.5.7.tgz", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", "dev": true } @@ -21363,8 +23772,8 @@ }, "snapdragon-node": { "version": "2.1.1", - "resolved": "https://registry.npm.taobao.org/snapdragon-node/download/snapdragon-node-2.1.1.tgz", - "integrity": "sha1-bBdfhv8UvbByRWPo88GwIaKGhTs=", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", "dev": true, "requires": { "define-property": "^1.0.0", @@ -21374,7 +23783,7 @@ "dependencies": { "define-property": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/define-property/download/define-property-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", "dev": true, "requires": { @@ -21383,8 +23792,8 @@ }, "is-accessor-descriptor": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/is-accessor-descriptor/download/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha1-FpwvbT3x+ZJhgHI2XJsOofaHhlY=", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", "dev": true, "requires": { "kind-of": "^6.0.0" @@ -21392,8 +23801,8 @@ }, "is-data-descriptor": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/is-data-descriptor/download/is-data-descriptor-1.0.0.tgz", - "integrity": "sha1-2Eh2Mh0Oet0DmQQGq7u9NrqSaMc=", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", "dev": true, "requires": { "kind-of": "^6.0.0" @@ -21401,30 +23810,35 @@ }, "is-descriptor": { "version": "1.0.2", - "resolved": "https://registry.npm.taobao.org/is-descriptor/download/is-descriptor-1.0.2.tgz", - "integrity": "sha1-OxWXRqZmBLBPjIFSS6NlxfFNhuw=", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", "dev": true, "requires": { "is-accessor-descriptor": "^1.0.0", "is-data-descriptor": "^1.0.0", "kind-of": "^6.0.2" } - }, - "kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npm.taobao.org/kind-of/download/kind-of-6.0.3.tgz", - "integrity": "sha1-B8BQNKbDSfoG4k+jWqdttFgM5N0=", - "dev": true } } }, "snapdragon-util": { "version": "3.0.1", - "resolved": "https://registry.npm.taobao.org/snapdragon-util/download/snapdragon-util-3.0.1.tgz", - "integrity": "sha1-+VZHlIbyrNeXAGk/b3uAXkWrVuI=", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", "dev": true, "requires": { "kind-of": "^3.2.0" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } } }, "sockjs": { @@ -21438,6 +23852,15 @@ "websocket-driver": "0.6.5" }, "dependencies": { + "faye-websocket": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.10.0.tgz", + "integrity": "sha1-TkkvjQTftviQA1B/btvy1QHnxvQ=", + "dev": true, + "requires": { + "websocket-driver": ">=0.5.1" + } + }, "uuid": { "version": "3.4.0", "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", @@ -21456,9 +23879,9 @@ } }, "sockjs-client": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.4.0.tgz", - "integrity": "sha512-5zaLyO8/nri5cua0VtOrFXBPK1jbL4+1cebT/mmKA1E1ZXOvJrII75bPu0l0k843G/+iAbhEqzyKr0w/eCCj7g==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.3.0.tgz", + "integrity": "sha512-R9jxEzhnnrdxLCNln0xg5uGHqMnkhPSTzUZH2eXcR03S/On9Yvoq2wyUZILRUhZCNVu2PmwWVoyuiPz8th8zbg==", "dev": true, "requires": { "debug": "^3.2.5", @@ -21470,29 +23893,20 @@ }, "dependencies": { "debug": { - "version": "3.2.6", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", - "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, "requires": { "ms": "^2.1.1" } - }, - "faye-websocket": { - "version": "0.11.3", - "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.3.tgz", - "integrity": "sha512-D2y4bovYpzziGgbHYtGCMjlJM36vAl/y+xUyn1C+FVx8szd1E+86KwVw6XvYSzOP8iMpm1X0I4xJD+QtUb36OA==", - "dev": true, - "requires": { - "websocket-driver": ">=0.5.1" - } } } }, "socks": { - "version": "2.4.4", - "resolved": "https://registry.npmjs.org/socks/-/socks-2.4.4.tgz", - "integrity": "sha512-7LmHN4IHj1Vpd/k8D872VGCHJ6yIVyeFkfIBExRmGPYQ/kdUkpdg9eKh9oOzYYYKQhuxavayJHTnmBG+EzluUA==", + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/socks/-/socks-2.5.1.tgz", + "integrity": "sha512-oZCsJJxapULAYJaEYBSzMcz8m3jqgGrHaGhkmU/o/PQfFWYWxkAaA0UMGImb6s6tEXfKi959X6VJjMMQ3P6TTQ==", "requires": { "ip": "^1.1.5", "smart-buffer": "^4.1.0" @@ -21510,7 +23924,7 @@ }, "sort-keys": { "version": "1.1.2", - "resolved": "https://registry.npm.taobao.org/sort-keys/download/sort-keys-1.1.2.tgz", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", "integrity": "sha1-RBttTTRnmPG05J6JIK37oOVD+a0=", "requires": { "is-plain-obj": "^1.0.0" @@ -21518,7 +23932,7 @@ }, "sort-keys-length": { "version": "1.0.1", - "resolved": "https://registry.npm.taobao.org/sort-keys-length/download/sort-keys-length-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/sort-keys-length/-/sort-keys-length-1.0.1.tgz", "integrity": "sha1-nLb09OnkgVWmqgZx7dM2/xR5oYg=", "requires": { "sort-keys": "^1.0.0" @@ -21532,13 +23946,13 @@ }, "source-map": { "version": "0.6.1", - "resolved": "https://registry.npm.taobao.org/source-map/download/source-map-0.6.1.tgz", - "integrity": "sha1-dHIq8y6WFOnCh6jQu95IteLxomM=" + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" }, "source-map-resolve": { "version": "0.5.3", - "resolved": "https://registry.npm.taobao.org/source-map-resolve/download/source-map-resolve-0.5.3.tgz?cache=0&sync_timestamp=1584831908370&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map-resolve%2Fdownload%2Fsource-map-resolve-0.5.3.tgz", - "integrity": "sha1-GQhmvs51U+H48mei7oLGBrVQmho=", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", "dev": true, "requires": { "atob": "^2.1.2", @@ -21550,8 +23964,8 @@ }, "source-map-support": { "version": "0.5.19", - "resolved": "https://registry.npm.taobao.org/source-map-support/download/source-map-support-0.5.19.tgz?cache=0&sync_timestamp=1587719289626&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsource-map-support%2Fdownload%2Fsource-map-support-0.5.19.tgz", - "integrity": "sha1-qYti+G3K9PZzmWSMCFKRq56P7WE=", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", + "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", "dev": true, "requires": { "buffer-from": "^1.0.0", @@ -21560,20 +23974,20 @@ }, "source-map-url": { "version": "0.4.0", - "resolved": "https://registry.npm.taobao.org/source-map-url/download/source-map-url-0.4.0.tgz", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz", "integrity": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=", "dev": true }, "spawn-command": { "version": "0.0.2-1", - "resolved": "https://registry.npm.taobao.org/spawn-command/download/spawn-command-0.0.2-1.tgz", + "resolved": "https://registry.npmjs.org/spawn-command/-/spawn-command-0.0.2-1.tgz", "integrity": "sha1-YvXpRmmBwbeW3Fkpk34RycaSG9A=", "dev": true }, "spdx-correct": { "version": "3.1.1", - "resolved": "https://registry.npm.taobao.org/spdx-correct/download/spdx-correct-3.1.1.tgz", - "integrity": "sha1-3s6BrJweZxPl99G28X1Gj6U9iak=", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", + "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", "dev": true, "requires": { "spdx-expression-parse": "^3.0.0", @@ -21582,14 +23996,14 @@ }, "spdx-exceptions": { "version": "2.3.0", - "resolved": "https://registry.npm.taobao.org/spdx-exceptions/download/spdx-exceptions-2.3.0.tgz", - "integrity": "sha1-PyjOGnegA3JoPq3kpDMYNSeiFj0=", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", "dev": true }, "spdx-expression-parse": { "version": "3.0.1", - "resolved": "https://registry.npm.taobao.org/spdx-expression-parse/download/spdx-expression-parse-3.0.1.tgz", - "integrity": "sha1-z3D1BILu/cmOPOCmgz5KU87rpnk=", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", "dev": true, "requires": { "spdx-exceptions": "^2.1.0", @@ -21597,9 +24011,9 @@ } }, "spdx-license-ids": { - "version": "3.0.5", - "resolved": "https://registry.npm.taobao.org/spdx-license-ids/download/spdx-license-ids-3.0.5.tgz", - "integrity": "sha1-NpS1gEVnpFjTyARYQqY1hjL2JlQ=", + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.7.tgz", + "integrity": "sha512-U+MTEOO0AiDzxwFvoa4JVnMV6mZlJKk2sBLt90s7G0Gd0Mlknc7kxEn3nuDPNZRta7O2uy8oLcZLVT+4sqNZHQ==", "dev": true }, "spdy": { @@ -21627,8 +24041,27 @@ "obuf": "^1.1.2", "readable-stream": "^3.0.6", "wbuf": "^1.7.3" + }, + "dependencies": { + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + } } }, + "speedometer": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/speedometer/-/speedometer-0.1.4.tgz", + "integrity": "sha1-mHbb0qFp0xFUAtSObqYynIgWpQ0=", + "dev": true + }, "split": { "version": "0.3.3", "resolved": "https://registry.npmjs.org/split/-/split-0.3.3.tgz", @@ -21640,8 +24073,8 @@ }, "split-string": { "version": "3.1.0", - "resolved": "https://registry.npm.taobao.org/split-string/download/split-string-3.1.0.tgz", - "integrity": "sha1-fLCd2jqGWFcFxks5pkZgOGguj+I=", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", "dev": true, "requires": { "extend-shallow": "^3.0.0" @@ -21649,7 +24082,7 @@ }, "sprintf-js": { "version": "1.0.3", - "resolved": "https://registry.npm.taobao.org/sprintf-js/download/sprintf-js-1.0.3.tgz", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" }, "sshpk": { @@ -21670,13 +24103,12 @@ } }, "ssri": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-7.1.0.tgz", - "integrity": "sha512-77/WrDZUWocK0mvA5NTRQyveUf+wsrIc6vyrxpS8tVvYBcX215QbafrJR3KtkpskIzoFLqqNuuYQvxaMjXJ/0g==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-6.0.1.tgz", + "integrity": "sha512-3Wge10hNcT1Kur4PDFwEieXSCMCJs/7WvSACcrMYrNp+b8kDL1/0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx/QA==", "dev": true, "requires": { - "figgy-pudding": "^3.5.1", - "minipass": "^3.1.1" + "figgy-pudding": "^3.5.1" } }, "stable": { @@ -21691,10 +24123,21 @@ "integrity": "sha1-VHxws0fo0ytOEI6hoqFZ5f3eGcA=" }, "stack-utils": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-1.0.2.tgz", - "integrity": "sha512-MTX+MeG5U994cazkjd/9KNAapsHnibjMLnfXodlkXw76JEea0UiNzrqidzo1emMwk7w5Qhc9jd4Bn9TBb1MFwA==", - "dev": true + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-1.0.4.tgz", + "integrity": "sha512-IPDJfugEGbfizBwBZRZ3xpccMdRyP5lqsBWXGQWimVjua/ccLCeMOAVjlc1R7LxFjo5sEDhyNIXd8mo/AiDS9w==", + "dev": true, + "requires": { + "escape-string-regexp": "^2.0.0" + }, + "dependencies": { + "escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true + } + } }, "stat-mode": { "version": "1.0.0", @@ -21704,7 +24147,7 @@ }, "static-extend": { "version": "0.1.2", - "resolved": "https://registry.npm.taobao.org/static-extend/download/static-extend-0.1.2.tgz", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", "dev": true, "requires": { @@ -21714,7 +24157,7 @@ "dependencies": { "define-property": { "version": "0.2.5", - "resolved": "https://registry.npm.taobao.org/define-property/download/define-property-0.2.5.tgz", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", "dev": true, "requires": { @@ -21725,12 +24168,12 @@ }, "statuses": { "version": "1.5.0", - "resolved": "https://registry.npm.taobao.org/statuses/download/statuses-1.5.0.tgz", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=" }, "stealthy-require": { "version": "1.1.1", - "resolved": "https://registry.npm.taobao.org/stealthy-require/download/stealthy-require-1.1.1.tgz", + "resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz", "integrity": "sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=", "dev": true }, @@ -21742,38 +24185,6 @@ "requires": { "inherits": "~2.0.1", "readable-stream": "^2.0.2" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } } }, "stream-combiner": { @@ -21806,38 +24217,6 @@ "readable-stream": "^2.3.6", "to-arraybuffer": "^1.0.0", "xtend": "^4.0.0" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } } }, "stream-shift": { @@ -21848,17 +24227,17 @@ }, "stream-slicer": { "version": "0.0.6", - "resolved": "https://registry.npm.taobao.org/stream-slicer/download/stream-slicer-0.0.6.tgz", + "resolved": "https://registry.npmjs.org/stream-slicer/-/stream-slicer-0.0.6.tgz", "integrity": "sha1-+GsqxcJEC3oKh7cfM2ZcB4gEYTg=" }, "strict-uri-encode": { "version": "1.1.0", - "resolved": "https://registry.npm.taobao.org/strict-uri-encode/download/strict-uri-encode-1.1.0.tgz", + "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", "integrity": "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=" }, "string-length": { "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/string-length/download/string-length-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-2.0.0.tgz", "integrity": "sha1-1A27aGo6zpYMHP/KVivyxF+DY+0=", "dev": true, "requires": { @@ -21868,7 +24247,7 @@ "dependencies": { "ansi-regex": { "version": "3.0.0", - "resolved": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-3.0.0.tgz", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", "dev": true }, @@ -21880,7 +24259,7 @@ }, "strip-ansi": { "version": "4.0.0", - "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-4.0.0.tgz", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", "dev": true, "requires": { @@ -21889,16 +24268,10 @@ } } }, - "string-natural-compare": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/string-natural-compare/-/string-natural-compare-3.0.1.tgz", - "integrity": "sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==", - "dev": true - }, "string-width": { "version": "4.2.0", - "resolved": "https://registry.npm.taobao.org/string-width/download/string-width-4.2.0.tgz", - "integrity": "sha1-lSGCxGzHssMT0VluYjmSvRY7crU=", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz", + "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==", "requires": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", @@ -21906,67 +24279,46 @@ } }, "string.prototype.matchall": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.2.tgz", - "integrity": "sha512-N/jp6O5fMf9os0JU3E72Qhf590RSRZU/ungsL/qJUYVTNv7hTG0P/dbPjxINVN9jpscu3nzYwKESU3P3RY5tOg==", + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.3.tgz", + "integrity": "sha512-OBxYDA2ifZQ2e13cP82dWFMaCV9CGF8GzmN4fljBVw5O5wep0lu4gacm1OL6MjROoUnB8VbkWRThqkV2YFLNxw==", "dev": true, "requires": { + "call-bind": "^1.0.0", "define-properties": "^1.1.3", - "es-abstract": "^1.17.0", + "es-abstract": "^1.18.0-next.1", "has-symbols": "^1.0.1", "internal-slot": "^1.0.2", "regexp.prototype.flags": "^1.3.0", - "side-channel": "^1.0.2" + "side-channel": "^1.0.3" } }, "string.prototype.trimend": { - "version": "1.0.1", - "resolved": "https://registry.npm.taobao.org/string.prototype.trimend/download/string.prototype.trimend-1.0.1.tgz?cache=0&sync_timestamp=1586465409341&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fstring.prototype.trimend%2Fdownload%2Fstring.prototype.trimend-1.0.1.tgz", - "integrity": "sha1-hYEqa4R6wAInD1gIFGBkyZX7aRM=", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.3.tgz", + "integrity": "sha512-ayH0pB+uf0U28CtjlLvL7NaohvR1amUvVZk+y3DYb0Ey2PUV5zPkkKy9+U1ndVEIXO8hNg18eIv9Jntbii+dKw==", "dev": true, "requires": { - "define-properties": "^1.1.3", - "es-abstract": "^1.17.5" - } - }, - "string.prototype.trimleft": { - "version": "2.1.2", - "resolved": "https://registry.npm.taobao.org/string.prototype.trimleft/download/string.prototype.trimleft-2.1.2.tgz?cache=0&sync_timestamp=1585557033464&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fstring.prototype.trimleft%2Fdownload%2Fstring.prototype.trimleft-2.1.2.tgz", - "integrity": "sha1-RAiqLl1t3QyagHObCH+8BnwDs8w=", - "dev": true, - "requires": { - "define-properties": "^1.1.3", - "es-abstract": "^1.17.5", - "string.prototype.trimstart": "^1.0.0" - } - }, - "string.prototype.trimright": { - "version": "2.1.2", - "resolved": "https://registry.npm.taobao.org/string.prototype.trimright/download/string.prototype.trimright-2.1.2.tgz?cache=0&sync_timestamp=1585557209944&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fstring.prototype.trimright%2Fdownload%2Fstring.prototype.trimright-2.1.2.tgz", - "integrity": "sha1-x28c7zDyG7rYr+uNsVEUls+w8qM=", - "dev": true, - "requires": { - "define-properties": "^1.1.3", - "es-abstract": "^1.17.5", - "string.prototype.trimend": "^1.0.0" + "call-bind": "^1.0.0", + "define-properties": "^1.1.3" } }, "string.prototype.trimstart": { - "version": "1.0.1", - "resolved": "https://registry.npm.taobao.org/string.prototype.trimstart/download/string.prototype.trimstart-1.0.1.tgz?cache=0&sync_timestamp=1586465413621&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fstring.prototype.trimstart%2Fdownload%2Fstring.prototype.trimstart-1.0.1.tgz", - "integrity": "sha1-FK9tnzSwU/fPyJty+PLuFLkDmlQ=", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.3.tgz", + "integrity": "sha512-oBIBUy5lea5tt0ovtOFiEQaBkoBBkyJhZXzJYrSmDo5IUUqbOPvVezuRs/agBIdZ2p2Eo1FD6bD9USyBLfl3xg==", "dev": true, "requires": { - "define-properties": "^1.1.3", - "es-abstract": "^1.17.5" + "call-bind": "^1.0.0", + "define-properties": "^1.1.3" } }, "string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npm.taobao.org/string_decoder/download/string_decoder-1.3.0.tgz", - "integrity": "sha1-QvEUWUpGzxqOMLCoT1bHjD7awh4=", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "requires": { - "safe-buffer": "~5.2.0" + "safe-buffer": "~5.1.0" } }, "stringify-object": { @@ -21982,7 +24334,7 @@ "dependencies": { "is-obj": { "version": "1.0.1", - "resolved": "https://registry.npm.taobao.org/is-obj/download/is-obj-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", "integrity": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=", "dev": true } @@ -21990,15 +24342,15 @@ }, "strip-ansi": { "version": "6.0.0", - "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-6.0.0.tgz", - "integrity": "sha1-CxVx3XZpzNTz4G4U7x7tJiJa5TI=", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", + "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", "requires": { "ansi-regex": "^5.0.0" } }, "strip-bom": { "version": "3.0.0", - "resolved": "https://registry.npm.taobao.org/strip-bom/download/strip-bom-3.0.0.tgz", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", "dev": true }, @@ -22014,28 +24366,37 @@ }, "strip-dirs": { "version": "2.1.0", - "resolved": "https://registry.npm.taobao.org/strip-dirs/download/strip-dirs-2.1.0.tgz", - "integrity": "sha1-SYdzYmT8NEzyD2w0rKnRPR1O1sU=", + "resolved": "https://registry.npmjs.org/strip-dirs/-/strip-dirs-2.1.0.tgz", + "integrity": "sha512-JOCxOeKLm2CAS73y/U4ZeZPTkE+gNVCzKt7Eox84Iej1LT/2pTWYpZKJuxwQpvX1LiZb1xokNR7RLfuBAa7T3g==", "requires": { "is-natural-number": "^4.0.1" } }, "strip-eof": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/strip-eof/download/strip-eof-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", "dev": true }, + "strip-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz", + "integrity": "sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=", + "dev": true, + "requires": { + "get-stdin": "^4.0.1" + } + }, "strip-json-comments": { "version": "2.0.1", - "resolved": "https://registry.npm.taobao.org/strip-json-comments/download/strip-json-comments-2.0.1.tgz", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", "dev": true }, "strip-outer": { "version": "1.0.1", - "resolved": "https://registry.npm.taobao.org/strip-outer/download/strip-outer-1.0.1.tgz", - "integrity": "sha1-sv0qv2YEudHmATBXGV34Nrip1jE=", + "resolved": "https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz", + "integrity": "sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==", "requires": { "escape-string-regexp": "^1.0.2" } @@ -22048,19 +24409,6 @@ "requires": { "loader-utils": "^1.1.0", "schema-utils": "^1.0.0" - }, - "dependencies": { - "schema-utils": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", - "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", - "dev": true, - "requires": { - "ajv": "^6.1.0", - "ajv-errors": "^1.0.0", - "ajv-keywords": "^3.1.0" - } - } } }, "styled-components": { @@ -22079,12 +24427,29 @@ "hoist-non-react-statics": "^3.0.0", "shallowequal": "^1.1.0", "supports-color": "^5.5.0" + }, + "dependencies": { + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } } }, "styled-is": { "version": "1.3.0", - "resolved": "https://registry.npm.taobao.org/styled-is/download/styled-is-1.3.0.tgz", - "integrity": "sha1-QxmkHpyD0VZnu+ek3qkMVIiSCRo=", + "resolved": "https://registry.npmjs.org/styled-is/-/styled-is-1.3.0.tgz", + "integrity": "sha512-AjIoyFzESxNFmkO+5ZwfCDNj6fCtEpg7A40CFBHGYpog07KuJRCmOINpIMH70DAvs0y1RqwH96yVynJVQjfTLw==", "dev": true }, "stylehacks": { @@ -22098,36 +24463,6 @@ "postcss-selector-parser": "^3.0.0" }, "dependencies": { - "browserslist": { - "version": "4.14.0", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.14.0.tgz", - "integrity": "sha512-pUsXKAF2lVwhmtpeA3LJrZ76jXuusrNyhduuQs7CDFf9foT4Y38aQOserd2lMe5DSSrjf3fx34oHwryuvxAUgQ==", - "dev": true, - "requires": { - "caniuse-lite": "^1.0.30001111", - "electron-to-chromium": "^1.3.523", - "escalade": "^3.0.2", - "node-releases": "^1.1.60" - } - }, - "caniuse-lite": { - "version": "1.0.30001114", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001114.tgz", - "integrity": "sha512-ml/zTsfNBM+T1+mjglWRPgVsu2L76GAaADKX5f4t0pbhttEp0WMawJsHDYlFkVZkoA+89uvBRrVrEE4oqenzXQ==", - "dev": true - }, - "electron-to-chromium": { - "version": "1.3.533", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.533.tgz", - "integrity": "sha512-YqAL+NXOzjBnpY+dcOKDlZybJDCOzgsq4koW3fvyty/ldTmsb4QazZpOWmVvZ2m0t5jbBf7L0lIGU3BUipwG+A==", - "dev": true - }, - "node-releases": { - "version": "1.1.60", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.60.tgz", - "integrity": "sha512-gsO4vjEdQaTusZAEebUWp2a5d7dF5DYoIpDG7WySnk7BuZDW+GPpHXoXXuYawRBr/9t5q54tirPz79kFIWg4dA==", - "dev": true - }, "postcss-selector-parser": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", @@ -22141,6 +24476,33 @@ } } }, + "subscriptions-transport-ws": { + "version": "0.9.18", + "resolved": "https://registry.npmjs.org/subscriptions-transport-ws/-/subscriptions-transport-ws-0.9.18.tgz", + "integrity": "sha512-tztzcBTNoEbuErsVQpTN2xUNN/efAZXyCyL5m3x4t6SKrEiTL2N8SaKWBFWM4u56pL79ULif3zjyeq+oV+nOaA==", + "dev": true, + "requires": { + "backo2": "^1.0.2", + "eventemitter3": "^3.1.0", + "iterall": "^1.2.1", + "symbol-observable": "^1.0.4", + "ws": "^5.2.0" + }, + "dependencies": { + "eventemitter3": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-3.1.2.tgz", + "integrity": "sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q==", + "dev": true + } + } + }, + "sudo-prompt": { + "version": "9.2.1", + "resolved": "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-9.2.1.tgz", + "integrity": "sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw==", + "dev": true + }, "sumchecker": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/sumchecker/-/sumchecker-3.0.1.tgz", @@ -22151,12 +24513,12 @@ } }, "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npm.taobao.org/supports-color/download/supports-color-5.5.0.tgz", - "integrity": "sha1-4uaaRKyHcveKHsCzW2id9lMO/I8=", + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "requires": { - "has-flag": "^3.0.0" + "has-flag": "^4.0.0" } }, "svg-parser": { @@ -22184,12 +24546,92 @@ "stable": "^0.1.8", "unquote": "~1.1.1", "util.promisify": "~1.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "css-select": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", + "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", + "dev": true, + "requires": { + "boolbase": "^1.0.0", + "css-what": "^3.2.1", + "domutils": "^1.7.0", + "nth-check": "^1.0.2" + } + }, + "css-what": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", + "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==", + "dev": true + }, + "domutils": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", + "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", + "dev": true, + "requires": { + "dom-serializer": "0", + "domelementtype": "1" + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } } }, "symbol-observable": { "version": "1.2.0", - "resolved": "https://registry.npm.taobao.org/symbol-observable/download/symbol-observable-1.2.0.tgz", - "integrity": "sha1-wiaIrtTqs83C3+rLtWFmBWCgCAQ=", + "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz", + "integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==", "dev": true }, "symbol-tree": { @@ -22200,8 +24642,8 @@ }, "table": { "version": "5.4.6", - "resolved": "https://registry.npm.taobao.org/table/download/table-5.4.6.tgz", - "integrity": "sha1-EpLRlQDOP4YFOwXw6Ofko7shB54=", + "resolved": "https://registry.npmjs.org/table/-/table-5.4.6.tgz", + "integrity": "sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug==", "dev": true, "requires": { "ajv": "^6.10.2", @@ -22212,14 +24654,14 @@ "dependencies": { "ansi-regex": { "version": "4.1.0", - "resolved": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-4.1.0.tgz", - "integrity": "sha1-i5+PCM8ay4Q3Vqg5yox+MWjFGZc=", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", "dev": true }, "ansi-styles": { "version": "3.2.1", - "resolved": "https://registry.npm.taobao.org/ansi-styles/download/ansi-styles-3.2.1.tgz?cache=0&sync_timestamp=1577903718856&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fansi-styles%2Fdownload%2Fansi-styles-3.2.1.tgz", - "integrity": "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, "requires": { "color-convert": "^1.9.0" @@ -22227,14 +24669,14 @@ }, "astral-regex": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/astral-regex/download/astral-regex-1.0.0.tgz", - "integrity": "sha1-bIw/uCfdQ+45GPJ7gngqt2WKb9k=", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz", + "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==", "dev": true }, "color-convert": { "version": "1.9.3", - "resolved": "https://registry.npm.taobao.org/color-convert/download/color-convert-1.9.3.tgz", - "integrity": "sha1-u3GFBpDh8TZWfeYp0tVHHe2kweg=", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "dev": true, "requires": { "color-name": "1.1.3" @@ -22242,26 +24684,26 @@ }, "color-name": { "version": "1.1.3", - "resolved": "https://registry.npm.taobao.org/color-name/download/color-name-1.1.3.tgz", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", "dev": true }, "emoji-regex": { "version": "7.0.3", - "resolved": "https://registry.npm.taobao.org/emoji-regex/download/emoji-regex-7.0.3.tgz", - "integrity": "sha1-kzoEBShgyF6DwSJHnEdIqOTHIVY=", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", "dev": true }, "is-fullwidth-code-point": { "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/is-fullwidth-code-point/download/is-fullwidth-code-point-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", "dev": true }, "slice-ansi": { "version": "2.1.0", - "resolved": "https://registry.npm.taobao.org/slice-ansi/download/slice-ansi-2.1.0.tgz", - "integrity": "sha1-ys12k0YaY3pXiNkqfdT7oGjoFjY=", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz", + "integrity": "sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==", "dev": true, "requires": { "ansi-styles": "^3.2.0", @@ -22271,8 +24713,8 @@ }, "string-width": { "version": "3.1.0", - "resolved": "https://registry.npm.taobao.org/string-width/download/string-width-3.1.0.tgz", - "integrity": "sha1-InZ74htirxCBV0MG9prFG2IgOWE=", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", "dev": true, "requires": { "emoji-regex": "^7.0.1", @@ -22282,8 +24724,8 @@ }, "strip-ansi": { "version": "5.2.0", - "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-5.2.0.tgz", - "integrity": "sha1-jJpTb+tq/JYr36WxBKUJHBrZwK4=", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", "dev": true, "requires": { "ansi-regex": "^4.1.0" @@ -22309,31 +24751,12 @@ "mkdirp": "^0.5.0", "safe-buffer": "^5.1.2", "yallist": "^3.0.3" - }, - "dependencies": { - "fs-minipass": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.7.tgz", - "integrity": "sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA==", - "requires": { - "minipass": "^2.6.0" - } - }, - "minipass": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-2.9.0.tgz", - "integrity": "sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==", - "requires": { - "safe-buffer": "^5.1.2", - "yallist": "^3.0.0" - } - } } }, "tar-stream": { "version": "1.6.2", - "resolved": "https://registry.npm.taobao.org/tar-stream/download/tar-stream-1.6.2.tgz", - "integrity": "sha1-jqVdqzeXIlPZqa+Q/c1VmuQ1xVU=", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.2.tgz", + "integrity": "sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A==", "requires": { "bl": "^1.0.0", "buffer-alloc": "^1.2.0", @@ -22342,33 +24765,27 @@ "readable-stream": "^2.3.0", "to-buffer": "^1.1.1", "xtend": "^4.0.0" + } + }, + "temp": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/temp/-/temp-0.9.4.tgz", + "integrity": "sha512-yYrrsWnrXMcdsnu/7YMYAofM1ktpL5By7vZhf15CrXijWWrEYZks5AXBudalfSWJLlnen/QUJUB5aoB0kqZUGA==", + "dev": true, + "optional": true, + "requires": { + "mkdirp": "^0.5.1", + "rimraf": "~2.6.2" }, "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-2.3.7.tgz", - "integrity": "sha1-Hsoc9xGu+BTAT2IlKjamL2yyO1c=", + "rimraf": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", + "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", + "dev": true, + "optional": true, "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npm.taobao.org/safe-buffer/download/safe-buffer-5.1.2.tgz", - "integrity": "sha1-mR7GnSluAxN0fVm9/St0XDX4go0=" - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npm.taobao.org/string_decoder/download/string_decoder-1.1.1.tgz", - "integrity": "sha1-nPFhG6YmhdcDCunkujQUnDrwP8g=", - "requires": { - "safe-buffer": "~5.1.0" + "glob": "^7.1.3" } } } @@ -22394,6 +24811,15 @@ "universalify": "^0.1.0" } }, + "jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6" + } + }, "universalify": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", @@ -22403,9 +24829,9 @@ } }, "term-size": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/term-size/-/term-size-2.2.0.tgz", - "integrity": "sha512-a6sumDlzyHVJWb8+YofY4TW112G6p2FCPEAFk+59gIYHv3XHRhm9ltVQ9kli4hNWeQBwSpe8cRN25x0ROunMOw==", + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/term-size/-/term-size-2.2.1.tgz", + "integrity": "sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==", "dev": true }, "terser": { @@ -22417,120 +24843,30 @@ "commander": "^2.20.0", "source-map": "~0.6.1", "source-map-support": "~0.5.12" - }, - "dependencies": { - "commander": { - "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", - "dev": true - } } }, "terser-webpack-plugin": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-2.3.8.tgz", - "integrity": "sha512-/fKw3R+hWyHfYx7Bv6oPqmk4HGQcrWLtV3X6ggvPuwPNHSnzvVV51z6OaaCOus4YLjutYGOz3pEpbhe6Up2s1w==", + "version": "1.4.5", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz", + "integrity": "sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==", "dev": true, "requires": { - "cacache": "^13.0.1", - "find-cache-dir": "^3.3.1", - "jest-worker": "^25.4.0", - "p-limit": "^2.3.0", - "schema-utils": "^2.6.6", + "cacache": "^12.0.2", + "find-cache-dir": "^2.1.0", + "is-wsl": "^1.1.0", + "schema-utils": "^1.0.0", "serialize-javascript": "^4.0.0", "source-map": "^0.6.1", - "terser": "^4.6.12", - "webpack-sources": "^1.4.3" + "terser": "^4.1.2", + "webpack-sources": "^1.4.0", + "worker-farm": "^1.7.0" }, "dependencies": { - "find-cache-dir": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz", - "integrity": "sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==", - "dev": true, - "requires": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" - } - }, - "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=", "dev": true - }, - "jest-worker": { - "version": "25.5.0", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-25.5.0.tgz", - "integrity": "sha512-/dsSmUkIy5EBGfv/IjjqmFxrNAUpBERfGs1oHROyD7yxjG/w+t0GOJDX8O1k32ySmd7+a5IhnJU2qQFcJ4n1vw==", - "dev": true, - "requires": { - "merge-stream": "^2.0.0", - "supports-color": "^7.0.0" - } - }, - "locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "requires": { - "p-locate": "^4.1.0" - } - }, - "make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - "dev": true, - "requires": { - "semver": "^6.0.0" - } - }, - "p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "requires": { - "p-limit": "^2.2.0" - } - }, - "pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", - "dev": true, - "requires": { - "find-up": "^4.0.0" - } - }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - }, - "supports-color": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz", - "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } } } }, @@ -22546,9 +24882,18 @@ "require-main-filename": "^2.0.0" }, "dependencies": { + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "requires": { + "locate-path": "^3.0.0" + } + }, "load-json-file": { "version": "4.0.0", - "resolved": "https://registry.npm.taobao.org/load-json-file/download/load-json-file-4.0.0.tgz", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=", "dev": true, "requires": { @@ -22558,6 +24903,56 @@ "strip-bom": "^3.0.0" } }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "requires": { + "p-limit": "^2.0.0" + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true + }, + "parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "dev": true, + "requires": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + } + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "dev": true + }, "path-type": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", @@ -22569,13 +24964,13 @@ }, "pify": { "version": "3.0.0", - "resolved": "https://registry.npm.taobao.org/pify/download/pify-3.0.0.tgz", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", "dev": true }, "read-pkg": { "version": "3.0.0", - "resolved": "https://registry.npm.taobao.org/read-pkg/download/read-pkg-3.0.0.tgz", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", "integrity": "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=", "dev": true, "requires": { @@ -22603,24 +24998,30 @@ }, "text-table": { "version": "0.2.0", - "resolved": "https://registry.npm.taobao.org/text-table/download/text-table-0.2.0.tgz", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", "dev": true }, "throat": { "version": "4.1.0", - "resolved": "https://registry.npm.taobao.org/throat/download/throat-4.1.0.tgz", + "resolved": "https://registry.npmjs.org/throat/-/throat-4.1.0.tgz", "integrity": "sha1-iQN8vJLFarGJJua6TLsgDhVnKmo=", "dev": true }, + "throttleit": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/throttleit/-/throttleit-0.0.2.tgz", + "integrity": "sha1-z+34jmDADdlpe2H90qg0OptoDq8=", + "dev": true + }, "through": { "version": "2.3.8", - "resolved": "https://registry.npm.taobao.org/through/download/through-2.3.8.tgz", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=" }, "through2": { "version": "0.6.5", - "resolved": "https://registry.npm.taobao.org/through2/download/through2-0.6.5.tgz", + "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz", "integrity": "sha1-QaucZ7KdVyCQcUEOHXp6lozTrUg=", "requires": { "readable-stream": ">=1.0.33-1 <1.1.0-0", @@ -22629,12 +25030,12 @@ "dependencies": { "isarray": { "version": "0.0.1", - "resolved": "https://registry.npm.taobao.org/isarray/download/isarray-0.0.1.tgz", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" }, "readable-stream": { "version": "1.0.34", - "resolved": "https://registry.npm.taobao.org/readable-stream/download/readable-stream-1.0.34.tgz", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", "requires": { "core-util-is": "~1.0.0", @@ -22645,7 +25046,7 @@ }, "string_decoder": { "version": "0.10.31", - "resolved": "https://registry.npm.taobao.org/string_decoder/download/string_decoder-0.10.31.tgz", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" } } @@ -22658,29 +25059,36 @@ }, "timed-out": { "version": "4.0.1", - "resolved": "https://registry.npm.taobao.org/timed-out/download/timed-out-4.0.1.tgz", + "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz", "integrity": "sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8=" }, "timers-browserify": { - "version": "2.0.11", - "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.11.tgz", - "integrity": "sha512-60aV6sgJ5YEbzUdn9c8kYGIqOubPoUdqQCul3SBAsRCZ40s6Y5cMcrW4dt3/k/EsbLVJNl9n6Vz3fTc+k2GeKQ==", + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz", + "integrity": "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==", "dev": true, "requires": { "setimmediate": "^1.0.4" } }, "timm": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/timm/-/timm-1.7.0.tgz", - "integrity": "sha512-oVYHPG5KiUJ3KrbBTmW2kTauIO9E1lDEUM6K92HVuwnPfTt7W8UXZG3vqOo4tVaHRI9AHToVHqhzIUUFkDN6rA==" + "version": "1.7.1", + "resolved": "https://registry.npmjs.org/timm/-/timm-1.7.1.tgz", + "integrity": "sha512-IjZc9KIotudix8bMaBW6QvMuq64BrJWFs1+4V0lXwWGQZwH+LnX87doAYhem4caOEusRP9/g6jVDQmZ8XOk1nw==" }, "timsort": { "version": "0.3.0", - "resolved": "https://registry.npm.taobao.org/timsort/download/timsort-0.3.0.tgz", + "resolved": "https://registry.npmjs.org/timsort/-/timsort-0.3.0.tgz", "integrity": "sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=", "dev": true }, + "tiny-each-async": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/tiny-each-async/-/tiny-each-async-2.0.3.tgz", + "integrity": "sha1-jru/1tYpXxNwAD+7NxYq/loKUdE=", + "dev": true, + "optional": true + }, "tiny-warning": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/tiny-warning/-/tiny-warning-1.0.3.tgz", @@ -22688,72 +25096,93 @@ "dev": true }, "tinycolor2": { - "version": "1.4.1", - "resolved": "https://registry.npm.taobao.org/tinycolor2/download/tinycolor2-1.4.1.tgz", - "integrity": "sha1-9PrTM0R7wLB9TcjpIJ2POaisd+g=" + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.4.2.tgz", + "integrity": "sha512-vJhccZPs965sV/L2sU4oRQVAos0pQXwsvTLkWYdqJ+a8Q5kPFzJTuOFwy7UniPli44NKQGAglksjvOcpo95aZA==" }, "tldts-core": { - "version": "5.6.55", - "resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-5.6.55.tgz", - "integrity": "sha512-xAUqjkPfwfnCoRxds3xrMi6j1nuR1F4iuB9dqE30sgi0P+7c4NfnbwQTk80Vu1CL15ZyRZeZ+yAwWo2rWxkC9w==" + "version": "5.6.79", + "resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-5.6.79.tgz", + "integrity": "sha512-AO9I0voAPAg11WFX4cHpgqjwDbTWjK9HkuEglSgy898YmaR8rthrz4EBm8odBFY5DhgA3za7SCqYQIVqGMzBdA==" }, "tldts-experimental": { - "version": "5.6.55", - "resolved": "https://registry.npmjs.org/tldts-experimental/-/tldts-experimental-5.6.55.tgz", - "integrity": "sha512-GKfOgP1XxHgVcGp9fIA/dPzr2cSUpS5hCpJBvkpTZ8hwOj5UX7mSUSO8tag7udWdmIDh6FdJhIPCzmDaM9n7WQ==", + "version": "5.6.79", + "resolved": "https://registry.npmjs.org/tldts-experimental/-/tldts-experimental-5.6.79.tgz", + "integrity": "sha512-zedHVtzy9HrwTxtnEiq6xGGuFnUUMiWh4jCsZI2GzLo1xkqviwAm3fRMGbA/7TSqqZduhhoKFE089pxBzJiZLA==", "requires": { - "tldts-core": "^5.6.55" + "tldts-core": "^5.6.79" } }, "tmp": { "version": "0.2.1", - "resolved": "https://registry.npm.taobao.org/tmp/download/tmp-0.2.1.tgz", - "integrity": "sha1-hFf8MDfc9HGcJRNnoa9lAO4czxQ=", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz", + "integrity": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==", "requires": { "rimraf": "^3.0.0" } }, + "tmp-promise": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/tmp-promise/-/tmp-promise-3.0.2.tgz", + "integrity": "sha512-OyCLAKU1HzBjL6Ev3gxUeraJNlbNingmi8IrHHEsYH8LTmEuhvYfqvhn2F/je+mjf4N58UmZ96OMEy1JanSCpA==", + "dev": true, + "optional": true, + "requires": { + "tmp": "^0.2.0" + } + }, "tmpl": { "version": "1.0.4", - "resolved": "https://registry.npm.taobao.org/tmpl/download/tmpl-1.0.4.tgz", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.4.tgz", "integrity": "sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE=", "dev": true }, "to-arraybuffer": { "version": "1.0.1", - "resolved": "https://registry.npm.taobao.org/to-arraybuffer/download/to-arraybuffer-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=", "dev": true }, "to-buffer": { "version": "1.1.1", - "resolved": "https://registry.npm.taobao.org/to-buffer/download/to-buffer-1.1.1.tgz", - "integrity": "sha1-STvUj2LXxD/N7TE6A9ytsuEhOoA=" + "resolved": "https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz", + "integrity": "sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg==" }, "to-fast-properties": { "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/to-fast-properties/download/to-fast-properties-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", "dev": true }, "to-object-path": { "version": "0.3.0", - "resolved": "https://registry.npm.taobao.org/to-object-path/download/to-object-path-0.3.0.tgz", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", "dev": true, "requires": { "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } } }, "to-readable-stream": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/to-readable-stream/download/to-readable-stream-1.0.0.tgz", - "integrity": "sha1-zgqgwvPfat+FLvtASng+d8BHV3E=" + "resolved": "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz", + "integrity": "sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==" }, "to-regex": { "version": "3.0.2", - "resolved": "https://registry.npm.taobao.org/to-regex/download/to-regex-3.0.2.tgz", - "integrity": "sha1-E8/dmzNlUvMLUfM6iuG0Knp1mc4=", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", "dev": true, "requires": { "define-property": "^2.0.2", @@ -22763,19 +25192,17 @@ } }, "to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npm.taobao.org/to-regex-range/download/to-regex-range-2.1.1.tgz", - "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", - "dev": true, + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", "requires": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" + "is-number": "^7.0.0" } }, "toidentifier": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/toidentifier/download/toidentifier-1.0.0.tgz", - "integrity": "sha1-fhvjRw8ed5SLxD2Uo8j013UrpVM=" + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", + "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==" }, "tough-cookie": { "version": "2.5.0", @@ -22789,28 +25216,28 @@ }, "tr46": { "version": "1.0.1", - "resolved": "https://registry.npm.taobao.org/tr46/download/tr46-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", "integrity": "sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=", "dev": true, "requires": { "punycode": "^2.1.0" } }, - "traverse": { - "version": "0.3.9", - "resolved": "https://registry.npm.taobao.org/traverse/download/traverse-0.3.9.tgz", - "integrity": "sha1-cXuPIgzAu3tE5AUUwisui7xw2Lk=", - "dev": true - }, "tree-kill": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", "dev": true }, + "trim-newlines": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz", + "integrity": "sha1-WIeWa7WCpFA6QetST301ARgVphM=", + "dev": true + }, "trim-repeated": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/trim-repeated/download/trim-repeated-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz", "integrity": "sha1-42RqLqTokTEr9+rObPsFOAvAHCE=", "requires": { "escape-string-regexp": "^1.0.2" @@ -22823,13 +25250,94 @@ }, "truncate-utf8-bytes": { "version": "1.0.2", - "resolved": "https://registry.npm.taobao.org/truncate-utf8-bytes/download/truncate-utf8-bytes-1.0.2.tgz", + "resolved": "https://registry.npmjs.org/truncate-utf8-bytes/-/truncate-utf8-bytes-1.0.2.tgz", "integrity": "sha1-QFkjkJWS1W94pYGENLC3hInKXys=", "dev": true, "requires": { "utf8-byte-length": "^1.0.1" } }, + "ts-loader": { + "version": "8.0.12", + "resolved": "https://registry.npmjs.org/ts-loader/-/ts-loader-8.0.12.tgz", + "integrity": "sha512-UIivVfGVJDdwwjgSrbtcL9Nf10c1BWnL1mxAQUVcnhNIn/P9W3nP5v60Z0aBMtc7ZrE11lMmU6+5jSgAXmGaYw==", + "dev": true, + "requires": { + "chalk": "^2.3.0", + "enhanced-resolve": "^4.0.0", + "loader-utils": "^1.0.2", + "micromatch": "^4.0.0", + "semver": "^6.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "micromatch": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz", + "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==", + "dev": true, + "requires": { + "braces": "^3.0.1", + "picomatch": "^2.0.5" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, "ts-pnp": { "version": "1.1.6", "resolved": "https://registry.npmjs.org/ts-pnp/-/ts-pnp-1.1.6.tgz", @@ -22846,24 +25354,12 @@ "json5": "^1.0.1", "minimist": "^1.2.0", "strip-bom": "^3.0.0" - }, - "dependencies": { - "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", - "dev": true, - "requires": { - "minimist": "^1.2.0" - } - } } }, "tslib": { - "version": "1.13.0", - "resolved": "https://registry.npm.taobao.org/tslib/download/tslib-1.13.0.tgz", - "integrity": "sha1-yIHhPMcBWJTtkUhi0nZDb6mkcEM=", - "dev": true + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.0.3.tgz", + "integrity": "sha512-uZtkfKblCEQtZKBF6EBXVZeQNl82yqtDQdv+eck8u7tdPxjLu2/lp5/uPW+um2tpuxINHWy3GhiccY7QgEaVHQ==" }, "tsutils": { "version": "3.17.1", @@ -22872,11 +25368,19 @@ "dev": true, "requires": { "tslib": "^1.8.1" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + } } }, "tty-browserify": { "version": "0.0.0", - "resolved": "https://registry.npm.taobao.org/tty-browserify/download/tty-browserify-0.0.0.tgz", + "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=", "dev": true }, @@ -22889,7 +25393,7 @@ }, "tunnel-agent": { "version": "0.6.0", - "resolved": "https://registry.npm.taobao.org/tunnel-agent/download/tunnel-agent-0.6.0.tgz", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", "dev": true, "requires": { @@ -22898,7 +25402,7 @@ }, "tweetnacl": { "version": "0.14.5", - "resolved": "https://registry.npm.taobao.org/tweetnacl/download/tweetnacl-0.14.5.tgz?cache=0&sync_timestamp=1581365146868&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ftweetnacl%2Fdownload%2Ftweetnacl-0.14.5.tgz", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", "dev": true }, @@ -22910,7 +25414,7 @@ }, "type-check": { "version": "0.3.2", - "resolved": "https://registry.npm.taobao.org/type-check/download/type-check-0.3.2.tgz", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", "requires": { "prelude-ls": "~1.1.2" @@ -22935,14 +25439,14 @@ }, "typedarray": { "version": "0.0.6", - "resolved": "https://registry.npm.taobao.org/typedarray/download/typedarray-0.0.6.tgz", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=", "dev": true }, "typedarray-to-buffer": { "version": "3.1.5", - "resolved": "https://registry.npm.taobao.org/typedarray-to-buffer/download/typedarray-to-buffer-3.1.5.tgz", - "integrity": "sha1-qX7nqf9CaRufeD/xvFES/j/KkIA=", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", "requires": { "is-typedarray": "^1.0.0" } @@ -22954,21 +25458,79 @@ "dev": true }, "typescript": { - "version": "3.9.7", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.7.tgz", - "integrity": "sha512-BLbiRkiBzAwsjut4x/dsibSTB6yWpwT5qWmC2OfuCg3GgVQCSgMs4vEctYPhsaGtd0AeuuHMkjZ2h2WG8MSzRw==", + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.1.2.tgz", + "integrity": "sha512-thGloWsGH3SOxv1SoY7QojKi0tc+8FnOmiarEGMbd/lar7QOEd3hvlx3Fp5y6FlDUGl9L+pd4n2e+oToGMmhRQ==", "dev": true }, - "typescript-compiler": { - "version": "1.4.1-2", - "resolved": "https://registry.npm.taobao.org/typescript-compiler/download/typescript-compiler-1.4.1-2.tgz", - "integrity": "sha1-uk99si2RU0oZKdkACdzhYety/T8=", - "dev": true + "typesync": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/typesync/-/typesync-0.8.0.tgz", + "integrity": "sha512-2VZx10U4QpB03uYFvjbYvM3E+pYETL/aBi+o3GuhiWIY4TOVpyxcSOdYZn9qd2Qlfb0tMjdAAxHmMhriN/SlnQ==", + "dev": true, + "requires": { + "awilix": "^4.2.7", + "axios": "^0.21.0", + "chalk": "^4.1.0", + "cosmiconfig": "^7.0.0", + "detect-indent": "^6.0.0", + "glob": "^7.1.4", + "ora": "^5.1.0", + "semver": "^7.3.2" + }, + "dependencies": { + "axios": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.0.tgz", + "integrity": "sha512-fmkJBknJKoZwem3/IKSSLpkdNXZeBu5Q7GA/aRsr2btgrptmSCxi2oFjZHqGdK9DoTil9PIHlPIZw2EcRJXRvw==", + "dev": true, + "requires": { + "follow-redirects": "^1.10.0" + } + }, + "cosmiconfig": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.0.tgz", + "integrity": "sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA==", + "dev": true, + "requires": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + } + }, + "follow-redirects": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.13.1.tgz", + "integrity": "sha512-SSG5xmZh1mkPGyKzjZP8zLjltIfpW32Y5QpdNJyjcfGxK3qo3NDDkZOZSFiGn1A6SclQxY9GzEwAHQ3dmYRWpg==", + "dev": true + }, + "parse-json": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.1.0.tgz", + "integrity": "sha512-+mi/lmVVNKFNVyLXV31ERiy2CY5E1/F6QtJFEzoChPRwwngMNXRDQ9GJ5WdE2Z2P4AujsOi0/+2qHID68KwfIQ==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + } + }, + "path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true + } + } }, "unbzip2-stream": { "version": "1.4.3", - "resolved": "https://registry.npm.taobao.org/unbzip2-stream/download/unbzip2-stream-1.4.3.tgz?cache=0&sync_timestamp=1590563214812&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Funbzip2-stream%2Fdownload%2Funbzip2-stream-1.4.3.tgz", - "integrity": "sha1-sNoExDcTEd93HNwhXofyEwmRrOc=", + "resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz", + "integrity": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==", "requires": { "buffer": "^5.2.1", "through": "^2.3.8" @@ -23004,8 +25566,8 @@ }, "union-value": { "version": "1.0.1", - "resolved": "https://registry.npm.taobao.org/union-value/download/union-value-1.0.1.tgz", - "integrity": "sha1-C2/nuDWuzaYcbqTU8CwUIh4QmEc=", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", "dev": true, "requires": { "arr-union": "^3.1.0", @@ -23016,13 +25578,13 @@ }, "uniq": { "version": "1.0.1", - "resolved": "https://registry.npm.taobao.org/uniq/download/uniq-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", "integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=", "dev": true }, "uniqs": { "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/uniqs/download/uniqs-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz", "integrity": "sha1-/+3ks2slKQaW5uFl1KWe25mOawI=", "dev": true }, @@ -23053,34 +25615,25 @@ "crypto-random-string": "^2.0.0" } }, - "universal-user-agent": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-4.0.1.tgz", - "integrity": "sha512-LnST3ebHwVL2aNe4mejI9IQh2HfZ1RLo8Io2HugSif8ekzD1TlWpHpColOB/eh8JHMLkGH3Akqf040I+4ylNxg==", - "dev": true, - "requires": { - "os-name": "^3.1.0" - } - }, "universalify": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/universalify/download/universalify-1.0.0.tgz?cache=0&sync_timestamp=1583531006552&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Funiversalify%2Fdownload%2Funiversalify-1.0.0.tgz", - "integrity": "sha1-thodoXPoQ1sv48Z9Kbmt+FlL0W0=" + "resolved": "https://registry.npmjs.org/universalify/-/universalify-1.0.0.tgz", + "integrity": "sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug==" }, "unpipe": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/unpipe/download/unpipe-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" }, "unquote": { "version": "1.1.1", - "resolved": "https://registry.npm.taobao.org/unquote/download/unquote-1.1.1.tgz", + "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz", "integrity": "sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=", "dev": true }, "unset-value": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/unset-value/download/unset-value-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", "dev": true, "requires": { @@ -23090,7 +25643,7 @@ "dependencies": { "has-value": { "version": "0.3.1", - "resolved": "https://registry.npm.taobao.org/has-value/download/has-value-0.3.1.tgz", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", "dev": true, "requires": { @@ -23101,7 +25654,7 @@ "dependencies": { "isobject": { "version": "2.1.0", - "resolved": "https://registry.npm.taobao.org/isobject/download/isobject-2.1.0.tgz", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", "dev": true, "requires": { @@ -23112,7 +25665,7 @@ }, "has-values": { "version": "0.1.4", - "resolved": "https://registry.npm.taobao.org/has-values/download/has-values-0.1.4.tgz", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=", "dev": true } @@ -23127,62 +25680,6 @@ "path-exists": "^4.0.0" } }, - "unzipper": { - "version": "0.10.11", - "resolved": "https://registry.npmjs.org/unzipper/-/unzipper-0.10.11.tgz", - "integrity": "sha512-+BrAq2oFqWod5IESRjL3S8baohbevGcVA+teAIOYWM3pDVdseogqbzhhvvmiyQrUNKFUnDMtELW3X8ykbyDCJw==", - "dev": true, - "requires": { - "big-integer": "^1.6.17", - "binary": "~0.3.0", - "bluebird": "~3.4.1", - "buffer-indexof-polyfill": "~1.0.0", - "duplexer2": "~0.1.4", - "fstream": "^1.0.12", - "graceful-fs": "^4.2.2", - "listenercount": "~1.0.1", - "readable-stream": "~2.3.6", - "setimmediate": "~1.0.4" - }, - "dependencies": { - "bluebird": { - "version": "3.4.7", - "resolved": "https://registry.npm.taobao.org/bluebird/download/bluebird-3.4.7.tgz", - "integrity": "sha1-9y12C+Cbf3bQjtj66Ysomo0F+rM=", - "dev": true - }, - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, "upath": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", @@ -23219,28 +25716,13 @@ "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } } } }, "uri-js": { - "version": "4.2.2", - "resolved": "https://registry.npm.taobao.org/uri-js/download/uri-js-4.2.2.tgz", - "integrity": "sha1-lMVA4f93KVbiKZUHwBCupsiDjrA=", + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.0.tgz", + "integrity": "sha512-B0yRTzYdUCCn9n+F4+Gh4yIDtMQcaJsmYBDsTSG8g/OejKBodLQ2IHfN3bM7jUsRXndopT7OIXWdYqc1fjmV6g==", "dev": true, "requires": { "punycode": "^2.1.0" @@ -23248,13 +25730,13 @@ }, "urix": { "version": "0.1.0", - "resolved": "https://registry.npm.taobao.org/urix/download/urix-0.1.0.tgz", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=", "dev": true }, "url": { "version": "0.11.0", - "resolved": "https://registry.npm.taobao.org/url/download/url-0.11.0.tgz", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", "dev": true, "requires": { @@ -23264,7 +25746,7 @@ "dependencies": { "punycode": { "version": "1.3.2", - "resolved": "https://registry.npm.taobao.org/punycode/download/punycode-1.3.2.tgz", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=", "dev": true } @@ -23282,17 +25764,28 @@ }, "dependencies": { "mime": { - "version": "2.4.6", - "resolved": "https://registry.npmjs.org/mime/-/mime-2.4.6.tgz", - "integrity": "sha512-RZKhC3EmpBchfTGBVb8fb+RL2cWyw/32lshnsETttkBAyAUXSGHxbEJWWRXc751DrIxG1q04b8QwMbAwkRPpUA==", + "version": "2.4.7", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.4.7.tgz", + "integrity": "sha512-dhNd1uA2u397uQk3Nv5LM4lm93WYDUXFn3Fu291FJerns4jyTudqhIWe4W04YLy7Uk1tm1Ore04NpjRvQp/NPA==", "dev": true + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + } } } }, "url-parse": { "version": "1.4.7", - "resolved": "https://registry.npm.taobao.org/url-parse/download/url-parse-1.4.7.tgz", - "integrity": "sha1-qKg1NejACjFuQDpdtKwbm4U64ng=", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.4.7.tgz", + "integrity": "sha512-d3uaVyzDB9tQoSXFvuSUNFibTd9zxd2bkVrDRvF5TmvWWQwqE4lgYJ5m+x1DbecWkw+LK4RNl2CU1hHuOKPVlg==", "dev": true, "requires": { "querystringify": "^2.1.1", @@ -23301,7 +25794,7 @@ }, "url-parse-lax": { "version": "3.0.0", - "resolved": "https://registry.npm.taobao.org/url-parse-lax/download/url-parse-lax-3.0.0.tgz", + "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz", "integrity": "sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=", "requires": { "prepend-http": "^2.0.0" @@ -23309,18 +25802,28 @@ }, "url-to-options": { "version": "1.0.1", - "resolved": "https://registry.npm.taobao.org/url-to-options/download/url-to-options-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz", "integrity": "sha1-FQWgOiiaSMvXpDTvuu7FBV9WM6k=" }, "use": { "version": "3.1.1", - "resolved": "https://registry.npm.taobao.org/use/download/use-3.1.1.tgz", - "integrity": "sha1-1QyMrHmhn7wg8pEfVuuXP04QBw8=", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", "dev": true }, + "username": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/username/-/username-5.1.0.tgz", + "integrity": "sha512-PCKbdWw85JsYMvmCv5GH3kXmM66rCd9m1hBEDutPNv94b/pqCMT4NtcKyeWYvLFiE8b+ha1Jdl8XAaUdPn5QTg==", + "dev": true, + "requires": { + "execa": "^1.0.0", + "mem": "^4.3.0" + } + }, "utf8-byte-length": { "version": "1.0.4", - "resolved": "https://registry.npm.taobao.org/utf8-byte-length/download/utf8-byte-length-1.0.4.tgz", + "resolved": "https://registry.npmjs.org/utf8-byte-length/-/utf8-byte-length-1.0.4.tgz", "integrity": "sha1-9F8VDExm7uloGGUFq5P8u4rWv2E=", "dev": true }, @@ -23333,48 +25836,46 @@ } }, "util": { - "version": "0.10.3", - "resolved": "https://registry.npm.taobao.org/util/download/util-0.10.3.tgz?cache=0&sync_timestamp=1588238331562&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Futil%2Fdownload%2Futil-0.10.3.tgz", - "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz", + "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==", "dev": true, "requires": { - "inherits": "2.0.1" + "inherits": "2.0.3" }, "dependencies": { "inherits": { - "version": "2.0.1", - "resolved": "https://registry.npm.taobao.org/inherits/download/inherits-2.0.1.tgz", - "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", "dev": true } } }, "util-deprecate": { "version": "1.0.2", - "resolved": "https://registry.npm.taobao.org/util-deprecate/download/util-deprecate-1.0.2.tgz", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" }, "util.promisify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz", - "integrity": "sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==", + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz", + "integrity": "sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==", "dev": true, "requires": { - "define-properties": "^1.1.3", - "es-abstract": "^1.17.2", - "has-symbols": "^1.0.1", - "object.getownpropertydescriptors": "^2.1.0" + "define-properties": "^1.1.2", + "object.getownpropertydescriptors": "^2.0.3" } }, "utila": { "version": "0.4.0", - "resolved": "https://registry.npm.taobao.org/utila/download/utila-0.4.0.tgz", + "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", "integrity": "sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=", "dev": true }, "utils-merge": { "version": "1.0.1", - "resolved": "https://registry.npm.taobao.org/utils-merge/download/utils-merge-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=", "dev": true }, @@ -23384,15 +25885,15 @@ "integrity": "sha512-FOmRr+FmWEIG8uhZv6C2bTgEVXsHk08kE7mPlrBbEe+c3r9pjceVPgupIfNIhc4yx55H69OXANrUaSuu9eInKg==" }, "v8-compile-cache": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.1.1.tgz", - "integrity": "sha512-8OQ9CL+VWyt3JStj7HX7/ciTL2V3Rl1Wf5OL+SNTm0yK1KvtReVulksyeRnCANHHuUxHlQig+JJDlUhBt1NQDQ==", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.2.0.tgz", + "integrity": "sha512-gTpR5XQNKFwOd4clxfnhaqvfqMpqEwr4tOtCyz4MtYZX2JYhfr1JvBFKdS+7K/9rfpZR3VLX+YWBbKoxCgS43Q==", "dev": true }, "validate-npm-package-license": { "version": "3.0.4", - "resolved": "https://registry.npm.taobao.org/validate-npm-package-license/download/validate-npm-package-license-3.0.4.tgz", - "integrity": "sha1-/JH2uce6FchX9MssXe/uw51PQQo=", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", "dev": true, "requires": { "spdx-correct": "^3.0.0", @@ -23401,7 +25902,7 @@ }, "vary": { "version": "1.1.2", - "resolved": "https://registry.npm.taobao.org/vary/download/vary-1.1.2.tgz", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=", "dev": true }, @@ -23413,7 +25914,7 @@ }, "verror": { "version": "1.10.0", - "resolved": "https://registry.npm.taobao.org/verror/download/verror-1.10.0.tgz", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", "dev": true, "requires": { @@ -23435,9 +25936,9 @@ "dev": true }, "vue": { - "version": "2.6.11", - "resolved": "https://registry.npmjs.org/vue/-/vue-2.6.11.tgz", - "integrity": "sha512-VfPwgcGABbGAue9+sfrD4PuwFar7gPb1yl1UK1MwXoQPAw0BKSqWfoYCT/ThFrdEVWoI51dBuyCoiNU9bZDZxQ==", + "version": "2.6.12", + "resolved": "https://registry.npmjs.org/vue/-/vue-2.6.12.tgz", + "integrity": "sha512-uhmLFETqPPNyuLLbsKz6ioJ4q7AZHzD8ZVFNATNyICSZouqP2Sz0rotWQC8UNBF6VGSCs5abnKJoStA6JbCbfg==", "dev": true }, "w3c-hr-time": { @@ -23475,7 +25976,7 @@ }, "walker": { "version": "1.0.7", - "resolved": "https://registry.npm.taobao.org/walker/download/walker-1.0.7.tgz", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.7.tgz", "integrity": "sha1-L3+bj9ENZ3JisYqITijRlhjgKPs=", "dev": true, "requires": { @@ -23483,27 +25984,50 @@ } }, "watchpack": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.7.4.tgz", - "integrity": "sha512-aWAgTW4MoSJzZPAicljkO1hsi1oKj/RRq/OJQh2PKI2UKL04c2Bs+MBOB+BBABHTXJpf9mCwHN7ANCvYsvY2sg==", + "version": "1.7.5", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.7.5.tgz", + "integrity": "sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==", "dev": true, "requires": { "chokidar": "^3.4.1", "graceful-fs": "^4.1.2", "neo-async": "^2.5.0", - "watchpack-chokidar2": "^2.0.0" + "watchpack-chokidar2": "^2.0.1" } }, "watchpack-chokidar2": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/watchpack-chokidar2/-/watchpack-chokidar2-2.0.0.tgz", - "integrity": "sha512-9TyfOyN/zLUbA288wZ8IsMZ+6cbzvsNyEzSBp6e/zkifi6xxbl8SmQ/CxQq32k8NNqrdVEVUVSEf56L4rQ/ZxA==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz", + "integrity": "sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==", "dev": true, "optional": true, "requires": { "chokidar": "^2.1.8" }, "dependencies": { + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dev": true, + "optional": true, + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + }, + "dependencies": { + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "dev": true, + "optional": true, + "requires": { + "remove-trailing-separator": "^1.0.1" + } + } + } + }, "binary-extensions": { "version": "1.13.1", "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", @@ -23511,6 +26035,25 @@ "dev": true, "optional": true }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "optional": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + } + }, "chokidar": { "version": "2.1.8", "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", @@ -23532,6 +26075,29 @@ "upath": "^1.1.1" } }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "optional": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dev": true, + "optional": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + } + }, "fsevents": { "version": "1.2.13", "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", @@ -23545,7 +26111,7 @@ }, "glob-parent": { "version": "3.1.0", - "resolved": "https://registry.npm.taobao.org/glob-parent/download/glob-parent-3.1.0.tgz", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", "dev": true, "optional": true, @@ -23556,7 +26122,7 @@ "dependencies": { "is-glob": { "version": "3.1.0", - "resolved": "https://registry.npm.taobao.org/is-glob/download/is-glob-3.1.0.tgz", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", "dev": true, "optional": true, @@ -23568,7 +26134,7 @@ }, "is-binary-path": { "version": "1.0.1", - "resolved": "https://registry.npm.taobao.org/is-binary-path/download/is-binary-path-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", "dev": true, "optional": true, @@ -23576,27 +26142,24 @@ "binary-extensions": "^1.0.0" } }, - "normalize-path": { + "is-number": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true, - "optional": true - }, - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", "dev": true, "optional": true, "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" + "kind-of": "^3.0.2" + } + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "optional": true, + "requires": { + "is-buffer": "^1.1.5" } }, "readdirp": { @@ -23611,21 +26174,15 @@ "readable-stream": "^2.0.2" } }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true, - "optional": true - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", "dev": true, "optional": true, "requires": { - "safe-buffer": "~5.1.0" + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" } } } @@ -23639,6 +26196,15 @@ "minimalistic-assert": "^1.0.0" } }, + "wcwidth": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", + "integrity": "sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=", + "dev": true, + "requires": { + "defaults": "^1.0.3" + } + }, "webidl-conversions": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", @@ -23646,127 +26212,40 @@ "dev": true }, "webpack": { - "version": "4.42.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.42.0.tgz", - "integrity": "sha512-EzJRHvwQyBiYrYqhyjW9AqM90dE4+s1/XtCfn7uWg6cS72zH+2VPFAlsnW0+W0cDi0XRjNKUMoJtpSi50+Ph6w==", + "version": "4.44.2", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.44.2.tgz", + "integrity": "sha512-6KJVGlCxYdISyurpQ0IPTklv+DULv05rs2hseIXer6D7KrUicRDLFb4IUM1S6LUAKypPM/nSiVSuv8jHu1m3/Q==", "dev": true, "requires": { - "@webassemblyjs/ast": "1.8.5", - "@webassemblyjs/helper-module-context": "1.8.5", - "@webassemblyjs/wasm-edit": "1.8.5", - "@webassemblyjs/wasm-parser": "1.8.5", - "acorn": "^6.2.1", + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/wasm-edit": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0", + "acorn": "^6.4.1", "ajv": "^6.10.2", "ajv-keywords": "^3.4.1", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^4.1.0", + "enhanced-resolve": "^4.3.0", "eslint-scope": "^4.0.3", "json-parse-better-errors": "^1.0.2", "loader-runner": "^2.4.0", "loader-utils": "^1.2.3", "memory-fs": "^0.4.1", "micromatch": "^3.1.10", - "mkdirp": "^0.5.1", + "mkdirp": "^0.5.3", "neo-async": "^2.6.1", "node-libs-browser": "^2.2.1", "schema-utils": "^1.0.0", "tapable": "^1.1.3", "terser-webpack-plugin": "^1.4.3", - "watchpack": "^1.6.0", + "watchpack": "^1.7.4", "webpack-sources": "^1.4.1" - }, - "dependencies": { - "acorn": { - "version": "6.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.1.tgz", - "integrity": "sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA==", - "dev": true - }, - "cacache": { - "version": "12.0.4", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-12.0.4.tgz", - "integrity": "sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==", - "dev": true, - "requires": { - "bluebird": "^3.5.5", - "chownr": "^1.1.1", - "figgy-pudding": "^3.5.1", - "glob": "^7.1.4", - "graceful-fs": "^4.1.15", - "infer-owner": "^1.0.3", - "lru-cache": "^5.1.1", - "mississippi": "^3.0.0", - "mkdirp": "^0.5.1", - "move-concurrently": "^1.0.1", - "promise-inflight": "^1.0.1", - "rimraf": "^2.6.3", - "ssri": "^6.0.1", - "unique-filename": "^1.1.1", - "y18n": "^4.0.0" - } - }, - "eslint-scope": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz", - "integrity": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==", - "dev": true, - "requires": { - "esrecurse": "^4.1.0", - "estraverse": "^4.1.1" - } - }, - "rimraf": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", - "dev": true, - "requires": { - "glob": "^7.1.3" - } - }, - "schema-utils": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", - "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", - "dev": true, - "requires": { - "ajv": "^6.1.0", - "ajv-errors": "^1.0.0", - "ajv-keywords": "^3.1.0" - } - }, - "ssri": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-6.0.1.tgz", - "integrity": "sha512-3Wge10hNcT1Kur4PDFwEieXSCMCJs/7WvSACcrMYrNp+b8kDL1/0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx/QA==", - "dev": true, - "requires": { - "figgy-pudding": "^3.5.1" - } - }, - "terser-webpack-plugin": { - "version": "1.4.5", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz", - "integrity": "sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==", - "dev": true, - "requires": { - "cacache": "^12.0.2", - "find-cache-dir": "^2.1.0", - "is-wsl": "^1.1.0", - "schema-utils": "^1.0.0", - "serialize-javascript": "^4.0.0", - "source-map": "^0.6.1", - "terser": "^4.1.2", - "webpack-sources": "^1.4.0", - "worker-farm": "^1.7.0" - } - } } }, "webpack-dev-middleware": { - "version": "3.7.2", - "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.2.tgz", - "integrity": "sha512-1xC42LxbYoqLNAhV6YzTYacicgMZQTqRd27Sim9wn5hJrX3I5nxYy1SxSd4+gjUFsz1dQFj+yEe6zEVmSkeJjw==", + "version": "3.7.3", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz", + "integrity": "sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==", "dev": true, "requires": { "memory-fs": "^0.4.1", @@ -23777,9 +26256,9 @@ }, "dependencies": { "mime": { - "version": "2.4.6", - "resolved": "https://registry.npmjs.org/mime/-/mime-2.4.6.tgz", - "integrity": "sha512-RZKhC3EmpBchfTGBVb8fb+RL2cWyw/32lshnsETttkBAyAUXSGHxbEJWWRXc751DrIxG1q04b8QwMbAwkRPpUA==", + "version": "2.4.7", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.4.7.tgz", + "integrity": "sha512-dhNd1uA2u397uQk3Nv5LM4lm93WYDUXFn3Fu291FJerns4jyTudqhIWe4W04YLy7Uk1tm1Ore04NpjRvQp/NPA==", "dev": true } } @@ -23827,16 +26306,70 @@ "dependencies": { "ansi-regex": { "version": "2.1.1", - "resolved": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-2.1.1.tgz", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", "dev": true }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dev": true, + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + }, + "dependencies": { + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "dev": true, + "requires": { + "remove-trailing-separator": "^1.0.1" + } + } + } + }, "binary-extensions": { "version": "1.13.1", "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", "dev": true }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + } + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true + }, "chokidar": { "version": "2.1.8", "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", @@ -23857,6 +26390,85 @@ "upath": "^1.1.1" } }, + "cliui": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "dev": true, + "requires": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "dev": true + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + } + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "requires": { + "locate-path": "^3.0.0" + } + }, "fsevents": { "version": "1.2.13", "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", @@ -23870,7 +26482,7 @@ }, "glob-parent": { "version": "3.1.0", - "resolved": "https://registry.npm.taobao.org/glob-parent/download/glob-parent-3.1.0.tgz", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", "dev": true, "requires": { @@ -23880,7 +26492,7 @@ "dependencies": { "is-glob": { "version": "3.1.0", - "resolved": "https://registry.npm.taobao.org/is-glob/download/is-glob-3.1.0.tgz", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", "dev": true, "requires": { @@ -23889,6 +26501,12 @@ } } }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, "is-absolute-url": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", @@ -23897,34 +26515,92 @@ }, "is-binary-path": { "version": "1.0.1", - "resolved": "https://registry.npm.taobao.org/is-binary-path/download/is-binary-path-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", "dev": true, "requires": { "binary-extensions": "^1.0.0" } }, - "normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", "dev": true }, - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", "dev": true, "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" + "kind-of": "^3.0.2" } }, + "is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=", + "dev": true + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "opn": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/opn/-/opn-5.5.0.tgz", + "integrity": "sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==", + "dev": true, + "requires": { + "is-wsl": "^1.1.0" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "requires": { + "p-limit": "^2.0.0" + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "dev": true + }, "readdirp": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", @@ -23936,41 +26612,68 @@ "readable-stream": "^2.0.2" } }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "schema-utils": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", - "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", - "dev": true, - "requires": { - "ajv": "^6.1.0", - "ajv-errors": "^1.0.0", - "ajv-keywords": "^3.1.0" - } - }, "semver": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "sockjs-client": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.4.0.tgz", + "integrity": "sha512-5zaLyO8/nri5cua0VtOrFXBPK1jbL4+1cebT/mmKA1E1ZXOvJrII75bPu0l0k843G/+iAbhEqzyKr0w/eCCj7g==", "dev": true, "requires": { - "safe-buffer": "~5.1.0" + "debug": "^3.2.5", + "eventsource": "^1.0.7", + "faye-websocket": "~0.11.1", + "inherits": "^2.0.3", + "json3": "^3.3.2", + "url-parse": "^1.4.3" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + } } }, "strip-ansi": { "version": "3.0.1", - "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-3.0.1.tgz", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", "dev": true, "requires": { @@ -23986,6 +26689,44 @@ "has-flag": "^3.0.0" } }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + }, + "wrap-ansi": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, "ws": { "version": "6.2.1", "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.1.tgz", @@ -23994,6 +26735,69 @@ "requires": { "async-limiter": "~1.0.0" } + }, + "y18n": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz", + "integrity": "sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==", + "dev": true + }, + "yargs": { + "version": "13.3.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", + "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", + "dev": true, + "requires": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + } + }, + "yargs-parser": { + "version": "13.1.2", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", + "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", + "dev": true, + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + } + } + }, + "webpack-hot-middleware": { + "version": "2.25.0", + "resolved": "https://registry.npmjs.org/webpack-hot-middleware/-/webpack-hot-middleware-2.25.0.tgz", + "integrity": "sha512-xs5dPOrGPCzuRXNi8F6rwhawWvQQkeli5Ro48PRuQh8pYPCPmNnltP9itiUPT4xI8oW+y0m59lyyeQk54s5VgA==", + "dev": true, + "requires": { + "ansi-html": "0.0.7", + "html-entities": "^1.2.0", + "querystring": "^0.2.0", + "strip-ansi": "^3.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } } } }, @@ -24038,6 +26842,15 @@ "universalify": "^0.1.0" } }, + "jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6" + } + }, "universalify": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", @@ -24046,6 +26859,16 @@ } } }, + "webpack-merge": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.7.2.tgz", + "integrity": "sha512-7o7qjwcIB6lqHX0VZA2Vxcp8RHftW1LNcaB6t87PEpco/VPlG0Wn9DnvgmcJ0nZU578/vKQfhDSLTF0EZ+pFAg==", + "dev": true, + "requires": { + "clone-deep": "^4.0.1", + "wildcard": "^2.0.0" + } + }, "webpack-sources": { "version": "1.4.3", "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", @@ -24058,8 +26881,8 @@ }, "websocket-driver": { "version": "0.7.4", - "resolved": "https://registry.npm.taobao.org/websocket-driver/download/websocket-driver-0.7.4.tgz?cache=0&sync_timestamp=1591288882525&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fwebsocket-driver%2Fdownload%2Fwebsocket-driver-0.7.4.tgz", - "integrity": "sha1-ia1Slbv2S0gKvLox5JU6ynBvV2A=", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", "dev": true, "requires": { "http-parser-js": ">=0.5.1", @@ -24069,8 +26892,8 @@ }, "websocket-extensions": { "version": "0.1.4", - "resolved": "https://registry.npm.taobao.org/websocket-extensions/download/websocket-extensions-0.1.4.tgz", - "integrity": "sha1-f4RzvIOd/YdgituV1+sHUhFXikI=", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", "dev": true }, "whatwg-encoding": { @@ -24083,9 +26906,9 @@ } }, "whatwg-fetch": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.4.0.tgz", - "integrity": "sha512-rsum2ulz2iuZH08mJkT0Yi6JnKhwdw4oeyMjokgxd+mmqYSd9cPpOQf01TIWgjxG/U4+QR+AwKq6lSbXVxkyoQ==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.5.0.tgz", + "integrity": "sha512-jXkLtsR42xhXg7akoDKvKWE40eJeI+2KZqcp2h3NsOrRnDvtWX36KcKl30dy+hxECivdk2BVUHVNrPtoMBUx6A==", "dev": true }, "whatwg-mimetype": { @@ -24107,8 +26930,8 @@ }, "which": { "version": "2.0.2", - "resolved": "https://registry.npm.taobao.org/which/download/which-2.0.2.tgz", - "integrity": "sha1-fGqN0KY2oDJ+ELWckobu6T8/UbE=", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", "dev": true, "requires": { "isexe": "^2.0.0" @@ -24116,10 +26939,52 @@ }, "which-module": { "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/which-module/download/which-module-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=", "dev": true }, + "wide-align": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz", + "integrity": "sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==", + "dev": true, + "requires": { + "string-width": "^1.0.2 || 2" + }, + "dependencies": { + "ansi-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true + }, + "string-width": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "dev": true, + "requires": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + } + }, + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "dev": true, + "requires": { + "ansi-regex": "^3.0.0" + } + } + } + }, "widest-line": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz", @@ -24129,14 +26994,11 @@ "string-width": "^4.0.0" } }, - "windows-release": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/windows-release/-/windows-release-3.3.3.tgz", - "integrity": "sha512-OSOGH1QYiW5yVor9TtmXKQvt2vjQqbYS+DqmsZw+r7xDwLXEeT3JGW0ZppFmHx4diyXmxt238KFR3N9jzevBRg==", - "dev": true, - "requires": { - "execa": "^1.0.0" - } + "wildcard": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.0.tgz", + "integrity": "sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==", + "dev": true }, "winston": { "version": "3.3.3", @@ -24154,15 +27016,20 @@ "winston-transport": "^4.4.0" }, "dependencies": { - "async": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.0.tgz", - "integrity": "sha512-TR2mEZFVOj2pLStYxLht7TyfuRzaydfpxr3k9RpHIzMgw7A64dzsdqCxH1WJyQdoe8T10nDXd9wnEigmiuHIZw==" - }, "is-stream": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz", "integrity": "sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==" + }, + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } } } }, @@ -24184,41 +27051,12 @@ "requires": { "readable-stream": "^2.3.7", "triple-beam": "^1.2.0" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } } }, "word-wrap": { "version": "1.2.3", - "resolved": "https://registry.npm.taobao.org/word-wrap/download/word-wrap-1.2.3.tgz", - "integrity": "sha1-YQY29rH3A4kb00dxzLF/uTtHB5w=" + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==" }, "wordwrap": { "version": "0.0.3", @@ -24285,6 +27123,21 @@ "universalify": "^0.1.0" } }, + "jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "pretty-bytes": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.4.1.tgz", + "integrity": "sha512-s1Iam6Gwz3JI5Hweaz4GoCD1WUNUIyzePFy5+Js2hjwGVt2Z79wNN+ZKOZ2vB6C+Xs6njyB84Z1IthQg8d9LxA==", + "dev": true + }, "universalify": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", @@ -24428,83 +27281,19 @@ } }, "wrap-ansi": { - "version": "5.1.0", - "resolved": "https://registry.npm.taobao.org/wrap-ansi/download/wrap-ansi-5.1.0.tgz", - "integrity": "sha1-H9H2cjXVttD+54EFYAG/tpTAOwk=", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "dev": true, "requires": { - "ansi-styles": "^3.2.0", - "string-width": "^3.0.0", - "strip-ansi": "^5.0.0" - }, - "dependencies": { - "ansi-regex": { - "version": "4.1.0", - "resolved": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-4.1.0.tgz", - "integrity": "sha1-i5+PCM8ay4Q3Vqg5yox+MWjFGZc=", - "dev": true - }, - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npm.taobao.org/ansi-styles/download/ansi-styles-3.2.1.tgz?cache=0&sync_timestamp=1577903718856&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fansi-styles%2Fdownload%2Fansi-styles-3.2.1.tgz", - "integrity": "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npm.taobao.org/color-convert/download/color-convert-1.9.3.tgz", - "integrity": "sha1-u3GFBpDh8TZWfeYp0tVHHe2kweg=", - "dev": true, - "requires": { - "color-name": "1.1.3" - } - }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npm.taobao.org/color-name/download/color-name-1.1.3.tgz", - "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", - "dev": true - }, - "emoji-regex": { - "version": "7.0.3", - "resolved": "https://registry.npm.taobao.org/emoji-regex/download/emoji-regex-7.0.3.tgz", - "integrity": "sha1-kzoEBShgyF6DwSJHnEdIqOTHIVY=", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/is-fullwidth-code-point/download/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", - "dev": true - }, - "string-width": { - "version": "3.1.0", - "resolved": "https://registry.npm.taobao.org/string-width/download/string-width-3.1.0.tgz", - "integrity": "sha1-InZ74htirxCBV0MG9prFG2IgOWE=", - "dev": true, - "requires": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" - } - }, - "strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-5.2.0.tgz", - "integrity": "sha1-jJpTb+tq/JYr36WxBKUJHBrZwK4=", - "dev": true, - "requires": { - "ansi-regex": "^4.1.0" - } - } + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" } }, "wrappy": { "version": "1.0.2", - "resolved": "https://registry.npm.taobao.org/wrappy/download/wrappy-1.0.2.tgz", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" }, "write": { @@ -24518,8 +27307,8 @@ }, "write-file-atomic": { "version": "3.0.3", - "resolved": "https://registry.npm.taobao.org/write-file-atomic/download/write-file-atomic-3.0.3.tgz", - "integrity": "sha1-Vr1cWlxwSBzRnFcb05q5ZaXeVug=", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", "requires": { "imurmurhash": "^0.1.4", "is-typedarray": "^1.0.0", @@ -24543,11 +27332,11 @@ "dev": true }, "xhr": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/xhr/-/xhr-2.5.0.tgz", - "integrity": "sha512-4nlO/14t3BNUZRXIXfXe+3N6w3s1KoxcJUUURctd64BLRe67E4gRwp4PjywtDY72fXpZ1y6Ch0VZQRY/gMPzzQ==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/xhr/-/xhr-2.6.0.tgz", + "integrity": "sha512-/eCGLb5rxjx5e3mF1A7s+pLlR6CGyqWN91fv1JgER5mVWg1MZmlhBvy9kjcsOdRk8RrIujotWyJamfyrp+WIcA==", "requires": { - "global": "~4.3.0", + "global": "~4.4.0", "is-function": "^1.0.1", "parse-headers": "^2.0.0", "xtend": "^4.0.0" @@ -24561,7 +27350,7 @@ }, "xml-parse-from-string": { "version": "1.0.1", - "resolved": "https://registry.npm.taobao.org/xml-parse-from-string/download/xml-parse-from-string-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/xml-parse-from-string/-/xml-parse-from-string-1.0.1.tgz", "integrity": "sha1-qQKekp09vN7RafPG4oI42VpdWig=" }, "xml2js": { @@ -24584,26 +27373,50 @@ "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", "dev": true }, + "xmldom": { + "version": "0.1.31", + "resolved": "https://registry.npmjs.org/xmldom/-/xmldom-0.1.31.tgz", + "integrity": "sha512-yS2uJflVQs6n+CyjHoaBmVSqIDevTAWrzMmjG1Gc7h1qQ7uVozNhEPJAwZXWyGQ/Gafo3fCwrcaokezLPupVyQ==", + "dev": true + }, "xregexp": { "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/xregexp/download/xregexp-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/xregexp/-/xregexp-2.0.0.tgz", "integrity": "sha1-UqY+VsoLhKfzpfPWGHLxJq16WUM=" }, "xtend": { "version": "4.0.2", - "resolved": "https://registry.npm.taobao.org/xtend/download/xtend-4.0.2.tgz", - "integrity": "sha1-u3J3n1+kZRhrH0OPZ0+jR/2121Q=" + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" + }, + "xterm": { + "version": "4.9.0", + "resolved": "https://registry.npmjs.org/xterm/-/xterm-4.9.0.tgz", + "integrity": "sha512-wGfqufmioctKr8VkbRuZbVDfjlXWGZZ1PWHy1yqqpGT3Nm6yaJx8lxDbSEBANtgaiVPTcKSp97sxOy5IlpqYfw==", + "dev": true + }, + "xterm-addon-fit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/xterm-addon-fit/-/xterm-addon-fit-0.4.0.tgz", + "integrity": "sha512-p4BESuV/g2L6pZzFHpeNLLnep9mp/DkF3qrPglMiucSFtD8iJxtMufEoEJbN8LZwB4i+8PFpFvVuFrGOSpW05w==", + "dev": true + }, + "xterm-addon-search": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/xterm-addon-search/-/xterm-addon-search-0.7.0.tgz", + "integrity": "sha512-6060evmJJ+tZcjnx33FXaeEHLpuXEa7l9UzUsYfMlCKbu88AbE+5LJocTKCHYd71cwCwb9pjmv/G1o9Rf9Zbcg==", + "dev": true }, "y18n": { - "version": "4.0.0", - "resolved": "https://registry.npm.taobao.org/y18n/download/y18n-4.0.0.tgz", - "integrity": "sha1-le+U+F7MgdAHwmThkKEg8KPIVms=", + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.5.tgz", + "integrity": "sha512-hsRUr4FFrvhhRH12wOdfs38Gy7k2FFzB9qgN9v3aLykRq0dRcdcpz5C9FxdS2NuhOrI/628b/KSTJ3rwHysYSg==", "dev": true }, "yallist": { "version": "3.1.1", - "resolved": "https://registry.npm.taobao.org/yallist/download/yallist-3.1.1.tgz", - "integrity": "sha1-27fa+b/YusmrRev2ArjLrQ1dCP0=" + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" }, "yaml": { "version": "1.10.0", @@ -24612,81 +27425,101 @@ "dev": true }, "yargs": { - "version": "13.3.2", - "resolved": "https://registry.npm.taobao.org/yargs/download/yargs-13.3.2.tgz", - "integrity": "sha1-rX/+/sGqWVZayRX4Lcyzipwxot0=", + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", "dev": true, "requires": { - "cliui": "^5.0.0", - "find-up": "^3.0.0", - "get-caller-file": "^2.0.1", + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", "require-directory": "^2.1.1", - "require-main-filename": "^2.0.0", - "set-blocking": "^2.0.0", - "string-width": "^3.0.0", - "which-module": "^2.0.0", - "y18n": "^4.0.0", - "yargs-parser": "^13.1.2" + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + } + }, + "yargs-parser": { + "version": "20.2.4", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.4.tgz", + "integrity": "sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==", + "dev": true + }, + "yarn-or-npm": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/yarn-or-npm/-/yarn-or-npm-3.0.1.tgz", + "integrity": "sha512-fTiQP6WbDAh5QZAVdbMQkecZoahnbOjClTQhzv74WX5h2Uaidj1isf9FDes11TKtsZ0/ZVfZsqZ+O3x6aLERHQ==", + "dev": true, + "requires": { + "cross-spawn": "^6.0.5", + "pkg-dir": "^4.2.0" }, "dependencies": { - "ansi-regex": { - "version": "4.1.0", - "resolved": "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-4.1.0.tgz", - "integrity": "sha1-i5+PCM8ay4Q3Vqg5yox+MWjFGZc=", - "dev": true - }, - "emoji-regex": { - "version": "7.0.3", - "resolved": "https://registry.npm.taobao.org/emoji-regex/download/emoji-regex-7.0.3.tgz", - "integrity": "sha1-kzoEBShgyF6DwSJHnEdIqOTHIVY=", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/is-fullwidth-code-point/download/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", - "dev": true - }, - "string-width": { - "version": "3.1.0", - "resolved": "https://registry.npm.taobao.org/string-width/download/string-width-3.1.0.tgz", - "integrity": "sha1-InZ74htirxCBV0MG9prFG2IgOWE=", + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", "dev": true, "requires": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" } }, - "strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-5.2.0.tgz", - "integrity": "sha1-jJpTb+tq/JYr36WxBKUJHBrZwK4=", + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "dev": true + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", "dev": true, "requires": { - "ansi-regex": "^4.1.0" + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "dev": true + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "requires": { + "isexe": "^2.0.0" } } } }, - "yargs-parser": { - "version": "13.1.2", - "resolved": "https://registry.npm.taobao.org/yargs-parser/download/yargs-parser-13.1.2.tgz", - "integrity": "sha1-Ew8JcC667vJlDVTObj5XBvek+zg=", - "dev": true, - "requires": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" - } - }, "yauzl": { "version": "2.10.0", - "resolved": "https://registry.npm.taobao.org/yauzl/download/yauzl-2.10.0.tgz", + "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", "integrity": "sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk=", "requires": { "buffer-crc32": "~0.2.3", "fd-slicer": "~1.1.0" } + }, + "yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true } } } diff --git a/package.json b/package.json index 5d1c6427..3fdc3cb6 100755 --- a/package.json +++ b/package.json @@ -1,23 +1,72 @@ { - "name": "TiddlyGit", + "name": "tiddly-git", + "productName": "TiddlyGit", "description": "Customizable personal knowledge-base with Github as unlimited storage and blogging platform.", "version": "0.3.6", - "main": "public/electron.js", "scripts": { - "electron-dev": "npm run clean:dev && concurrently \"cross-env BROWSER=none npm run start\" \"wait-on http://localhost:3000 && electron .\" -k", - "dist-dev": "npm run clean:dev && cross-env CSC_IDENTITY_AUTO_DISCOVERY=false npm run dist", - "dist": "npm run build && node dist.js", - "clean:dev": "rimraf ./logs && rimraf ./dist && rimraf ./build", - "build": "rescripts build", - "start": "rescripts start", - "test": "mocha ./tests", + "start": "electron-forge start", + "package": "electron-forge package", + "make": "electron-forge make", "lint": "eslint ./public ./src --ext js", "lint:fix": "eslint ./public ./src --ext js --fix", - "flow-typed": "rimraf flow-typed/npm && flow-typed install --overwrite", - "postinstall": "npx electron-builder install-app-deps && if-env CI=true && echo \"skip flow-typed\" || npm run flow-typed" + "installType": "typesync", + "postinstall": "npx electron-builder install-app-deps && if-env CI=true && echo \"skip flow-typed\" || npm run installType" }, "repository": "https://github.com/tiddly-gittly/TiddlyGit-Desktop", "author": "Lin Onetwo, Quang Lam ", + "main": ".webpack/main", + "config": { + "forge": { + "packagerConfig": { + "icon": "build-resources/icon.icns", + "asar": true, + "extraResource": [] + }, + "makers": [ + { + "name": "@electron-forge/maker-squirrel", + "config": { + "name": "my_new_app" + } + }, + { + "name": "@electron-forge/maker-zip", + "platforms": [ + "darwin" + ] + }, + { + "name": "@electron-forge/maker-deb", + "config": {} + }, + { + "name": "@electron-forge/maker-rpm", + "config": {} + } + ], + "plugins": [ + [ + "@electron-forge/plugin-webpack", + { + "mainConfig": "./webpack.main.config.js", + "renderer": { + "config": "./webpack.renderer.config.js", + "entryPoints": [ + { + "html": "./src/index.html", + "js": "./src/index.tsx", + "preload": { + "js": "./src/services/preload/main.ts" + }, + "name": "main_window" + } + ] + } + } + ] + ] + } + }, "dependencies": { "@cliqz/adblocker-electron": "1.18.3", "@tiddlygit/tiddlywiki": "^5.1.23-prerelease.20201217", @@ -41,6 +90,7 @@ "menubar": "9.0.1", "node-fetch": "2.6.1", "proxy-agent": "4.0.0", + "reflect-metadata": "^0.1.13", "regedit": "3.0.3", "semver": "7.3.2", "tmp": "0.2.1", @@ -52,42 +102,76 @@ "devDependencies": { "@authing/sso": "1.6.0", "@date-io/date-fns": "2.10.6", + "@electron-forge/cli": "6.0.0-beta.54", + "@electron-forge/maker-deb": "6.0.0-beta.54", + "@electron-forge/maker-rpm": "6.0.0-beta.54", + "@electron-forge/maker-squirrel": "6.0.0-beta.54", + "@electron-forge/maker-zip": "6.0.0-beta.54", + "@electron-forge/plugin-auto-unpack-natives": "6.0.0-beta.54", + "@electron-forge/plugin-webpack": "6.0.0-beta.54", "@material-ui/core": "4.11.0", "@material-ui/icons": "4.9.1", "@material-ui/lab": "^4.0.0-alpha.56", "@material-ui/pickers": "^4.0.0-alpha.12", "@rescripts/cli": "0.0.14", + "@types/bluebird": "^3.5.33", + "@types/classnames": "2.2.6", + "@types/concurrently": "5.2.1", + "@types/csp-html-webpack-plugin": "3.0.0", + "@types/download": "6.2.4", + "@types/electron-window-state": "2.0.34", + "@types/eslint": "7.2.6", + "@types/eslint-plugin-prettier": "3.1.0", + "@types/fs-extra": "9.0.1", + "@types/i18next-fs-backend": "^1.0.0", + "@types/is-url": "1.2.28", + "@types/lodash": "4.14.165", + "@types/node": "^14.14.14", + "@types/node-fetch": "2.5.7", + "@types/prettier": "^2.1.5", + "@types/prop-types": "15.7.2", + "@types/react": "17.0.0", + "@types/react-dom": "17.0.0", + "@types/react-redux": "7.1.12", + "@types/react-window": "1.8.2", + "@types/react-window-infinite-loader": "1.0.3", + "@types/rimraf": "^3.0.0", + "@types/semver": "7.3.2", + "@types/simplebar": "5.1.1", + "@types/styled-components": "5.1.7", + "@types/tmp": "0.2.0", + "@types/uuid": "8.3.0", + "@types/wait-on": "5.2.0", + "@typescript-eslint/eslint-plugin": "4.9.1", + "@typescript-eslint/parser": "4.9.1", "ace-builds": "1.4.12", - "babel-eslint": "10.1.0", - "babel-preset-env": "1.7.0", - "babel-preset-react": "6.24.1", "classnames": "2.2.6", "concurrently": "5.3.0", "cross-env": "7.0.2", + "csp-html-webpack-plugin": "4.0.0", "date-fns": "2.16.1", "electron": "^12.0.0-beta.10", "electron-builder": "22.8.1", "electron-notarize": "1.0.0", - "eslint": "^7.11.0", - "eslint-config-airbnb": "18.2.0", - "eslint-config-prettier": "6.12.0", - "eslint-config-standard": "14.1.1", - "eslint-plugin-flowtype": "5.2.0", - "eslint-plugin-html": "6.1.0", + "eslint": "7.15.0", + "eslint-config-prettier": "7.0.0", + "eslint-config-standard": "16.0.2", + "eslint-config-standard-with-typescript": "^19.0.1", + "eslint-import-resolver-alias": "^1.1.2", + "eslint-import-resolver-typescript": "^2.3.0", + "eslint-plugin-babel": "5.3.1", + "eslint-plugin-html": "6.1.1", "eslint-plugin-import": "2.22.1", - "eslint-plugin-jsx-a11y": "6.3.1", "eslint-plugin-node": "11.1.0", - "eslint-plugin-prettier": "3.1.4", + "eslint-plugin-prettier": "3.2.0", "eslint-plugin-promise": "4.2.1", - "eslint-plugin-react": "7.21.4", - "eslint-plugin-react-hooks": "4.1.2", - "eslint-plugin-sonarjs": "0.5.0", - "eslint-plugin-standard": "4.0.1", - "eslint-plugin-unicorn": "22.0.0", - "flow-bin": "0.135.0", - "flow-typed": "3.2.1", - "graphql-hooks": "5.0.0", + "eslint-plugin-react": "7.21.5", + "eslint-plugin-standard": "5.0.0", + "eslint-plugin-unicorn": "23.0.0", + "fork-ts-checker-webpack-plugin": "^6.0.7", + "graphql-hooks": "^5.0.0", "if-env": "^1.0.4", + "node-loader": "^1.0.2", "prop-types": "15.7.2", "react": "16.13.1", "react-ace": "9.1.4", @@ -106,15 +190,12 @@ "simplebar-react": "3.0.0-beta.5", "styled-components": "5.2.0", "styled-is": "1.3.0", + "subscriptions-transport-ws": "^0.9.18", + "ts-loader": "^8.0.12", "typeface-roboto": "1.1.13", + "typescript": "4.1.2", + "typesync": "0.8.0", "wait-on": "5.2.0" }, - "homepage": "./", - "private": false, - "rescripts": [ - "disable-eslint" - ], - "browserslist": [ - "last 1 electron version" - ] + "private": false } diff --git a/public/index.html b/public/index.html deleted file mode 100755 index c5890209..00000000 --- a/public/index.html +++ /dev/null @@ -1,11 +0,0 @@ - - - - TiddlyGit - - - - -
- - diff --git a/public/windows/main.js b/public/windows/main.js deleted file mode 100644 index f7453ffb..00000000 --- a/public/windows/main.js +++ /dev/null @@ -1,282 +0,0 @@ -const { - BrowserWindow, - Menu, - Tray, - app, - ipcMain, - nativeImage, -} = require('electron'); -const windowStateKeeper = require('electron-window-state'); -const { menubar } = require('menubar'); -const path = require('path'); - -const { REACT_PATH, isDev } = require('../constants/paths'); -const { getPreference } = require('../libs/preferences'); -const formatBytes = require('../libs/format-bytes'); - -let win; -let mb = {}; -let attachToMenubar; - -const get = () => { - if (attachToMenubar) return mb.window; - return win; -}; - -const createAsync = () => new Promise((resolve) => { - attachToMenubar = getPreference('attachToMenubar'); - if (attachToMenubar) { - const menubarWindowState = windowStateKeeper({ - file: 'window-state-menubar.json', - defaultWidth: 400, - defaultHeight: 400, - }); - - // setImage after Tray instance is created to avoid - // "Segmentation fault (core dumped)" bug on Linux - // https://github.com/electron/electron/issues/22137#issuecomment-586105622 - // https://github.com/atomery/translatium/issues/164 - const tray = new Tray(nativeImage.createEmpty()); - // icon template is not supported on Windows & Linux - const iconPath = path.resolve(__dirname, '..', process.platform === 'darwin' ? 'menubarTemplate.png' : 'menubar.png'); - tray.setImage(iconPath); - - mb = menubar({ - index: REACT_PATH, - tray, - preloadWindow: true, - tooltip: 'TiddlyGit', - browserWindow: { - x: menubarWindowState.x, - y: menubarWindowState.y, - width: menubarWindowState.width, - height: menubarWindowState.height, - minHeight: 100, - minWidth: 250, - webPreferences: { - nodeIntegration: false, - enableRemoteModule: true, - webSecurity: !isDev, - contextIsolation: true, - webSecurity: false, - preload: path.join(__dirname, '..', 'preload', 'menubar.js'), - }, - }, - }); - - mb.on('after-create-window', () => { - menubarWindowState.manage(mb.window); - - mb.window.on('focus', () => { - const view = mb.window.getBrowserView(); - if (view && view.webContents) { - view.webContents.focus(); - } - }); - }); - - mb.on('ready', () => { - mb.tray.on('right-click', () => { - const updaterEnabled = process.env.SNAP == null - && !process.mas && !process.windowsStore; - - const updaterMenuItem = { - label: 'Check for Updates...', - click: () => ipcMain.emit('request-check-for-updates'), - visible: updaterEnabled, - }; - if (global.updaterObj && global.updaterObj.status === 'update-downloaded') { - updaterMenuItem.label = 'Restart to Apply Updates...'; - } else if (global.updaterObj && global.updaterObj.status === 'update-available') { - updaterMenuItem.label = 'Downloading Updates...'; - updaterMenuItem.enabled = false; - } else if (global.updaterObj && global.updaterObj.status === 'download-progress') { - const { transferred, total, bytesPerSecond } = global.updaterObj.info; - updaterMenuItem.label = `Downloading Updates (${formatBytes(transferred)}/${formatBytes(total)} at ${formatBytes(bytesPerSecond)}/s)...`; - updaterMenuItem.enabled = false; - } else if (global.updaterObj && global.updaterObj.status === 'checking-for-update') { - updaterMenuItem.label = 'Checking for Updates...'; - updaterMenuItem.enabled = false; - } - - const contextMenu = Menu.buildFromTemplate([ - { - label: 'Open TiddlyGit', - click: () => mb.showWindow(), - }, - { - type: 'separator', - }, - { - label: 'About TiddlyGit', - click: () => ipcMain.emit('request-show-about-window'), - }, - { type: 'separator' }, - updaterMenuItem, - { type: 'separator' }, - { - label: 'Preferences...', - click: () => ipcMain.emit('request-show-preferences-window'), - }, - { type: 'separator' }, - { - label: 'Notifications...', - click: () => ipcMain.emit('request-show-notifications-window'), - }, - { type: 'separator' }, - { - label: 'Clear Browsing Data...', - click: () => ipcMain.emit('request-clear-browsing-data'), - }, - { type: 'separator' }, - { - role: 'quit', - click: () => { - mb.app.quit(); - }, - }, - ]); - - mb.tray.popUpContextMenu(contextMenu); - }); - - resolve(); - }); - return; - } - - - const { wasOpenedAsHidden } = app.getLoginItemSettings(); - - const mainWindowState = windowStateKeeper({ - defaultWidth: 1000, - defaultHeight: 768, - }); - - win = new BrowserWindow({ - x: mainWindowState.x, - y: mainWindowState.y, - width: mainWindowState.width, - height: mainWindowState.height, - minHeight: 100, - minWidth: 350, - title: 'TiddlyGit', - titleBarStyle: 'hidden', - show: false, - // manually set dock icon for AppImage - // Snap icon is set correct already so no need to intervene - icon: process.platform === 'linux' && process.env.SNAP == null ? path.resolve(__dirname, '..', 'icon.png') : undefined, - webPreferences: { - nodeIntegration: false, - enableRemoteModule: true, - webSecurity: !isDev, - contextIsolation: true, - preload: path.join(__dirname, '..', 'preload', 'main.js'), - }, - }); - if (getPreference('hideMenuBar')) { - win.setMenuBarVisibility(false); - } - - mainWindowState.manage(win); - - // Enable swipe to navigate - const swipeToNavigate = getPreference('swipeToNavigate'); - if (swipeToNavigate) { - win.on('swipe', (e, direction) => { - const view = win.getBrowserView(); - if (view) { - if (direction === 'left') { - view.webContents.goBack(); - } else if (direction === 'right') { - view.webContents.goForward(); - } - } - }); - } - - // Hide window instead closing on macos - win.on('close', (e) => { - if (process.platform === 'darwin' && !win.forceClose) { - e.preventDefault(); - // https://github.com/electron/electron/issues/6033#issuecomment-242023295 - if (win.isFullScreen()) { - win.once('leave-full-screen', () => { - win.hide(); - }); - win.setFullScreen(false); - } else { - win.hide(); - } - } - }); - - win.on('closed', () => { - win = null; - }); - - win.on('focus', () => { - const view = win.getBrowserView(); - if (view && view.webContents) { - view.webContents.focus(); - } - }); - - win.once('ready-to-show', () => { - if (!wasOpenedAsHidden) { - win.show(); - } - - // calling this to redundantly setBounds BrowserView - // after the UI is fully loaded - // if not, BrowserView mouseover event won't work correctly - // https://github.com/atomery/webcatalog/issues/812 - ipcMain.emit('request-realign-active-workspace'); - }); - - win.on('enter-full-screen', () => { - win.webContents.send('is-fullscreen-updated', true); - ipcMain.emit('request-realign-active-workspace'); - }); - win.on('leave-full-screen', () => { - win.webContents.send('is-fullscreen-updated', false); - ipcMain.emit('request-realign-active-workspace'); - }); - - // ensure redux is loaded first - // if not, redux might not be able catch changes sent from ipcMain - win.webContents.once('did-stop-loading', () => { - resolve(); - }); - - win.loadURL(REACT_PATH); -}); - -const show = () => { - if (attachToMenubar) { - if (mb == null) { - createAsync(); - } else { - mb.on('ready', () => { - mb.showWindow(); - }); - } - } else if (win == null) { - createAsync(); - } else { - win.show(); - } -}; - -const send = (...args) => { - if (win !== null) { - win.webContents.send(...args); - } -}; - -module.exports = { - createAsync, - get, - send, - show, -}; diff --git a/src/index.html b/src/index.html new file mode 100644 index 00000000..4909adb3 --- /dev/null +++ b/src/index.html @@ -0,0 +1,10 @@ + + + + + TiddlyGit + + +
+ + \ No newline at end of file diff --git a/src/index.js b/src/index.tsx similarity index 96% rename from src/index.js rename to src/index.tsx index 84fc5fa7..cc7587f3 100644 --- a/src/index.js +++ b/src/index.tsx @@ -36,6 +36,16 @@ const DialogProxy = React.lazy(() => import('./components/dialog-proxy')); const DialogSpellcheckLanguages = React.lazy(() => import('./components/dialog-spellcheck-languages')); const Main = React.lazy(() => import('./components/main')); +declare global { + interface Window { + meta: { + mode: string; + }; + remote: any; + preventClosingWindow: boolean; + } +} + const App = () => { switch (window.meta.mode) { case 'about': @@ -101,7 +111,7 @@ const runApp = () => { document.title = 'Open Link With'; } else if (window.meta.mode === 'code-injection') { store.dispatch(initDialogCodeInjection()); - const codeInjectionType = remote.getGlobal('codeInjectionType'); + const codeInjectionType = window.remote.getGlobal('codeInjectionType'); document.title = `Edit ${codeInjectionType.toUpperCase()} Code Injection`; } else if (window.meta.mode === 'notifications') { document.title = 'Notifications'; diff --git a/src/senders/index.js b/src/senders/index.js index 82844548..714293b6 100644 --- a/src/senders/index.js +++ b/src/senders/index.js @@ -73,8 +73,8 @@ export const getPauseNotificationsInfo = () => ipcRenderer.sendSync('get-pause-n // Preferences // eslint-disable-next-line no-use-before-define -type JsonValue = string | number | boolean | null | JsonArray | JsonObject | void; -interface JsonObject { +export type JsonValue = string | number | boolean | null | JsonArray | JsonObject | void; +export interface JsonObject { [x: string]: JsonValue; } interface JsonArray extends Array {} // tslint:disable-line no-empty-interface diff --git a/public/constants/mailto-urls.js b/src/services/constants/mailto-urls.js similarity index 100% rename from public/constants/mailto-urls.js rename to src/services/constants/mailto-urls.js diff --git a/public/constants/paths.js b/src/services/constants/paths.js similarity index 100% rename from public/constants/paths.js rename to src/services/constants/paths.js diff --git a/public/electron.js b/src/services/electron.ts similarity index 74% rename from public/electron.js rename to src/services/electron.ts index 8a80f48b..a1e324ce 100755 --- a/public/electron.js +++ b/src/services/electron.ts @@ -1,32 +1,30 @@ -// eslint-disable-next-line import/no-extraneous-dependencies -const { ipcMain, nativeTheme, protocol, session, powerMonitor, remote } = require('electron'); -const isDev = require('electron-is-dev'); -const fs = require('fs'); -const Promise = require('bluebird'); -const settings = require('electron-settings'); -const { autoUpdater } = require('electron-updater'); +import { ipcMain, nativeTheme, protocol, session, powerMonitor, remote } from 'electron'; +import isDev from 'electron-is-dev'; +import fs from 'fs'; +import Promise from 'bluebird'; +import settings from 'electron-settings'; +import { autoUpdater } from 'electron-updater'; -const loadListeners = require('./listeners'); +import loadListeners from './listeners'; -const mainWindow = require('./windows/main'); -const openUrlWithWindow = require('./windows/open-url-with'); +import * as mainWindow from './windows/main'; +import openUrlWithWindow from './windows/open-url-with'; -const createMenu = require('./libs/create-menu'); -const extractHostname = require('./libs/extract-hostname'); -const sendToAllWindows = require('./libs/send-to-all-windows'); -const { stopWatchAllWiki } = require('./libs/wiki/watch-wiki'); -const { stopAllWiki } = require('./libs/wiki/wiki-worker-mamager'); -const { addView, reloadViewsDarkReader } = require('./libs/views'); -const { getPreference, getPreferences } = require('./libs/preferences'); -const { getWorkspaces, setWorkspace } = require('./libs/workspaces'); -const { logger } = require('./libs/log'); -const { commitAndSync } = require('./libs/git'); -const { clearMainBindings } = require('./libs/i18next-electron-fs-backend'); +import createMenu from './libs/create-menu'; +import extractHostname from './libs/extract-hostname'; +import sendToAllWindows from './libs/send-to-all-windows'; +import { stopWatchAllWiki } from './libs/wiki/watch-wiki'; +import { stopAllWiki } from './libs/wiki/wiki-worker-mamager'; +import { addView, reloadViewsDarkReader } from './libs/views'; +import { getPreference, getPreferences } from './libs/preferences'; +import { getWorkspaces, setWorkspace } from './libs/workspaces'; +import { logger } from './libs/log'; +import { commitAndSync } from './libs/git'; +import { clearMainBindings } from './libs/i18next-electron-fs-backend'; -const MAILTO_URLS = require('./constants/mailto-urls'); -const { is } = require('bluebird'); +import MAILTO_URLS from './constants/mailto-urls'; -require('./libs/updater'); +import './libs/updater'; // eslint-disable-next-line import/order, global-require const app = require('electron').app || remote.app; @@ -35,6 +33,19 @@ app.allowRendererProcessReuse = true; const gotTheLock = app.requestSingleInstanceLock(); +declare global { + namespace NodeJS { + interface Global { + attachToMenubar: any; + sidebar: any; + titleBar: any; + navigationBar: any; + updaterObj: any; + MAILTO_URLS: any; + } + } +} + app.on('second-instance', () => { // Someone tried to run a second instance, we should focus our window. const win = mainWindow.get(); @@ -74,7 +85,7 @@ if (!gotTheLock) { }); const whenTrulyReady = () => { if (trulyReady) return Promise.resolve(); - return new Promise(resolve => { + return new Promise((resolve) => { ipcMain.once('truly-ready', () => { trulyReady = true; resolve(); @@ -120,10 +131,10 @@ if (!gotTheLock) { proxyBypassRules, }); } else if (proxyType === 'pacScript') { - session.defaultSession.setProxy({ + session.defaultSession.setProxy(({ proxyPacScript, proxyBypassRules, - }); + } as any) as Electron.Config); } nativeTheme.themeSource = themeSource; @@ -137,7 +148,7 @@ if (!gotTheLock) { const workspaceObjects = getWorkspaces(); - Object.keys(workspaceObjects).forEach(async id => { + Object.keys(workspaceObjects).forEach(async (id) => { const workspace = workspaceObjects[id]; if ((hibernateUnusedWorkspacesAtLaunch || workspace.hibernateWhenUnused) && !workspace.active) { if (!workspace.hibernated) { @@ -184,18 +195,20 @@ if (!gotTheLock) { // eslint-disable-next-line promise/always-return if (process.platform === 'linux') { const win = mainWindow.get(); - const handleMaximize = () => { - // getContentSize is not updated immediately - // try once after 0.2s (for fast computer), another one after 1s (to be sure) - setTimeout(() => { - ipcMain.emit('request-realign-active-workspace'); - }, 200); - setTimeout(() => { - ipcMain.emit('request-realign-active-workspace'); - }, 1000); - }; - win.on('maximize', handleMaximize); - win.on('unmaximize', handleMaximize); + if (win) { + const handleMaximize = () => { + // getContentSize is not updated immediately + // try once after 0.2s (for fast computer), another one after 1s (to be sure) + setTimeout(() => { + ipcMain.emit('request-realign-active-workspace'); + }, 200); + setTimeout(() => { + ipcMain.emit('request-realign-active-workspace'); + }, 1000); + }; + win.on('maximize', handleMaximize); + win.on('unmaximize', handleMaximize); + } } }) // eslint-disable-next-line promise/always-return @@ -207,8 +220,7 @@ if (!gotTheLock) { app.on('ready', () => { const { allowPrerelease, attachToMenubar, sidebar, titleBar, navigationBar } = getPreferences(); - const win = mainWindow.get(); - + // TODO: use IPC to get these config global.attachToMenubar = attachToMenubar; global.sidebar = sidebar; global.titleBar = titleBar; @@ -223,7 +235,7 @@ if (!gotTheLock) { .then(() => { ipcMain.emit('request-check-for-updates', null, true); }) - .catch(error => console.error(error)); + .catch((error) => console.error(error)); powerMonitor.on('shutdown', () => { app.quit(); @@ -254,27 +266,22 @@ if (!gotTheLock) { // focus on window mainWindow.show(); - const workspaces = Object.values(getWorkspaces()); + const workspaces: any[] = Object.values(getWorkspaces()); if (workspaces.length < 1) return null; // handle mailto: if (url.startsWith('mailto:')) { - const mailtoWorkspaces = workspaces.filter(workspace => extractHostname(workspace.homeUrl) in MAILTO_URLS); + const mailtoWorkspaces: any[] = workspaces.filter((workspace: any) => extractHostname(workspace.homeUrl) in MAILTO_URLS); // pick automically if there's only one choice if (mailtoWorkspaces.length === 0) { - ipcMain.emit( - 'request-show-message-box', - null, - 'None of your workspaces supports composing email messages.', - 'error', - ); + ipcMain.emit('request-show-message-box', null, 'None of your workspaces supports composing email messages.', 'error'); return null; } if (mailtoWorkspaces.length === 1) { - const mailtoUrl = MAILTO_URLS[extractHostname(mailtoWorkspaces[0].homeUrl)]; + const mailtoUrl = (MAILTO_URLS as any)[extractHostname(mailtoWorkspaces[0].homeUrl)]; const u = mailtoUrl.replace('%s', url); ipcMain.emit('request-load-url', null, u, mailtoWorkspaces[0].id); return null; @@ -294,20 +301,20 @@ if (!gotTheLock) { }); }); - app.on('before-quit', async event => { + app.on('before-quit', async (event) => { logger.info('Quitting worker threads and watcher.'); await Promise.all([stopAllWiki(), stopWatchAllWiki()]); logger.info('Worker threads and watchers all terminated.'); logger.info('Quitting I18N server.'); clearMainBindings(ipcMain); logger.info('Quitted I18N server.'); - // https://github.com/atom/electron/issues/444#issuecomment-76492576 if (process.platform === 'darwin') { const win = mainWindow.get(); if (win) { logger.info('App force quit on MacOS'); - win.forceClose = true; + // FIXME: set custom property + (win as any).forceClose = true; } } app.exit(0); diff --git a/public/icon.png b/src/services/icon.png similarity index 100% rename from public/icon.png rename to src/services/icon.png diff --git a/public/icon@2x.png b/src/services/icon@2x.png similarity index 100% rename from public/icon@2x.png rename to src/services/icon@2x.png diff --git a/public/icon@3x.png b/src/services/icon@3x.png similarity index 100% rename from public/icon@3x.png rename to src/services/icon@3x.png diff --git a/public/icon@4x.png b/src/services/icon@4x.png similarity index 100% rename from public/icon@4x.png rename to src/services/icon@4x.png diff --git a/public/icon@5x.png b/src/services/icon@5x.png similarity index 100% rename from public/icon@5x.png rename to src/services/icon@5x.png diff --git a/public/libs/context-menu-builder.js b/src/services/libs/context-menu-builder.js similarity index 100% rename from public/libs/context-menu-builder.js rename to src/services/libs/context-menu-builder.js diff --git a/public/libs/create-menu.js b/src/services/libs/create-menu.js similarity index 100% rename from public/libs/create-menu.js rename to src/services/libs/create-menu.js diff --git a/public/libs/customized-fetch.js b/src/services/libs/customized-fetch.js similarity index 100% rename from public/libs/customized-fetch.js rename to src/services/libs/customized-fetch.js diff --git a/public/libs/extract-hostname.js b/src/services/libs/extract-hostname.js similarity index 100% rename from public/libs/extract-hostname.js rename to src/services/libs/extract-hostname.js diff --git a/public/libs/format-bytes.js b/src/services/libs/format-bytes.js similarity index 100% rename from public/libs/format-bytes.js rename to src/services/libs/format-bytes.js diff --git a/public/libs/get-view-bounds.js b/src/services/libs/get-view-bounds.js similarity index 100% rename from public/libs/get-view-bounds.js rename to src/services/libs/get-view-bounds.js diff --git a/public/libs/git/index.js b/src/services/libs/git/index.js similarity index 100% rename from public/libs/git/index.js rename to src/services/libs/git/index.js diff --git a/public/libs/git/inspect.js b/src/services/libs/git/inspect.js similarity index 100% rename from public/libs/git/inspect.js rename to src/services/libs/git/inspect.js diff --git a/public/libs/git/sync.js b/src/services/libs/git/sync.js similarity index 100% rename from public/libs/git/sync.js rename to src/services/libs/git/sync.js diff --git a/public/libs/git/wiki-git-api.js b/src/services/libs/git/wiki-git-api.js similarity index 100% rename from public/libs/git/wiki-git-api.js rename to src/services/libs/git/wiki-git-api.js diff --git a/public/libs/i18n.js b/src/services/libs/i18n.ts similarity index 72% rename from public/libs/i18n.js rename to src/services/libs/i18n.ts index 6f6ebc83..be083f72 100644 --- a/public/libs/i18n.js +++ b/src/services/libs/i18n.ts @@ -1,8 +1,8 @@ -const path = require('path'); -const i18next = require('i18next'); -const Backend = require('i18next-fs-backend'); +import path from 'path'; +import i18next from 'i18next'; +import Backend from 'i18next-fs-backend'; -const { LOCALIZATION_FOLDER, isDev } = require('../constants/paths'); +import { LOCALIZATION_FOLDER, isDev } from '../constants/paths'; i18next.use(Backend).init({ backend: { @@ -14,7 +14,7 @@ i18next.use(Backend).init({ interpolation: { escapeValue: false }, saveMissing: isDev, saveMissingTo: 'current', - namespace: 'translation', + // namespace: 'translation', lng: 'zh_CN', fallbackLng: isDev ? false : 'en', // set to false when generating translation files locally }); @@ -26,4 +26,4 @@ setTimeout(() => { i18next.changeLanguage(getPreference('language')); }, 1); -module.exports = i18next; +export default i18next; diff --git a/public/libs/i18next-electron-fs-backend.js b/src/services/libs/i18next-electron-fs-backend.js similarity index 100% rename from public/libs/i18next-electron-fs-backend.js rename to src/services/libs/i18next-electron-fs-backend.js diff --git a/public/libs/log/index.js b/src/services/libs/log/index.js similarity index 100% rename from public/libs/log/index.js rename to src/services/libs/log/index.js diff --git a/public/libs/log/renderer-transport.js b/src/services/libs/log/renderer-transport.js similarity index 100% rename from public/libs/log/renderer-transport.js rename to src/services/libs/log/renderer-transport.js diff --git a/public/libs/log/wiki-output.js b/src/services/libs/log/wiki-output.js similarity index 100% rename from public/libs/log/wiki-output.js rename to src/services/libs/log/wiki-output.js diff --git a/public/libs/notifications.js b/src/services/libs/notifications.js similarity index 100% rename from public/libs/notifications.js rename to src/services/libs/notifications.js diff --git a/public/libs/preferences.js b/src/services/libs/preferences.js similarity index 100% rename from public/libs/preferences.js rename to src/services/libs/preferences.js diff --git a/public/libs/send-to-all-windows.js b/src/services/libs/send-to-all-windows.js similarity index 100% rename from public/libs/send-to-all-windows.js rename to src/services/libs/send-to-all-windows.js diff --git a/public/libs/system-preferences.js b/src/services/libs/system-preferences.js similarity index 100% rename from public/libs/system-preferences.js rename to src/services/libs/system-preferences.js diff --git a/public/libs/updater.js b/src/services/libs/updater.js similarity index 100% rename from public/libs/updater.js rename to src/services/libs/updater.js diff --git a/public/libs/views.js b/src/services/libs/views.js similarity index 100% rename from public/libs/views.js rename to src/services/libs/views.js diff --git a/public/libs/wiki/create-wiki.js b/src/services/libs/wiki/create-wiki.js similarity index 100% rename from public/libs/wiki/create-wiki.js rename to src/services/libs/wiki/create-wiki.js diff --git a/public/libs/wiki/start-nodejs-wiki.js b/src/services/libs/wiki/start-nodejs-wiki.js similarity index 100% rename from public/libs/wiki/start-nodejs-wiki.js rename to src/services/libs/wiki/start-nodejs-wiki.js diff --git a/public/libs/wiki/update-plugin-content.js b/src/services/libs/wiki/update-plugin-content.js similarity index 100% rename from public/libs/wiki/update-plugin-content.js rename to src/services/libs/wiki/update-plugin-content.js diff --git a/public/libs/wiki/watch-wiki.js b/src/services/libs/wiki/watch-wiki.js similarity index 100% rename from public/libs/wiki/watch-wiki.js rename to src/services/libs/wiki/watch-wiki.js diff --git a/public/libs/wiki/wiki-operation.js b/src/services/libs/wiki/wiki-operation.js similarity index 100% rename from public/libs/wiki/wiki-operation.js rename to src/services/libs/wiki/wiki-operation.js diff --git a/public/libs/wiki/wiki-startup.js b/src/services/libs/wiki/wiki-startup.js similarity index 100% rename from public/libs/wiki/wiki-startup.js rename to src/services/libs/wiki/wiki-startup.js diff --git a/public/libs/wiki/wiki-worker-mamager.js b/src/services/libs/wiki/wiki-worker-mamager.js similarity index 100% rename from public/libs/wiki/wiki-worker-mamager.js rename to src/services/libs/wiki/wiki-worker-mamager.js diff --git a/public/libs/wiki/wiki-worker.js b/src/services/libs/wiki/wiki-worker.js similarity index 100% rename from public/libs/wiki/wiki-worker.js rename to src/services/libs/wiki/wiki-worker.js diff --git a/public/libs/workspace-metas.js b/src/services/libs/workspace-metas.js similarity index 100% rename from public/libs/workspace-metas.js rename to src/services/libs/workspace-metas.js diff --git a/public/libs/workspaces-views.js b/src/services/libs/workspaces-views.js similarity index 100% rename from public/libs/workspaces-views.js rename to src/services/libs/workspaces-views.js diff --git a/public/libs/workspaces.js b/src/services/libs/workspaces.js similarity index 100% rename from public/libs/workspaces.js rename to src/services/libs/workspaces.js diff --git a/public/listeners/i18n.js b/src/services/listeners/i18n.js similarity index 100% rename from public/listeners/i18n.js rename to src/services/listeners/i18n.js diff --git a/public/listeners/index.js b/src/services/listeners/index.js similarity index 100% rename from public/listeners/index.js rename to src/services/listeners/index.js diff --git a/public/menubar.png b/src/services/menubar.png similarity index 100% rename from public/menubar.png rename to src/services/menubar.png diff --git a/public/menubar@2x.png b/src/services/menubar@2x.png similarity index 100% rename from public/menubar@2x.png rename to src/services/menubar@2x.png diff --git a/public/menubarTemplate.png b/src/services/menubarTemplate.png similarity index 100% rename from public/menubarTemplate.png rename to src/services/menubarTemplate.png diff --git a/public/menubarTemplate@2x.png b/src/services/menubarTemplate@2x.png similarity index 100% rename from public/menubarTemplate@2x.png rename to src/services/menubarTemplate@2x.png diff --git a/public/overlay-icon.png b/src/services/overlay-icon.png similarity index 100% rename from public/overlay-icon.png rename to src/services/overlay-icon.png diff --git a/public/overlay-icon@2x.png b/src/services/overlay-icon@2x.png similarity index 100% rename from public/overlay-icon@2x.png rename to src/services/overlay-icon@2x.png diff --git a/public/overlay-icon@3x.png b/src/services/overlay-icon@3x.png similarity index 100% rename from public/overlay-icon@3x.png rename to src/services/overlay-icon@3x.png diff --git a/public/overlay-icon@4x.png b/src/services/overlay-icon@4x.png similarity index 100% rename from public/overlay-icon@4x.png rename to src/services/overlay-icon@4x.png diff --git a/public/overlay-icon@5x.png b/src/services/overlay-icon@5x.png similarity index 100% rename from public/overlay-icon@5x.png rename to src/services/overlay-icon@5x.png diff --git a/public/preload/about.js b/src/services/preload/about.js similarity index 100% rename from public/preload/about.js rename to src/services/preload/about.js diff --git a/public/preload/add-workspace.js b/src/services/preload/add-workspace.js similarity index 100% rename from public/preload/add-workspace.js rename to src/services/preload/add-workspace.js diff --git a/public/preload/auth.js b/src/services/preload/auth.js similarity index 100% rename from public/preload/auth.js rename to src/services/preload/auth.js diff --git a/public/preload/code-injection.js b/src/services/preload/code-injection.js similarity index 100% rename from public/preload/code-injection.js rename to src/services/preload/code-injection.js diff --git a/public/preload/common/authing-postmessage.js b/src/services/preload/common/authing-postmessage.js similarity index 100% rename from public/preload/common/authing-postmessage.js rename to src/services/preload/common/authing-postmessage.js diff --git a/public/preload/common/i18n.js b/src/services/preload/common/i18n.js similarity index 100% rename from public/preload/common/i18n.js rename to src/services/preload/common/i18n.js diff --git a/public/preload/common/require-nodejs.js b/src/services/preload/common/require-nodejs.js similarity index 100% rename from public/preload/common/require-nodejs.js rename to src/services/preload/common/require-nodejs.js diff --git a/public/preload/common/simple-context-menu.js b/src/services/preload/common/simple-context-menu.js similarity index 100% rename from public/preload/common/simple-context-menu.js rename to src/services/preload/common/simple-context-menu.js diff --git a/public/preload/custom-user-agent.js b/src/services/preload/custom-user-agent.js similarity index 100% rename from public/preload/custom-user-agent.js rename to src/services/preload/custom-user-agent.js diff --git a/public/preload/display-media.js b/src/services/preload/display-media.js similarity index 100% rename from public/preload/display-media.js rename to src/services/preload/display-media.js diff --git a/public/preload/edit-workspace.js b/src/services/preload/edit-workspace.js similarity index 100% rename from public/preload/edit-workspace.js rename to src/services/preload/edit-workspace.js diff --git a/public/preload/go-to-url.js b/src/services/preload/go-to-url.js similarity index 100% rename from public/preload/go-to-url.js rename to src/services/preload/go-to-url.js diff --git a/public/preload/main.js b/src/services/preload/main.ts similarity index 100% rename from public/preload/main.js rename to src/services/preload/main.ts diff --git a/public/preload/menubar.js b/src/services/preload/menubar.js similarity index 100% rename from public/preload/menubar.js rename to src/services/preload/menubar.js diff --git a/public/preload/notifications.js b/src/services/preload/notifications.js similarity index 100% rename from public/preload/notifications.js rename to src/services/preload/notifications.js diff --git a/public/preload/open-url-with.js b/src/services/preload/open-url-with.js similarity index 100% rename from public/preload/open-url-with.js rename to src/services/preload/open-url-with.js diff --git a/public/preload/preferences.js b/src/services/preload/preferences.js similarity index 100% rename from public/preload/preferences.js rename to src/services/preload/preferences.js diff --git a/public/preload/proxy.js b/src/services/preload/proxy.js similarity index 100% rename from public/preload/proxy.js rename to src/services/preload/proxy.js diff --git a/public/preload/spellcheck-languages.js b/src/services/preload/spellcheck-languages.js similarity index 100% rename from public/preload/spellcheck-languages.js rename to src/services/preload/spellcheck-languages.js diff --git a/public/preload/view.js b/src/services/preload/view.js similarity index 100% rename from public/preload/view.js rename to src/services/preload/view.js diff --git a/public/windows/about.js b/src/services/windows/about.js similarity index 100% rename from public/windows/about.js rename to src/services/windows/about.js diff --git a/public/windows/add-workspace.js b/src/services/windows/add-workspace.js similarity index 100% rename from public/windows/add-workspace.js rename to src/services/windows/add-workspace.js diff --git a/public/windows/auth.js b/src/services/windows/auth.js similarity index 100% rename from public/windows/auth.js rename to src/services/windows/auth.js diff --git a/public/windows/code-injection.js b/src/services/windows/code-injection.js similarity index 100% rename from public/windows/code-injection.js rename to src/services/windows/code-injection.js diff --git a/public/windows/custom-user-agent.js b/src/services/windows/custom-user-agent.js similarity index 100% rename from public/windows/custom-user-agent.js rename to src/services/windows/custom-user-agent.js diff --git a/public/windows/display-media.js b/src/services/windows/display-media.js similarity index 100% rename from public/windows/display-media.js rename to src/services/windows/display-media.js diff --git a/public/windows/edit-workspace.js b/src/services/windows/edit-workspace.js similarity index 100% rename from public/windows/edit-workspace.js rename to src/services/windows/edit-workspace.js diff --git a/public/windows/go-to-url.js b/src/services/windows/go-to-url.js similarity index 100% rename from public/windows/go-to-url.js rename to src/services/windows/go-to-url.js diff --git a/src/services/windows/main.ts b/src/services/windows/main.ts new file mode 100644 index 00000000..4779e591 --- /dev/null +++ b/src/services/windows/main.ts @@ -0,0 +1,271 @@ +import { BrowserWindow, Menu, Tray, app, ipcMain, nativeImage } from 'electron'; +import windowStateKeeper from 'electron-window-state'; +import { menubar, Menubar } from 'menubar'; +import path from 'path'; + +import { REACT_PATH, isDev } from '../constants/paths'; +import { getPreference } from '../libs/preferences'; +import formatBytes from '../libs/format-bytes'; + +declare const MAIN_WINDOW_WEBPACK_ENTRY: string; +declare const MAIN_WINDOW_PRELOAD_WEBPACK_ENTRY: string; + +let win: BrowserWindow | undefined; +let menuBar: Menubar; +let attachToMenubar: boolean = false; + +export const get = (): BrowserWindow | undefined => { + if (attachToMenubar && menuBar) return menuBar.window; + return win; +}; + +export const createAsync = () => + new Promise((resolve) => { + attachToMenubar = getPreference('attachToMenubar'); + if (attachToMenubar) { + const menubarWindowState = windowStateKeeper({ + file: 'window-state-menubar.json', + defaultWidth: 400, + defaultHeight: 400, + }); + + // setImage after Tray instance is created to avoid + // "Segmentation fault (core dumped)" bug on Linux + // https://github.com/electron/electron/issues/22137#issuecomment-586105622 + // https://github.com/atomery/translatium/issues/164 + const tray = new Tray(nativeImage.createEmpty()); + // icon template is not supported on Windows & Linux + const iconPath = path.resolve(__dirname, '..', process.platform === 'darwin' ? 'menubarTemplate.png' : 'menubar.png'); + tray.setImage(iconPath); + + menuBar = menubar({ + index: REACT_PATH, + tray, + preloadWindow: true, + tooltip: 'TiddlyGit', + browserWindow: { + x: menubarWindowState.x, + y: menubarWindowState.y, + width: menubarWindowState.width, + height: menubarWindowState.height, + minHeight: 100, + minWidth: 250, + webPreferences: { + nodeIntegration: false, + enableRemoteModule: true, + webSecurity: !isDev, + contextIsolation: true, + preload: path.join(__dirname, '..', 'preload', 'menubar.js'), + }, + }, + }); + + menuBar.on('after-create-window', () => { + if (menuBar.window) { + menubarWindowState.manage(menuBar.window); + + menuBar.window.on('focus', () => { + const view = menuBar.window?.getBrowserView(); + if (view && view.webContents) { + view.webContents.focus(); + } + }); + } + }); + + menuBar.on('ready', () => { + menuBar.tray.on('right-click', () => { + const updaterEnabled = process.env.SNAP == null && !process.mas && !process.windowsStore; + + const updaterMenuItem = { + label: 'Check for Updates...', + click: () => ipcMain.emit('request-check-for-updates'), + visible: updaterEnabled, + enabled: true, + }; + if (global.updaterObj && global.updaterObj.status === 'update-downloaded') { + updaterMenuItem.label = 'Restart to Apply Updates...'; + } else if (global.updaterObj && global.updaterObj.status === 'update-available') { + updaterMenuItem.label = 'Downloading Updates...'; + updaterMenuItem.enabled = false; + } else if (global.updaterObj && global.updaterObj.status === 'download-progress') { + const { transferred, total, bytesPerSecond } = global.updaterObj.info; + updaterMenuItem.label = `Downloading Updates (${formatBytes(transferred)}/${formatBytes(total)} at ${formatBytes( + bytesPerSecond, + )}/s)...`; + updaterMenuItem.enabled = false; + } else if (global.updaterObj && global.updaterObj.status === 'checking-for-update') { + updaterMenuItem.label = 'Checking for Updates...'; + updaterMenuItem.enabled = false; + } + + const contextMenu = Menu.buildFromTemplate([ + { + label: 'Open TiddlyGit', + click: () => menuBar.showWindow(), + }, + { + type: 'separator', + }, + { + label: 'About TiddlyGit', + click: () => ipcMain.emit('request-show-about-window'), + }, + { type: 'separator' }, + updaterMenuItem, + { type: 'separator' }, + { + label: 'Preferences...', + click: () => ipcMain.emit('request-show-preferences-window'), + }, + { type: 'separator' }, + { + label: 'Notifications...', + click: () => ipcMain.emit('request-show-notifications-window'), + }, + { type: 'separator' }, + { + label: 'Clear Browsing Data...', + click: () => ipcMain.emit('request-clear-browsing-data'), + }, + { type: 'separator' }, + { + role: 'quit', + click: () => { + menuBar.app.quit(); + }, + }, + ]); + + menuBar.tray.popUpContextMenu(contextMenu); + }); + + resolve(); + }); + return; + } + + const { wasOpenedAsHidden } = app.getLoginItemSettings(); + + const mainWindowState = windowStateKeeper({ + defaultWidth: 1000, + defaultHeight: 768, + }); + + win = new BrowserWindow({ + x: mainWindowState.x, + y: mainWindowState.y, + width: mainWindowState.width, + height: mainWindowState.height, + minHeight: 100, + minWidth: 350, + title: 'TiddlyGit', + titleBarStyle: 'hidden', + show: false, + // manually set dock icon for AppImage + // Snap icon is set correct already so no need to intervene + icon: process.platform === 'linux' && process.env.SNAP == null ? path.resolve(__dirname, '..', 'icon.png') : undefined, + webPreferences: { + nodeIntegration: false, + enableRemoteModule: true, + webSecurity: !isDev, + contextIsolation: true, + preload: MAIN_WINDOW_PRELOAD_WEBPACK_ENTRY, + }, + }); + if (getPreference('hideMenuBar')) { + win.setMenuBarVisibility(false); + } + + mainWindowState.manage(win); + + // Enable swipe to navigate + const swipeToNavigate = getPreference('swipeToNavigate'); + if (swipeToNavigate) { + win.on('swipe', (e, direction) => { + const view = win?.getBrowserView(); + if (view) { + if (direction === 'left') { + view.webContents.goBack(); + } else if (direction === 'right') { + view.webContents.goForward(); + } + } + }); + } + + // Hide window instead closing on macos + win.on('close', (e) => { + // FIXME: use custom property + if (win && process.platform === 'darwin' && !(win as any).forceClose) { + e.preventDefault(); + // https://github.com/electron/electron/issues/6033#issuecomment-242023295 + if (win.isFullScreen()) { + win.once('leave-full-screen', () => { + if (win) { + win.hide(); + } + }); + win.setFullScreen(false); + } else { + win.hide(); + } + } + }); + + win.on('closed', () => { + win = undefined; + }); + + win.on('focus', () => { + const view = win?.getBrowserView(); + if (view && view.webContents) { + view.webContents.focus(); + } + }); + + win.once('ready-to-show', () => { + if (win && !wasOpenedAsHidden) { + win.show(); + } + + // calling this to redundantly setBounds BrowserView + // after the UI is fully loaded + // if not, BrowserView mouseover event won't work correctly + // https://github.com/atomery/webcatalog/issues/812 + ipcMain.emit('request-realign-active-workspace'); + }); + + win.on('enter-full-screen', () => { + win?.webContents.send('is-fullscreen-updated', true); + ipcMain.emit('request-realign-active-workspace'); + }); + win.on('leave-full-screen', () => { + win?.webContents.send('is-fullscreen-updated', false); + ipcMain.emit('request-realign-active-workspace'); + }); + + // ensure redux is loaded first + // if not, redux might not be able catch changes sent from ipcMain + win.webContents.once('did-stop-loading', () => { + resolve(); + }); + + win.loadURL(MAIN_WINDOW_WEBPACK_ENTRY); + }); + +export const show = () => { + if (attachToMenubar) { + if (menuBar == null) { + createAsync(); + } else { + menuBar.on('ready', () => { + menuBar.showWindow(); + }); + } + } else if (win == null) { + createAsync(); + } else { + win.show(); + } +}; diff --git a/public/windows/notifications.js b/src/services/windows/notifications.js similarity index 100% rename from public/windows/notifications.js rename to src/services/windows/notifications.js diff --git a/public/windows/open-url-with.js b/src/services/windows/open-url-with.js similarity index 100% rename from public/windows/open-url-with.js rename to src/services/windows/open-url-with.js diff --git a/public/windows/preferences.js b/src/services/windows/preferences.js similarity index 100% rename from public/windows/preferences.js rename to src/services/windows/preferences.js diff --git a/public/windows/proxy.js b/src/services/windows/proxy.js similarity index 100% rename from public/windows/proxy.js rename to src/services/windows/proxy.js diff --git a/public/windows/spellcheck-languages.js b/src/services/windows/spellcheck-languages.js similarity index 100% rename from public/windows/spellcheck-languages.js rename to src/services/windows/spellcheck-languages.js diff --git a/tsconfig.eslint.json b/tsconfig.eslint.json new file mode 100644 index 00000000..103ff9b8 --- /dev/null +++ b/tsconfig.eslint.json @@ -0,0 +1,22 @@ +{ + // extend your base config to share compilerOptions, etc + "extends": "./tsconfig.json", + "compilerOptions": { + // ensure that nobody can accidentally use this config for a build + "noEmit": true + }, + "include": [ + // whatever paths you intend to lint + "src/**/*.ts", + "src/**/*.js", + "src/**/*.tsx", + "src/**/*.jsx", + "public/**/*.ts", + "public/**/*.js", + "src/**/*.d.ts", + "public/**/*.d.ts", + "./*.json", + "./*.js" + ], + "exclude": ["template/**/*.js"] +} diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 00000000..a34a5582 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,69 @@ +{ + "exclude": ["template/**/*.js"], + "compilerOptions": { + "baseUrl": "./src", + "paths": { + "@/*": ["./*"], + "@services/*": ["./services/*"] + }, + /* Basic Options */ + "target": "es2019" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017','ES2018' or 'ESNEXT'. */, + "module": "commonjs" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */, + // "lib": [], /* Specify library files to be included in the compilation. */ + "allowJs": true /* Allow javascript files to be compiled. */, + // "checkJs": true, /* Report errors in .js files. */ + "jsx": "react" /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */, + "declaration": true /* Generates corresponding '.d.ts' file. */, + // "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */ + "sourceMap": true /* Generates corresponding '.map' file. */, + // "outFile": "./", /* Concatenate and emit output to single file. */ + // "outDir": "dist" /* Redirect output structure to the directory. */, + // "rootDir": "./", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */ + // "composite": true, /* Enable project compilation */ + // "removeComments": true, /* Do not emit comments to output. */ + // "noEmit": true, /* Do not emit outputs. */ + // "importHelpers": true, /* Import emit helpers from 'tslib'. */ + // "downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */ + // "isolatedModules": true, /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */ + + /* Strict Type-Checking Options */ + "strict": true /* Enable all strict type-checking options. */, + // "noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */ + "strictNullChecks": true /* Enable strict null checks. */, + "strictFunctionTypes": true /* Enable strict checking of function types. */, + "strictPropertyInitialization": true /* Enable strict checking of property initialization in classes. */, + "noImplicitThis": true /* Raise error on 'this' expressions with an implied 'any' type. */, + "alwaysStrict": true /* Parse in strict mode and emit "use strict" for each source file. */, + + /* Additional Checks */ + // "noUnusedLocals": true, /* Report errors on unused locals. */ + // "noUnusedParameters": true, /* Report errors on unused parameters. */ + // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */ + // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */ + + /* Module Resolution Options */ + "moduleResolution": "node" /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */, + // "baseUrl": "./", /* Base directory to resolve non-absolute module names. */ + // "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */ + // "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */ + // "typeRoots": [], /* List of folders to include type definitions from. */ + "types": ["reflect-metadata"] /* Type declaration files to be included in compilation. */, + "allowSyntheticDefaultImports": true /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */, + "resolveJsonModule": true, + "esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */, + // "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */ + + /* Source Map Options */ + // "sourceRoot": "./", /* Specify the location where debugger should locate TypeScript files instead of source locations. */ + // "mapRoot": "./", /* Specify the location where debugger should locate map files instead of generated locations. */ + // "inlineSourceMap": true, /* Emit a single file with source maps instead of having a separate file. */ + // "inlineSources": true, /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */ + + /* Experimental Options */ + "experimentalDecorators": true /* Enables experimental support for ES7 decorators. */, + "emitDecoratorMetadata": true /* Enables experimental support for emitting type metadata for decorators. */ + + /* Advanced Options */ + // "declarationDir": "lib" /* Output directory for generated declaration files. */ + } +} diff --git a/webpack.alias.js b/webpack.alias.js new file mode 100644 index 00000000..34c97b2d --- /dev/null +++ b/webpack.alias.js @@ -0,0 +1,17 @@ +const path = require('path'); +const fs = require('fs-extra'); + +/** + * @param {string[]} pathFragment + * @returns {string} + */ +const rootResolve = (...pathFragment) => path.resolve(__dirname, ...pathFragment); + +const webpackAlias = { + '@': rootResolve('src'), + '@services': rootResolve('src/services'), +}; + +module.exports = { + webpackAlias, +}; diff --git a/webpack.main.config.js b/webpack.main.config.js new file mode 100644 index 00000000..c15aee16 --- /dev/null +++ b/webpack.main.config.js @@ -0,0 +1,17 @@ +const { webpackAlias } = require('./webpack.alias'); + +module.exports = { + /** + * This is the main entry point for your application, it's the first file + * that runs in the main process. + */ + entry: './src/services/electron.ts', + // Put your normal webpack config below here + module: { + rules: require('./webpack.rules'), + }, + resolve: { + alias: webpackAlias, + extensions: ['.js', '.ts', '.jsx', '.tsx', '.json'], + }, +}; diff --git a/webpack.plugins.js b/webpack.plugins.js new file mode 100644 index 00000000..379a0988 --- /dev/null +++ b/webpack.plugins.js @@ -0,0 +1,27 @@ +/* eslint-disable @typescript-eslint/no-var-requires */ +const webpack = require('webpack'); +const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin'); +const CspHtmlWebpackPlugin = require('csp-html-webpack-plugin'); + +module.exports = [ + new ForkTsCheckerWebpackPlugin(), + new webpack.DefinePlugin({ + 'process.env': '{}', + global: {}, + }), + new CspHtmlWebpackPlugin( + { + 'base-uri': ["'self'"], + 'object-src': ["'none'"], + 'script-src': ["'self' 'unsafe-eval'"], + 'style-src': ["'self' 'unsafe-inline'"], + 'frame-src': ["'none'"], + 'worker-src': ["'none'"], + }, + { + nonceEnabled: { + 'style-src': false, + }, + }, + ), +]; diff --git a/webpack.renderer.config.js b/webpack.renderer.config.js new file mode 100644 index 00000000..3e4a3cfb --- /dev/null +++ b/webpack.renderer.config.js @@ -0,0 +1,16 @@ +/* eslint-disable @typescript-eslint/no-var-requires */ +const rules = require('./webpack.rules'); +const plugins = require('./webpack.plugins'); +const { webpackAlias } = require('./webpack.alias'); + +module.exports = { + target: 'web', + module: { + rules, + }, + plugins: plugins, + resolve: { + alias: webpackAlias, + extensions: ['.js', '.ts', '.jsx', '.tsx'], + }, +}; diff --git a/webpack.rules.js b/webpack.rules.js new file mode 100644 index 00000000..ae25b1a5 --- /dev/null +++ b/webpack.rules.js @@ -0,0 +1,40 @@ +module.exports = [ + // Add support for native node modules + { + test: /\.node$/, + use: 'node-loader', + }, + // { + // test: /\.(m?js|node)$/, + // parser: { amd: true }, + // use: { + // loader: '@zeit/webpack-asset-relocator-loader', + // options: { + // outputAssetBase: 'native_modules', + // emitDirnameAll: true, + // }, + // }, + // }, + { + test: /\.(t|j)sx?$/, + exclude: /(node_modules|\.webpack)/, + use: { + loader: 'ts-loader', + options: { + transpileOnly: true, + }, + }, + }, + { + test: /\.(woff(2)?|ttf|eot|svg)(\?v=\d+\.\d+\.\d+)?$/, + use: [ + { + loader: 'file-loader', + options: { + name: '[name].[ext]', + outputPath: 'fonts/', + }, + }, + ], + }, +];