diff --git a/.babelrc b/.babelrc deleted file mode 100644 index 3e8aaff..0000000 --- a/.babelrc +++ /dev/null @@ -1,11 +0,0 @@ -{ - "presets": ["env", "stage-1", "react", "rsuite"], - "plugins": [ - "lodash", - "transform-proto-to-assign", - "transform-runtime", - "add-module-exports", - "react-hot-loader/babel", - "transform-dev" - ] -} diff --git a/.eslintignore b/.eslintignore old mode 100644 new mode 100755 diff --git a/.eslintrc.js b/.eslintrc.js index 3c95776..6341e3e 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -1,41 +1,40 @@ -'use strict'; - const OFF = 0; -// const WARNING = 1; +const WARNING = 1; const ERROR = 2; module.exports = { - 'env': { - 'browser': true, - 'es6': true + env: { + browser: true, + es6: true }, - 'parser': 'babel-eslint', - 'plugins': [ - 'babel' + parser: '@typescript-eslint/parser', + extends: [ + 'plugin:@typescript-eslint/recommended', + 'plugin:react/recommended', + 'plugin:react-hooks/recommended', + 'prettier' ], - 'parserOptions': { - 'ecmaVersion': 6, - 'sourceType': 'module', - 'ecmaFeatures': { - 'jsx': true, - 'experimentalObjectRestSpread': true - } + parserOptions: {}, + plugins: ['@typescript-eslint', 'react'], + rules: { + semi: [ERROR, 'always'], + 'space-infix-ops': ERROR, + 'prefer-spread': ERROR, + 'no-multi-spaces': ERROR, + 'class-methods-use-this': WARNING, + 'arrow-parens': [ERROR, 'as-needed'], + '@typescript-eslint/no-unused-vars': ERROR, + '@typescript-eslint/no-explicit-any': OFF, + '@typescript-eslint/explicit-function-return-type': OFF, + '@typescript-eslint/explicit-member-accessibility': OFF, + '@typescript-eslint/no-namespace': OFF, + '@typescript-eslint/explicit-module-boundary-types': OFF, + 'react/display-name': OFF, + 'react/prop-types': OFF }, - 'rules': { - 'indent': [ERROR, 2, { 'SwitchCase': 1 }], //规定代码的缩进方式:2个空格 - 'camelcase': ERROR, //强制驼峰法命名 - 'curly': ERROR, //必须使用 if(){} 中的{} - 'eqeqeq': ERROR, //必须使用全等 - 'brace-style': [ERROR, '1tbs'], //大括号风格 - 'quotes': [ERROR, 'single'], //引号类型 - 'semi': [ERROR, 'always'], //语句强制分号结尾 - 'space-infix-ops': ERROR, //中缀操作符周围要不要有空格 - 'no-param-reassign': OFF, //不允许对函数的形参进行赋值 - 'prefer-spread': ERROR, //首选展开运算 - 'comma-dangle': OFF, //不允许或强制在对象字面量或者数组属性的结尾使用逗号 - 'padded-blocks': OFF, //规定代码块前后是否要加空行 - 'prefer-const': OFF, - 'no-var': OFF, - 'one-var': OFF + settings: { + react: { + version: 'detect' + } } }; diff --git a/.flowconfig b/.flowconfig deleted file mode 100644 index 3701c88..0000000 --- a/.flowconfig +++ /dev/null @@ -1,15 +0,0 @@ -[ignore] -.*/build/.* -.*/node_modules/.* - -[include] - -[libs] -/flow-typed - -[lints] - - -[options] - -[strict] diff --git a/.prettierrc b/.prettierrc deleted file mode 100644 index bf145f0..0000000 --- a/.prettierrc +++ /dev/null @@ -1,5 +0,0 @@ -{ - "printWidth": 100, - "tabWidth": 2, - "singleQuote": true -} diff --git a/.prettierrc.js b/.prettierrc.js new file mode 100755 index 0000000..5e4ed56 --- /dev/null +++ b/.prettierrc.js @@ -0,0 +1,7 @@ +module.exports = { + printWidth: 100, + tabWidth: 2, + singleQuote: true, + arrowParens: 'avoid', + trailingComma: 'none' +}; diff --git a/README.md b/README.md index d811094..e99690a 100644 --- a/README.md +++ b/README.md @@ -1,27 +1,34 @@ -# RSUITE ANALYTICS +# Admin Dashboard Template -这是一个 React Suite 示例项目 +Ease developers’ life with the React Suite 5. TypeScript will help with optimizing. Quick start & easily extensible code. -![demo](./readme.jpg) +![preview](./preview-1.png) +![preview](./preview-2.png) -## 开发 +## Development + +Fork this repo to your namespace and clone to your local machine. ``` -npm run dev +git clone git@github.com:/rsuite-admin-template.git +$ cd rsuite-admin-template ``` - -## 测试 +Install dependencies ``` -npm run test +npm install ``` +Now you can start the development server by running npm run dev -## 打包发布 - +It's serving at http://127.0.0.1:3100/ by default. ``` -npm run build -``` \ No newline at end of file +npm run dev +``` + +## License + +MIT © [simonguo](https://github.com/simonguo) diff --git a/babel.config.js b/babel.config.js new file mode 100755 index 0000000..f624214 --- /dev/null +++ b/babel.config.js @@ -0,0 +1,25 @@ +module.exports = (api, options) => { + const { NODE_ENV } = options || process.env; + const dev = NODE_ENV === 'development'; + const modules = NODE_ENV === 'esm' ? false : 'commonjs'; + + if (api) { + api.cache(() => NODE_ENV); + } + + return { + presets: [ + ['@babel/preset-env', { modules, loose: true }], + ['@babel/preset-react', { development: dev, runtime: 'automatic' }], + '@babel/typescript' + ], + plugins: [ + ['@babel/plugin-proposal-class-properties', { loose: true }], + '@babel/plugin-proposal-optional-chaining', + '@babel/plugin-proposal-export-namespace-from', + '@babel/plugin-proposal-export-default-from', + ['@babel/plugin-transform-runtime', { useESModules: !modules }], + ['module-resolver', { alias: { '@': './src' } }] + ] + }; +}; diff --git a/flow-typed/npm/algoliasearch_v3.x.x.js b/flow-typed/npm/algoliasearch_v3.x.x.js deleted file mode 100644 index 3ac9621..0000000 --- a/flow-typed/npm/algoliasearch_v3.x.x.js +++ /dev/null @@ -1,210 +0,0 @@ -// flow-typed signature: 2b849e9475cf6c205eb91bef1cf09580 -// flow-typed version: 0850d53e97/algoliasearch_v3.x.x/flow_>=v0.56.x - -// @flow - -type JSONObject = mixed; -type HTTPClient = any; -type Callback = (error: ?Error, response: Response) => void; - -declare type $algolia$SearchIndexResponse = {| - hits: Array, - page: number, - nbHits: number, - nbPages: number, - hitsPerPage: number, - processingTimeMS: number, - query: string, - parsed_query: string, - params: string, -|}; - -declare type $algolia$SearchIndexMultiResponse = {| - results: Array<$algolia$SearchIndexResponse>, -|}; - -declare type $algoliasearch$Settings = {| - // https://www.algolia.com/doc/rest-api/search/#ranking - // Attributes - searchableAttributes?: Array, - attributesForFaceting?: Array, - unretrievableAttributes?: Array, - attributesToRetrieve?: Array | '*', - - // Ranking - ranking?: Array, - customRanking?: Array, - replicas?: Array, - - // Faceting - maxValuesPerFacet?: number, - - // Hightlighting & Snippeting - attributesToHighlight?: Array, - attributesToSnippet?: Array, - hightlightPreTag?: string, - hightlightPostTag?: string, - snippetEllipsisText?: string, - restrictHighlightAndSnippetArrays?: boolean, - - // Pagination - hitsPerPage?: number, - paginationLimitedTo?: number, - - // Typo - minWordSizefor1Typo?: number, - minWordSizefor2Typo?: number, - typoTolerance?: string | boolean, - allowTyposOnNumericTokens?: boolean, - ignorePlurals?: boolean, - disableTypoToleranceOnAttributes?: boolean, - disableTypoToleranceOnWords?: boolean, - separatorsToIndex?: string, -|}; - -declare type $algoliasearch$ClientOptions = {| - timeout?: number, - protocol?: 'http:' | 'https:', - httpClient?: HTTPClient, - hosts?: {| - read?: string, - write?: string, - |}, -|}; - -declare type $algoliasearch$QueryParameters = - | string - | { - advancedSyntax?: boolean, - allowTyposOnNumericTokens?: boolean, - alternativesAsExact?: any, - analytics?: boolean, - analyticsTags?: Array, - aroundLatLng?: string, - aroundLatLngViaIP?: string, - aroundPrecision?: number, - aroundRadius?: number | 'all', - attributesToHighlight?: Array, - attributesToRetrieve?: Array, - attributesToSnippet?: Array, - disableExactOnAttributes?: Array, - disableTypoToleranceOnAttributes?: string, - distinct?: any, - exactOnSingleWordQuery?: string, - facetFilters?: string, - facets?: string, - filters?: string, - getRankingInfo?: boolean, - highlightPostTag?: string, - highlightPreTag?: string, - hitsPerPage?: number, - ignorePlurals?: boolean, - insideBoundingBox?: number[][], - insidePolygon?: number[][], - length?: number, - maxValuesPerFacet?: string, - minimumAroundRadius?: number, - minProximity?: number, - minWordSizefor1Typo?: number, - minWordSizefor2Typos?: number, - numericAttributesToIndex?: Array, - numericFilters?: Array, - offset?: number, - optionalWords?: Array, - page?: number, - query?: string, - queryType?: any, - removeStopWords?: Array, - removeWordsIfNoResults?: string, - replaceSynonymsInHighlight?: boolean, - restrictHighlightAndSnippetArrays?: boolean, - restrictSearchableAttributes?: Array, - snippetEllipsisText?: string, - synonyms?: boolean, - tagFilters?: string, - typoTolerance?: boolean, - }; - -declare type $algoliasearch$QueryMultiParameters = Array<{| - indexName: string, - params: $algoliasearch$QueryParameters, -|}>; - -declare interface $algoliasearch$Client { - clearCache(): void, - initIndex(s: string): $algoliasearch$Index, -}; - -declare interface $algoliasearch$IndexLite { - clearCache(): void, - // Single - search( - s: $algoliasearch$QueryParameters, - callback: Callback<$algolia$SearchIndexResponse> - ): void, - search( - s: $algoliasearch$QueryParameters - ): Promise<$algolia$SearchIndexResponse>, - // Multi - search( - queries: Array<$algoliasearch$QueryMultiParameters>, - callback: Callback<$algolia$SearchIndexMultiResponse> - ): void, - search( - queries: Array<$algoliasearch$QueryMultiParameters> - ): Promise<$algolia$SearchIndexMultiResponse>, - setSettings(settings: $algoliasearch$Settings, callback: Callback): void, - setSettings(settings: $algoliasearch$Settings): Promise, -}; - -declare interface $algoliasearch$Index extends $algoliasearch$IndexLite { - addObjects(o: JSONObject, callback: Callback): void, - addObjects(o: JSONObject): Promise, -}; - -declare interface $algoliasearch$ClientLite { - clearCache(): void, - initIndex(s: string): $algoliasearch$IndexLite, -}; - -declare module 'algoliasearch' { - declare type Client = $algoliasearch$Client; - declare type ClientOptions = $algoliasearch$ClientOptions; - declare type Index = $algoliasearch$Index; - declare type Settings = $algoliasearch$Settings; - declare module.exports: { - ( - applicationID: string, - apiKey: string, - options?: ClientOptions - ): Client; - } -} - -declare module 'algoliasearch/reactnative' { - declare type Client = $algoliasearch$Client; - declare type ClientOptions = $algoliasearch$ClientOptions; - declare type Index = $algoliasearch$Index; - declare type Settings = $algoliasearch$Settings; - declare module.exports: { - ( - applicationID: string, - apiKey: string, - options?: ClientOptions - ): Client; - } -} - -declare module 'algoliasearch/lite' { - declare type Client = $algoliasearch$ClientLite; - declare type ClientOptions = $algoliasearch$ClientOptions; - declare type Index = $algoliasearch$IndexLite; - declare type Settings = $algoliasearch$Settings; - declare module.exports: { - ( - applicationID: string, - apiKey: string, - options?: ClientOptions - ): Client; - } -} diff --git a/flow-typed/npm/autoprefixer_vx.x.x.js b/flow-typed/npm/autoprefixer_vx.x.x.js deleted file mode 100644 index f4a5820..0000000 --- a/flow-typed/npm/autoprefixer_vx.x.x.js +++ /dev/null @@ -1,487 +0,0 @@ -// flow-typed signature: 35e4fc37df5ddfc8319e90cb9110dcdf -// flow-typed version: <>/autoprefixer_v^7.1.6/flow_v0.77.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'autoprefixer' - * - * Fill this stub out by replacing all the `any` types. - * - * Once filled out, we encourage you to share your work with the - * community by sending a pull request to: - * https://github.com/flowtype/flow-typed - */ - -declare module 'autoprefixer' { - declare module.exports: any; -} - -/** - * We include stubs for each file inside this npm package in case you need to - * require those files directly. Feel free to delete any files that aren't - * needed. - */ -declare module 'autoprefixer/data/prefixes' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/at-rule' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/autoprefixer' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/brackets' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/browsers' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/declaration' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/hacks/align-content' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/hacks/align-items' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/hacks/align-self' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/hacks/animation' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/hacks/appearance' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/hacks/background-size' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/hacks/block-logical' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/hacks/border-image' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/hacks/border-radius' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/hacks/break-props' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/hacks/cross-fade' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/hacks/display-flex' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/hacks/display-grid' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/hacks/filter-value' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/hacks/filter' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/hacks/flex-basis' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/hacks/flex-direction' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/hacks/flex-flow' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/hacks/flex-grow' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/hacks/flex-shrink' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/hacks/flex-spec' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/hacks/flex-wrap' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/hacks/flex' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/hacks/fullscreen' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/hacks/gradient' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/hacks/grid-area' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/hacks/grid-column-align' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/hacks/grid-end' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/hacks/grid-row-align' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/hacks/grid-row-column' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/hacks/grid-rows-columns' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/hacks/grid-shorthand' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/hacks/grid-start' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/hacks/grid-template-areas' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/hacks/grid-template' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/hacks/image-rendering' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/hacks/image-set' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/hacks/inline-logical' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/hacks/intrinsic' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/hacks/justify-content' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/hacks/mask-border' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/hacks/order' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/hacks/pixelated' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/hacks/placeholder' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/hacks/text-decoration' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/hacks/text-emphasis-position' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/hacks/transform-decl' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/hacks/writing-mode' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/info' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/old-selector' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/old-value' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/prefixer' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/prefixes' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/processor' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/resolution' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/selector' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/supports' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/transition' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/utils' { - declare module.exports: any; -} - -declare module 'autoprefixer/lib/value' { - declare module.exports: any; -} - -// Filename aliases -declare module 'autoprefixer/data/prefixes.js' { - declare module.exports: $Exports<'autoprefixer/data/prefixes'>; -} -declare module 'autoprefixer/lib/at-rule.js' { - declare module.exports: $Exports<'autoprefixer/lib/at-rule'>; -} -declare module 'autoprefixer/lib/autoprefixer.js' { - declare module.exports: $Exports<'autoprefixer/lib/autoprefixer'>; -} -declare module 'autoprefixer/lib/brackets.js' { - declare module.exports: $Exports<'autoprefixer/lib/brackets'>; -} -declare module 'autoprefixer/lib/browsers.js' { - declare module.exports: $Exports<'autoprefixer/lib/browsers'>; -} -declare module 'autoprefixer/lib/declaration.js' { - declare module.exports: $Exports<'autoprefixer/lib/declaration'>; -} -declare module 'autoprefixer/lib/hacks/align-content.js' { - declare module.exports: $Exports<'autoprefixer/lib/hacks/align-content'>; -} -declare module 'autoprefixer/lib/hacks/align-items.js' { - declare module.exports: $Exports<'autoprefixer/lib/hacks/align-items'>; -} -declare module 'autoprefixer/lib/hacks/align-self.js' { - declare module.exports: $Exports<'autoprefixer/lib/hacks/align-self'>; -} -declare module 'autoprefixer/lib/hacks/animation.js' { - declare module.exports: $Exports<'autoprefixer/lib/hacks/animation'>; -} -declare module 'autoprefixer/lib/hacks/appearance.js' { - declare module.exports: $Exports<'autoprefixer/lib/hacks/appearance'>; -} -declare module 'autoprefixer/lib/hacks/background-size.js' { - declare module.exports: $Exports<'autoprefixer/lib/hacks/background-size'>; -} -declare module 'autoprefixer/lib/hacks/block-logical.js' { - declare module.exports: $Exports<'autoprefixer/lib/hacks/block-logical'>; -} -declare module 'autoprefixer/lib/hacks/border-image.js' { - declare module.exports: $Exports<'autoprefixer/lib/hacks/border-image'>; -} -declare module 'autoprefixer/lib/hacks/border-radius.js' { - declare module.exports: $Exports<'autoprefixer/lib/hacks/border-radius'>; -} -declare module 'autoprefixer/lib/hacks/break-props.js' { - declare module.exports: $Exports<'autoprefixer/lib/hacks/break-props'>; -} -declare module 'autoprefixer/lib/hacks/cross-fade.js' { - declare module.exports: $Exports<'autoprefixer/lib/hacks/cross-fade'>; -} -declare module 'autoprefixer/lib/hacks/display-flex.js' { - declare module.exports: $Exports<'autoprefixer/lib/hacks/display-flex'>; -} -declare module 'autoprefixer/lib/hacks/display-grid.js' { - declare module.exports: $Exports<'autoprefixer/lib/hacks/display-grid'>; -} -declare module 'autoprefixer/lib/hacks/filter-value.js' { - declare module.exports: $Exports<'autoprefixer/lib/hacks/filter-value'>; -} -declare module 'autoprefixer/lib/hacks/filter.js' { - declare module.exports: $Exports<'autoprefixer/lib/hacks/filter'>; -} -declare module 'autoprefixer/lib/hacks/flex-basis.js' { - declare module.exports: $Exports<'autoprefixer/lib/hacks/flex-basis'>; -} -declare module 'autoprefixer/lib/hacks/flex-direction.js' { - declare module.exports: $Exports<'autoprefixer/lib/hacks/flex-direction'>; -} -declare module 'autoprefixer/lib/hacks/flex-flow.js' { - declare module.exports: $Exports<'autoprefixer/lib/hacks/flex-flow'>; -} -declare module 'autoprefixer/lib/hacks/flex-grow.js' { - declare module.exports: $Exports<'autoprefixer/lib/hacks/flex-grow'>; -} -declare module 'autoprefixer/lib/hacks/flex-shrink.js' { - declare module.exports: $Exports<'autoprefixer/lib/hacks/flex-shrink'>; -} -declare module 'autoprefixer/lib/hacks/flex-spec.js' { - declare module.exports: $Exports<'autoprefixer/lib/hacks/flex-spec'>; -} -declare module 'autoprefixer/lib/hacks/flex-wrap.js' { - declare module.exports: $Exports<'autoprefixer/lib/hacks/flex-wrap'>; -} -declare module 'autoprefixer/lib/hacks/flex.js' { - declare module.exports: $Exports<'autoprefixer/lib/hacks/flex'>; -} -declare module 'autoprefixer/lib/hacks/fullscreen.js' { - declare module.exports: $Exports<'autoprefixer/lib/hacks/fullscreen'>; -} -declare module 'autoprefixer/lib/hacks/gradient.js' { - declare module.exports: $Exports<'autoprefixer/lib/hacks/gradient'>; -} -declare module 'autoprefixer/lib/hacks/grid-area.js' { - declare module.exports: $Exports<'autoprefixer/lib/hacks/grid-area'>; -} -declare module 'autoprefixer/lib/hacks/grid-column-align.js' { - declare module.exports: $Exports<'autoprefixer/lib/hacks/grid-column-align'>; -} -declare module 'autoprefixer/lib/hacks/grid-end.js' { - declare module.exports: $Exports<'autoprefixer/lib/hacks/grid-end'>; -} -declare module 'autoprefixer/lib/hacks/grid-row-align.js' { - declare module.exports: $Exports<'autoprefixer/lib/hacks/grid-row-align'>; -} -declare module 'autoprefixer/lib/hacks/grid-row-column.js' { - declare module.exports: $Exports<'autoprefixer/lib/hacks/grid-row-column'>; -} -declare module 'autoprefixer/lib/hacks/grid-rows-columns.js' { - declare module.exports: $Exports<'autoprefixer/lib/hacks/grid-rows-columns'>; -} -declare module 'autoprefixer/lib/hacks/grid-shorthand.js' { - declare module.exports: $Exports<'autoprefixer/lib/hacks/grid-shorthand'>; -} -declare module 'autoprefixer/lib/hacks/grid-start.js' { - declare module.exports: $Exports<'autoprefixer/lib/hacks/grid-start'>; -} -declare module 'autoprefixer/lib/hacks/grid-template-areas.js' { - declare module.exports: $Exports<'autoprefixer/lib/hacks/grid-template-areas'>; -} -declare module 'autoprefixer/lib/hacks/grid-template.js' { - declare module.exports: $Exports<'autoprefixer/lib/hacks/grid-template'>; -} -declare module 'autoprefixer/lib/hacks/image-rendering.js' { - declare module.exports: $Exports<'autoprefixer/lib/hacks/image-rendering'>; -} -declare module 'autoprefixer/lib/hacks/image-set.js' { - declare module.exports: $Exports<'autoprefixer/lib/hacks/image-set'>; -} -declare module 'autoprefixer/lib/hacks/inline-logical.js' { - declare module.exports: $Exports<'autoprefixer/lib/hacks/inline-logical'>; -} -declare module 'autoprefixer/lib/hacks/intrinsic.js' { - declare module.exports: $Exports<'autoprefixer/lib/hacks/intrinsic'>; -} -declare module 'autoprefixer/lib/hacks/justify-content.js' { - declare module.exports: $Exports<'autoprefixer/lib/hacks/justify-content'>; -} -declare module 'autoprefixer/lib/hacks/mask-border.js' { - declare module.exports: $Exports<'autoprefixer/lib/hacks/mask-border'>; -} -declare module 'autoprefixer/lib/hacks/order.js' { - declare module.exports: $Exports<'autoprefixer/lib/hacks/order'>; -} -declare module 'autoprefixer/lib/hacks/pixelated.js' { - declare module.exports: $Exports<'autoprefixer/lib/hacks/pixelated'>; -} -declare module 'autoprefixer/lib/hacks/placeholder.js' { - declare module.exports: $Exports<'autoprefixer/lib/hacks/placeholder'>; -} -declare module 'autoprefixer/lib/hacks/text-decoration.js' { - declare module.exports: $Exports<'autoprefixer/lib/hacks/text-decoration'>; -} -declare module 'autoprefixer/lib/hacks/text-emphasis-position.js' { - declare module.exports: $Exports<'autoprefixer/lib/hacks/text-emphasis-position'>; -} -declare module 'autoprefixer/lib/hacks/transform-decl.js' { - declare module.exports: $Exports<'autoprefixer/lib/hacks/transform-decl'>; -} -declare module 'autoprefixer/lib/hacks/writing-mode.js' { - declare module.exports: $Exports<'autoprefixer/lib/hacks/writing-mode'>; -} -declare module 'autoprefixer/lib/info.js' { - declare module.exports: $Exports<'autoprefixer/lib/info'>; -} -declare module 'autoprefixer/lib/old-selector.js' { - declare module.exports: $Exports<'autoprefixer/lib/old-selector'>; -} -declare module 'autoprefixer/lib/old-value.js' { - declare module.exports: $Exports<'autoprefixer/lib/old-value'>; -} -declare module 'autoprefixer/lib/prefixer.js' { - declare module.exports: $Exports<'autoprefixer/lib/prefixer'>; -} -declare module 'autoprefixer/lib/prefixes.js' { - declare module.exports: $Exports<'autoprefixer/lib/prefixes'>; -} -declare module 'autoprefixer/lib/processor.js' { - declare module.exports: $Exports<'autoprefixer/lib/processor'>; -} -declare module 'autoprefixer/lib/resolution.js' { - declare module.exports: $Exports<'autoprefixer/lib/resolution'>; -} -declare module 'autoprefixer/lib/selector.js' { - declare module.exports: $Exports<'autoprefixer/lib/selector'>; -} -declare module 'autoprefixer/lib/supports.js' { - declare module.exports: $Exports<'autoprefixer/lib/supports'>; -} -declare module 'autoprefixer/lib/transition.js' { - declare module.exports: $Exports<'autoprefixer/lib/transition'>; -} -declare module 'autoprefixer/lib/utils.js' { - declare module.exports: $Exports<'autoprefixer/lib/utils'>; -} -declare module 'autoprefixer/lib/value.js' { - declare module.exports: $Exports<'autoprefixer/lib/value'>; -} diff --git a/flow-typed/npm/babel-core_vx.x.x.js b/flow-typed/npm/babel-core_vx.x.x.js deleted file mode 100644 index fa13028..0000000 --- a/flow-typed/npm/babel-core_vx.x.x.js +++ /dev/null @@ -1,234 +0,0 @@ -// flow-typed signature: fc76ec014ae7eda02b1525e71831ec57 -// flow-typed version: <>/babel-core_v^6.26.3/flow_v0.77.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'babel-core' - * - * Fill this stub out by replacing all the `any` types. - * - * Once filled out, we encourage you to share your work with the - * community by sending a pull request to: - * https://github.com/flowtype/flow-typed - */ - -declare module 'babel-core' { - declare module.exports: any; -} - -/** - * We include stubs for each file inside this npm package in case you need to - * require those files directly. Feel free to delete any files that aren't - * needed. - */ -declare module 'babel-core/lib/api/browser' { - declare module.exports: any; -} - -declare module 'babel-core/lib/api/node' { - declare module.exports: any; -} - -declare module 'babel-core/lib/helpers/get-possible-plugin-names' { - declare module.exports: any; -} - -declare module 'babel-core/lib/helpers/get-possible-preset-names' { - declare module.exports: any; -} - -declare module 'babel-core/lib/helpers/merge' { - declare module.exports: any; -} - -declare module 'babel-core/lib/helpers/normalize-ast' { - declare module.exports: any; -} - -declare module 'babel-core/lib/helpers/resolve-from-possible-names' { - declare module.exports: any; -} - -declare module 'babel-core/lib/helpers/resolve-plugin' { - declare module.exports: any; -} - -declare module 'babel-core/lib/helpers/resolve-preset' { - declare module.exports: any; -} - -declare module 'babel-core/lib/helpers/resolve' { - declare module.exports: any; -} - -declare module 'babel-core/lib/store' { - declare module.exports: any; -} - -declare module 'babel-core/lib/tools/build-external-helpers' { - declare module.exports: any; -} - -declare module 'babel-core/lib/transformation/file/index' { - declare module.exports: any; -} - -declare module 'babel-core/lib/transformation/file/logger' { - declare module.exports: any; -} - -declare module 'babel-core/lib/transformation/file/merge-map' { - declare module.exports: any; -} - -declare module 'babel-core/lib/transformation/file/metadata' { - declare module.exports: any; -} - -declare module 'babel-core/lib/transformation/file/options/build-config-chain' { - declare module.exports: any; -} - -declare module 'babel-core/lib/transformation/file/options/config' { - declare module.exports: any; -} - -declare module 'babel-core/lib/transformation/file/options/index' { - declare module.exports: any; -} - -declare module 'babel-core/lib/transformation/file/options/option-manager' { - declare module.exports: any; -} - -declare module 'babel-core/lib/transformation/file/options/parsers' { - declare module.exports: any; -} - -declare module 'babel-core/lib/transformation/file/options/removed' { - declare module.exports: any; -} - -declare module 'babel-core/lib/transformation/internal-plugins/block-hoist' { - declare module.exports: any; -} - -declare module 'babel-core/lib/transformation/internal-plugins/shadow-functions' { - declare module.exports: any; -} - -declare module 'babel-core/lib/transformation/pipeline' { - declare module.exports: any; -} - -declare module 'babel-core/lib/transformation/plugin-pass' { - declare module.exports: any; -} - -declare module 'babel-core/lib/transformation/plugin' { - declare module.exports: any; -} - -declare module 'babel-core/lib/util' { - declare module.exports: any; -} - -declare module 'babel-core/register' { - declare module.exports: any; -} - -// Filename aliases -declare module 'babel-core/index' { - declare module.exports: $Exports<'babel-core'>; -} -declare module 'babel-core/index.js' { - declare module.exports: $Exports<'babel-core'>; -} -declare module 'babel-core/lib/api/browser.js' { - declare module.exports: $Exports<'babel-core/lib/api/browser'>; -} -declare module 'babel-core/lib/api/node.js' { - declare module.exports: $Exports<'babel-core/lib/api/node'>; -} -declare module 'babel-core/lib/helpers/get-possible-plugin-names.js' { - declare module.exports: $Exports<'babel-core/lib/helpers/get-possible-plugin-names'>; -} -declare module 'babel-core/lib/helpers/get-possible-preset-names.js' { - declare module.exports: $Exports<'babel-core/lib/helpers/get-possible-preset-names'>; -} -declare module 'babel-core/lib/helpers/merge.js' { - declare module.exports: $Exports<'babel-core/lib/helpers/merge'>; -} -declare module 'babel-core/lib/helpers/normalize-ast.js' { - declare module.exports: $Exports<'babel-core/lib/helpers/normalize-ast'>; -} -declare module 'babel-core/lib/helpers/resolve-from-possible-names.js' { - declare module.exports: $Exports<'babel-core/lib/helpers/resolve-from-possible-names'>; -} -declare module 'babel-core/lib/helpers/resolve-plugin.js' { - declare module.exports: $Exports<'babel-core/lib/helpers/resolve-plugin'>; -} -declare module 'babel-core/lib/helpers/resolve-preset.js' { - declare module.exports: $Exports<'babel-core/lib/helpers/resolve-preset'>; -} -declare module 'babel-core/lib/helpers/resolve.js' { - declare module.exports: $Exports<'babel-core/lib/helpers/resolve'>; -} -declare module 'babel-core/lib/store.js' { - declare module.exports: $Exports<'babel-core/lib/store'>; -} -declare module 'babel-core/lib/tools/build-external-helpers.js' { - declare module.exports: $Exports<'babel-core/lib/tools/build-external-helpers'>; -} -declare module 'babel-core/lib/transformation/file/index.js' { - declare module.exports: $Exports<'babel-core/lib/transformation/file/index'>; -} -declare module 'babel-core/lib/transformation/file/logger.js' { - declare module.exports: $Exports<'babel-core/lib/transformation/file/logger'>; -} -declare module 'babel-core/lib/transformation/file/merge-map.js' { - declare module.exports: $Exports<'babel-core/lib/transformation/file/merge-map'>; -} -declare module 'babel-core/lib/transformation/file/metadata.js' { - declare module.exports: $Exports<'babel-core/lib/transformation/file/metadata'>; -} -declare module 'babel-core/lib/transformation/file/options/build-config-chain.js' { - declare module.exports: $Exports<'babel-core/lib/transformation/file/options/build-config-chain'>; -} -declare module 'babel-core/lib/transformation/file/options/config.js' { - declare module.exports: $Exports<'babel-core/lib/transformation/file/options/config'>; -} -declare module 'babel-core/lib/transformation/file/options/index.js' { - declare module.exports: $Exports<'babel-core/lib/transformation/file/options/index'>; -} -declare module 'babel-core/lib/transformation/file/options/option-manager.js' { - declare module.exports: $Exports<'babel-core/lib/transformation/file/options/option-manager'>; -} -declare module 'babel-core/lib/transformation/file/options/parsers.js' { - declare module.exports: $Exports<'babel-core/lib/transformation/file/options/parsers'>; -} -declare module 'babel-core/lib/transformation/file/options/removed.js' { - declare module.exports: $Exports<'babel-core/lib/transformation/file/options/removed'>; -} -declare module 'babel-core/lib/transformation/internal-plugins/block-hoist.js' { - declare module.exports: $Exports<'babel-core/lib/transformation/internal-plugins/block-hoist'>; -} -declare module 'babel-core/lib/transformation/internal-plugins/shadow-functions.js' { - declare module.exports: $Exports<'babel-core/lib/transformation/internal-plugins/shadow-functions'>; -} -declare module 'babel-core/lib/transformation/pipeline.js' { - declare module.exports: $Exports<'babel-core/lib/transformation/pipeline'>; -} -declare module 'babel-core/lib/transformation/plugin-pass.js' { - declare module.exports: $Exports<'babel-core/lib/transformation/plugin-pass'>; -} -declare module 'babel-core/lib/transformation/plugin.js' { - declare module.exports: $Exports<'babel-core/lib/transformation/plugin'>; -} -declare module 'babel-core/lib/util.js' { - declare module.exports: $Exports<'babel-core/lib/util'>; -} -declare module 'babel-core/register.js' { - declare module.exports: $Exports<'babel-core/register'>; -} 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 987f2c4..0000000 --- a/flow-typed/npm/babel-eslint_vx.x.x.js +++ /dev/null @@ -1,80 +0,0 @@ -// flow-typed signature: d2386f3eaa26f4da69f3e7d1bf885cf6 -// flow-typed version: <>/babel-eslint_v^7.2.3/flow_v0.77.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/babylon-to-espree/attachComments' { - declare module.exports: any; -} - -declare module 'babel-eslint/babylon-to-espree/convertComments' { - declare module.exports: any; -} - -declare module 'babel-eslint/babylon-to-espree/convertTemplateType' { - declare module.exports: any; -} - -declare module 'babel-eslint/babylon-to-espree/index' { - declare module.exports: any; -} - -declare module 'babel-eslint/babylon-to-espree/toAST' { - declare module.exports: any; -} - -declare module 'babel-eslint/babylon-to-espree/toToken' { - declare module.exports: any; -} - -declare module 'babel-eslint/babylon-to-espree/toTokens' { - declare module.exports: any; -} - -// Filename aliases -declare module 'babel-eslint/babylon-to-espree/attachComments.js' { - declare module.exports: $Exports<'babel-eslint/babylon-to-espree/attachComments'>; -} -declare module 'babel-eslint/babylon-to-espree/convertComments.js' { - declare module.exports: $Exports<'babel-eslint/babylon-to-espree/convertComments'>; -} -declare module 'babel-eslint/babylon-to-espree/convertTemplateType.js' { - declare module.exports: $Exports<'babel-eslint/babylon-to-espree/convertTemplateType'>; -} -declare module 'babel-eslint/babylon-to-espree/index.js' { - declare module.exports: $Exports<'babel-eslint/babylon-to-espree/index'>; -} -declare module 'babel-eslint/babylon-to-espree/toAST.js' { - declare module.exports: $Exports<'babel-eslint/babylon-to-espree/toAST'>; -} -declare module 'babel-eslint/babylon-to-espree/toToken.js' { - declare module.exports: $Exports<'babel-eslint/babylon-to-espree/toToken'>; -} -declare module 'babel-eslint/babylon-to-espree/toTokens.js' { - declare module.exports: $Exports<'babel-eslint/babylon-to-espree/toTokens'>; -} -declare module 'babel-eslint/index' { - declare module.exports: $Exports<'babel-eslint'>; -} -declare module 'babel-eslint/index.js' { - declare module.exports: $Exports<'babel-eslint'>; -} diff --git a/flow-typed/npm/babel-loader_vx.x.x.js b/flow-typed/npm/babel-loader_vx.x.x.js deleted file mode 100644 index ed5fb5f..0000000 --- a/flow-typed/npm/babel-loader_vx.x.x.js +++ /dev/null @@ -1,67 +0,0 @@ -// flow-typed signature: 11490309585b1d7b7e2c8a0859b929e4 -// flow-typed version: <>/babel-loader_v^7.1.4/flow_v0.77.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'babel-loader' - * - * Fill this stub out by replacing all the `any` types. - * - * Once filled out, we encourage you to share your work with the - * community by sending a pull request to: - * https://github.com/flowtype/flow-typed - */ - -declare module 'babel-loader' { - declare module.exports: any; -} - -/** - * We include stubs for each file inside this npm package in case you need to - * require those files directly. Feel free to delete any files that aren't - * needed. - */ -declare module 'babel-loader/lib/fs-cache' { - declare module.exports: any; -} - -declare module 'babel-loader/lib/index' { - declare module.exports: any; -} - -declare module 'babel-loader/lib/resolve-rc' { - declare module.exports: any; -} - -declare module 'babel-loader/lib/utils/exists' { - declare module.exports: any; -} - -declare module 'babel-loader/lib/utils/read' { - declare module.exports: any; -} - -declare module 'babel-loader/lib/utils/relative' { - declare module.exports: any; -} - -// Filename aliases -declare module 'babel-loader/lib/fs-cache.js' { - declare module.exports: $Exports<'babel-loader/lib/fs-cache'>; -} -declare module 'babel-loader/lib/index.js' { - declare module.exports: $Exports<'babel-loader/lib/index'>; -} -declare module 'babel-loader/lib/resolve-rc.js' { - declare module.exports: $Exports<'babel-loader/lib/resolve-rc'>; -} -declare module 'babel-loader/lib/utils/exists.js' { - declare module.exports: $Exports<'babel-loader/lib/utils/exists'>; -} -declare module 'babel-loader/lib/utils/read.js' { - declare module.exports: $Exports<'babel-loader/lib/utils/read'>; -} -declare module 'babel-loader/lib/utils/relative.js' { - declare module.exports: $Exports<'babel-loader/lib/utils/relative'>; -} diff --git a/flow-typed/npm/babel-plugin-add-module-exports_vx.x.x.js b/flow-typed/npm/babel-plugin-add-module-exports_vx.x.x.js deleted file mode 100644 index e748703..0000000 --- a/flow-typed/npm/babel-plugin-add-module-exports_vx.x.x.js +++ /dev/null @@ -1,39 +0,0 @@ -// flow-typed signature: 2bd3ab66f4013a679c3228dfeaff5788 -// flow-typed version: <>/babel-plugin-add-module-exports_v^0.2.1/flow_v0.77.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'babel-plugin-add-module-exports' - * - * Fill this stub out by replacing all the `any` types. - * - * Once filled out, we encourage you to share your work with the - * community by sending a pull request to: - * https://github.com/flowtype/flow-typed - */ - -declare module 'babel-plugin-add-module-exports' { - declare module.exports: any; -} - -/** - * We include stubs for each file inside this npm package in case you need to - * require those files directly. Feel free to delete any files that aren't - * needed. - */ -declare module 'babel-plugin-add-module-exports/changelog' { - declare module.exports: any; -} - -declare module 'babel-plugin-add-module-exports/lib/index' { - declare module.exports: any; -} - -// Filename aliases -declare module 'babel-plugin-add-module-exports/changelog.js' { - declare module.exports: $Exports<'babel-plugin-add-module-exports/changelog'>; -} -declare module 'babel-plugin-add-module-exports/lib/index.js' { - declare module.exports: $Exports<'babel-plugin-add-module-exports/lib/index'>; -} diff --git a/flow-typed/npm/babel-plugin-lodash_vx.x.x.js b/flow-typed/npm/babel-plugin-lodash_vx.x.x.js deleted file mode 100644 index 3227f16..0000000 --- a/flow-typed/npm/babel-plugin-lodash_vx.x.x.js +++ /dev/null @@ -1,95 +0,0 @@ -// flow-typed signature: a7bed7abb6b12f4e24a3481ebcbda3b8 -// flow-typed version: <>/babel-plugin-lodash_v^3.3.2/flow_v0.77.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'babel-plugin-lodash' - * - * Fill this stub out by replacing all the `any` types. - * - * Once filled out, we encourage you to share your work with the - * community by sending a pull request to: - * https://github.com/flowtype/flow-typed - */ - -declare module 'babel-plugin-lodash' { - declare module.exports: any; -} - -/** - * We include stubs for each file inside this npm package in case you need to - * require those files directly. Feel free to delete any files that aren't - * needed. - */ -declare module 'babel-plugin-lodash/lib/config' { - declare module.exports: any; -} - -declare module 'babel-plugin-lodash/lib/importModule' { - declare module.exports: any; -} - -declare module 'babel-plugin-lodash/lib/index' { - declare module.exports: any; -} - -declare module 'babel-plugin-lodash/lib/Map' { - declare module.exports: any; -} - -declare module 'babel-plugin-lodash/lib/MapCache' { - declare module.exports: any; -} - -declare module 'babel-plugin-lodash/lib/mapping' { - declare module.exports: any; -} - -declare module 'babel-plugin-lodash/lib/ModuleCache' { - declare module.exports: any; -} - -declare module 'babel-plugin-lodash/lib/Package' { - declare module.exports: any; -} - -declare module 'babel-plugin-lodash/lib/Store' { - declare module.exports: any; -} - -declare module 'babel-plugin-lodash/lib/util' { - declare module.exports: any; -} - -// Filename aliases -declare module 'babel-plugin-lodash/lib/config.js' { - declare module.exports: $Exports<'babel-plugin-lodash/lib/config'>; -} -declare module 'babel-plugin-lodash/lib/importModule.js' { - declare module.exports: $Exports<'babel-plugin-lodash/lib/importModule'>; -} -declare module 'babel-plugin-lodash/lib/index.js' { - declare module.exports: $Exports<'babel-plugin-lodash/lib/index'>; -} -declare module 'babel-plugin-lodash/lib/Map.js' { - declare module.exports: $Exports<'babel-plugin-lodash/lib/Map'>; -} -declare module 'babel-plugin-lodash/lib/MapCache.js' { - declare module.exports: $Exports<'babel-plugin-lodash/lib/MapCache'>; -} -declare module 'babel-plugin-lodash/lib/mapping.js' { - declare module.exports: $Exports<'babel-plugin-lodash/lib/mapping'>; -} -declare module 'babel-plugin-lodash/lib/ModuleCache.js' { - declare module.exports: $Exports<'babel-plugin-lodash/lib/ModuleCache'>; -} -declare module 'babel-plugin-lodash/lib/Package.js' { - declare module.exports: $Exports<'babel-plugin-lodash/lib/Package'>; -} -declare module 'babel-plugin-lodash/lib/Store.js' { - declare module.exports: $Exports<'babel-plugin-lodash/lib/Store'>; -} -declare module 'babel-plugin-lodash/lib/util.js' { - declare module.exports: $Exports<'babel-plugin-lodash/lib/util'>; -} diff --git a/flow-typed/npm/babel-plugin-transform-class-properties_vx.x.x.js b/flow-typed/npm/babel-plugin-transform-class-properties_vx.x.x.js deleted file mode 100644 index b34db7e..0000000 --- a/flow-typed/npm/babel-plugin-transform-class-properties_vx.x.x.js +++ /dev/null @@ -1,32 +0,0 @@ -// flow-typed signature: 28cd3b3180c10578bf9c6feca4711265 -// flow-typed version: <>/babel-plugin-transform-class-properties_v^6.24.1/flow_v0.77.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'babel-plugin-transform-class-properties' - * - * Fill this stub out by replacing all the `any` types. - * - * Once filled out, we encourage you to share your work with the - * community by sending a pull request to: - * https://github.com/flowtype/flow-typed - */ - -declare module 'babel-plugin-transform-class-properties' { - declare module.exports: any; -} - -/** - * We include stubs for each file inside this npm package in case you need to - * require those files directly. Feel free to delete any files that aren't - * needed. - */ -declare module 'babel-plugin-transform-class-properties/lib/index' { - declare module.exports: any; -} - -// Filename aliases -declare module 'babel-plugin-transform-class-properties/lib/index.js' { - declare module.exports: $Exports<'babel-plugin-transform-class-properties/lib/index'>; -} diff --git a/flow-typed/npm/babel-plugin-transform-dev_vx.x.x.js b/flow-typed/npm/babel-plugin-transform-dev_vx.x.x.js deleted file mode 100644 index 87a1a33..0000000 --- a/flow-typed/npm/babel-plugin-transform-dev_vx.x.x.js +++ /dev/null @@ -1,32 +0,0 @@ -// flow-typed signature: 86e66776108af83de62205d508dd057b -// flow-typed version: <>/babel-plugin-transform-dev_v^2.0.1/flow_v0.77.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'babel-plugin-transform-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 'babel-plugin-transform-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. - */ -declare module 'babel-plugin-transform-dev/lib/index' { - declare module.exports: any; -} - -// Filename aliases -declare module 'babel-plugin-transform-dev/lib/index.js' { - declare module.exports: $Exports<'babel-plugin-transform-dev/lib/index'>; -} diff --git a/flow-typed/npm/babel-plugin-transform-proto-to-assign_vx.x.x.js b/flow-typed/npm/babel-plugin-transform-proto-to-assign_vx.x.x.js deleted file mode 100644 index be4b2a9..0000000 --- a/flow-typed/npm/babel-plugin-transform-proto-to-assign_vx.x.x.js +++ /dev/null @@ -1,32 +0,0 @@ -// flow-typed signature: 80d9db54ad205832f31799754475715b -// flow-typed version: <>/babel-plugin-transform-proto-to-assign_v^6.26.0/flow_v0.77.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'babel-plugin-transform-proto-to-assign' - * - * Fill this stub out by replacing all the `any` types. - * - * Once filled out, we encourage you to share your work with the - * community by sending a pull request to: - * https://github.com/flowtype/flow-typed - */ - -declare module 'babel-plugin-transform-proto-to-assign' { - declare module.exports: any; -} - -/** - * We include stubs for each file inside this npm package in case you need to - * require those files directly. Feel free to delete any files that aren't - * needed. - */ -declare module 'babel-plugin-transform-proto-to-assign/lib/index' { - declare module.exports: any; -} - -// Filename aliases -declare module 'babel-plugin-transform-proto-to-assign/lib/index.js' { - declare module.exports: $Exports<'babel-plugin-transform-proto-to-assign/lib/index'>; -} diff --git a/flow-typed/npm/babel-plugin-transform-runtime_vx.x.x.js b/flow-typed/npm/babel-plugin-transform-runtime_vx.x.x.js deleted file mode 100644 index 90fdd32..0000000 --- a/flow-typed/npm/babel-plugin-transform-runtime_vx.x.x.js +++ /dev/null @@ -1,39 +0,0 @@ -// flow-typed signature: 1422e3978dd83edda7c1b24527fcd267 -// flow-typed version: <>/babel-plugin-transform-runtime_v^6.23.0/flow_v0.77.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'babel-plugin-transform-runtime' - * - * Fill this stub out by replacing all the `any` types. - * - * Once filled out, we encourage you to share your work with the - * community by sending a pull request to: - * https://github.com/flowtype/flow-typed - */ - -declare module 'babel-plugin-transform-runtime' { - declare module.exports: any; -} - -/** - * We include stubs for each file inside this npm package in case you need to - * require those files directly. Feel free to delete any files that aren't - * needed. - */ -declare module 'babel-plugin-transform-runtime/lib/definitions' { - declare module.exports: any; -} - -declare module 'babel-plugin-transform-runtime/lib/index' { - declare module.exports: any; -} - -// Filename aliases -declare module 'babel-plugin-transform-runtime/lib/definitions.js' { - declare module.exports: $Exports<'babel-plugin-transform-runtime/lib/definitions'>; -} -declare module 'babel-plugin-transform-runtime/lib/index.js' { - declare module.exports: $Exports<'babel-plugin-transform-runtime/lib/index'>; -} diff --git a/flow-typed/npm/babel-polyfill_vx.x.x.js b/flow-typed/npm/babel-polyfill_vx.x.x.js deleted file mode 100644 index a62186d..0000000 --- a/flow-typed/npm/babel-polyfill_vx.x.x.js +++ /dev/null @@ -1,67 +0,0 @@ -// flow-typed signature: 2ddb1dedbd1018a817ca32a13541dd40 -// flow-typed version: <>/babel-polyfill_v^6.26.0/flow_v0.77.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'babel-polyfill' - * - * 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-polyfill' { - 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-polyfill/browser' { - declare module.exports: any; -} - -declare module 'babel-polyfill/dist/polyfill' { - declare module.exports: any; -} - -declare module 'babel-polyfill/dist/polyfill.min' { - declare module.exports: any; -} - -declare module 'babel-polyfill/lib/index' { - declare module.exports: any; -} - -declare module 'babel-polyfill/scripts/postpublish' { - declare module.exports: any; -} - -declare module 'babel-polyfill/scripts/prepublish' { - declare module.exports: any; -} - -// Filename aliases -declare module 'babel-polyfill/browser.js' { - declare module.exports: $Exports<'babel-polyfill/browser'>; -} -declare module 'babel-polyfill/dist/polyfill.js' { - declare module.exports: $Exports<'babel-polyfill/dist/polyfill'>; -} -declare module 'babel-polyfill/dist/polyfill.min.js' { - declare module.exports: $Exports<'babel-polyfill/dist/polyfill.min'>; -} -declare module 'babel-polyfill/lib/index.js' { - declare module.exports: $Exports<'babel-polyfill/lib/index'>; -} -declare module 'babel-polyfill/scripts/postpublish.js' { - declare module.exports: $Exports<'babel-polyfill/scripts/postpublish'>; -} -declare module 'babel-polyfill/scripts/prepublish.js' { - declare module.exports: $Exports<'babel-polyfill/scripts/prepublish'>; -} 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 97798f5..0000000 --- a/flow-typed/npm/babel-preset-env_vx.x.x.js +++ /dev/null @@ -1,88 +0,0 @@ -// flow-typed signature: ac3f3e6ff6e3297c566909da4a4fdc77 -// flow-typed version: <>/babel-preset-env_v^1.6.1/flow_v0.77.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/index' { - 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.js' { - declare module.exports: $Exports<'babel-preset-env/lib/index'>; -} -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 8399b1b..0000000 --- a/flow-typed/npm/babel-preset-react_vx.x.x.js +++ /dev/null @@ -1,32 +0,0 @@ -// flow-typed signature: 6e159b1fc5b3fa1346d5595c952ab4bd -// flow-typed version: <>/babel-preset-react_v^6.24.1/flow_v0.77.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/index' { - declare module.exports: any; -} - -// Filename aliases -declare module 'babel-preset-react/lib/index.js' { - declare module.exports: $Exports<'babel-preset-react/lib/index'>; -} diff --git a/flow-typed/npm/babel-preset-rsuite_vx.x.x.js b/flow-typed/npm/babel-preset-rsuite_vx.x.x.js deleted file mode 100644 index fa1431b..0000000 --- a/flow-typed/npm/babel-preset-rsuite_vx.x.x.js +++ /dev/null @@ -1,32 +0,0 @@ -// flow-typed signature: 45ce34e80a7c1e97fdc8935dc353f2d0 -// flow-typed version: <>/babel-preset-rsuite_v0.0.1/flow_v0.77.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'babel-preset-rsuite' - * - * 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-rsuite' { - 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-rsuite/lib/index' { - declare module.exports: any; -} - -// Filename aliases -declare module 'babel-preset-rsuite/lib/index.js' { - declare module.exports: $Exports<'babel-preset-rsuite/lib/index'>; -} diff --git a/flow-typed/npm/babel-preset-stage-1_vx.x.x.js b/flow-typed/npm/babel-preset-stage-1_vx.x.x.js deleted file mode 100644 index 00e6854..0000000 --- a/flow-typed/npm/babel-preset-stage-1_vx.x.x.js +++ /dev/null @@ -1,32 +0,0 @@ -// flow-typed signature: 46e8a9671275aff06a4802f0894c179a -// flow-typed version: <>/babel-preset-stage-1_v^6.24.1/flow_v0.77.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'babel-preset-stage-1' - * - * 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-stage-1' { - 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-stage-1/lib/index' { - declare module.exports: any; -} - -// Filename aliases -declare module 'babel-preset-stage-1/lib/index.js' { - declare module.exports: $Exports<'babel-preset-stage-1/lib/index'>; -} diff --git a/flow-typed/npm/brfs_vx.x.x.js b/flow-typed/npm/brfs_vx.x.x.js deleted file mode 100644 index 33309dd..0000000 --- a/flow-typed/npm/brfs_vx.x.x.js +++ /dev/null @@ -1,339 +0,0 @@ -// flow-typed signature: e7f872d89e625226645101f40d157184 -// flow-typed version: <>/brfs_v^1.4.3/flow_v0.77.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'brfs' - * - * 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 'brfs' { - 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 'brfs/bin/cmd' { - declare module.exports: any; -} - -declare module 'brfs/example/async' { - declare module.exports: any; -} - -declare module 'brfs/example/main' { - declare module.exports: any; -} - -declare module 'brfs/test/ag' { - declare module.exports: any; -} - -declare module 'brfs/test/async' { - declare module.exports: any; -} - -declare module 'brfs/test/buffer' { - declare module.exports: any; -} - -declare module 'brfs/test/bundle' { - declare module.exports: any; -} - -declare module 'brfs/test/cmd' { - declare module.exports: any; -} - -declare module 'brfs/test/dynamic_read_concat' { - declare module.exports: any; -} - -declare module 'brfs/test/dynamic_read_no_concat' { - declare module.exports: any; -} - -declare module 'brfs/test/encoding' { - declare module.exports: any; -} - -declare module 'brfs/test/files/ag' { - declare module.exports: any; -} - -declare module 'brfs/test/files/async_encoding' { - declare module.exports: any; -} - -declare module 'brfs/test/files/async_str_encoding' { - declare module.exports: any; -} - -declare module 'brfs/test/files/async' { - declare module.exports: any; -} - -declare module 'brfs/test/files/buffer' { - declare module.exports: any; -} - -declare module 'brfs/test/files/dynamic_read_concat' { - declare module.exports: any; -} - -declare module 'brfs/test/files/dynamic_read_no_concat' { - declare module.exports: any; -} - -declare module 'brfs/test/files/encoding' { - declare module.exports: any; -} - -declare module 'brfs/test/files/hoist' { - declare module.exports: any; -} - -declare module 'brfs/test/files/inline' { - declare module.exports: any; -} - -declare module 'brfs/test/files/main' { - declare module.exports: any; -} - -declare module 'brfs/test/files/multi_var' { - declare module.exports: any; -} - -declare module 'brfs/test/files/non_fs' { - declare module.exports: any; -} - -declare module 'brfs/test/files/path_join_other_name' { - declare module.exports: any; -} - -declare module 'brfs/test/files/path_join_single_var' { - declare module.exports: any; -} - -declare module 'brfs/test/files/path_join' { - declare module.exports: any; -} - -declare module 'brfs/test/files/readdir-sync' { - declare module.exports: any; -} - -declare module 'brfs/test/files/readdir' { - declare module.exports: any; -} - -declare module 'brfs/test/files/separators' { - declare module.exports: any; -} - -declare module 'brfs/test/files/with_comments' { - declare module.exports: any; -} - -declare module 'brfs/test/hoist' { - declare module.exports: any; -} - -declare module 'brfs/test/inline' { - declare module.exports: any; -} - -declare module 'brfs/test/multi_var' { - declare module.exports: any; -} - -declare module 'brfs/test/non_fs' { - declare module.exports: any; -} - -declare module 'brfs/test/path_join_other_name' { - declare module.exports: any; -} - -declare module 'brfs/test/path_join_single_var' { - declare module.exports: any; -} - -declare module 'brfs/test/path_join' { - declare module.exports: any; -} - -declare module 'brfs/test/readdir' { - declare module.exports: any; -} - -declare module 'brfs/test/require_resolve' { - declare module.exports: any; -} - -declare module 'brfs/test/require_resolve/main' { - declare module.exports: any; -} - -declare module 'brfs/test/separators' { - declare module.exports: any; -} - -declare module 'brfs/test/tr' { - declare module.exports: any; -} - -declare module 'brfs/test/with_comments' { - declare module.exports: any; -} - -// Filename aliases -declare module 'brfs/bin/cmd.js' { - declare module.exports: $Exports<'brfs/bin/cmd'>; -} -declare module 'brfs/example/async.js' { - declare module.exports: $Exports<'brfs/example/async'>; -} -declare module 'brfs/example/main.js' { - declare module.exports: $Exports<'brfs/example/main'>; -} -declare module 'brfs/index' { - declare module.exports: $Exports<'brfs'>; -} -declare module 'brfs/index.js' { - declare module.exports: $Exports<'brfs'>; -} -declare module 'brfs/test/ag.js' { - declare module.exports: $Exports<'brfs/test/ag'>; -} -declare module 'brfs/test/async.js' { - declare module.exports: $Exports<'brfs/test/async'>; -} -declare module 'brfs/test/buffer.js' { - declare module.exports: $Exports<'brfs/test/buffer'>; -} -declare module 'brfs/test/bundle.js' { - declare module.exports: $Exports<'brfs/test/bundle'>; -} -declare module 'brfs/test/cmd.js' { - declare module.exports: $Exports<'brfs/test/cmd'>; -} -declare module 'brfs/test/dynamic_read_concat.js' { - declare module.exports: $Exports<'brfs/test/dynamic_read_concat'>; -} -declare module 'brfs/test/dynamic_read_no_concat.js' { - declare module.exports: $Exports<'brfs/test/dynamic_read_no_concat'>; -} -declare module 'brfs/test/encoding.js' { - declare module.exports: $Exports<'brfs/test/encoding'>; -} -declare module 'brfs/test/files/ag.js' { - declare module.exports: $Exports<'brfs/test/files/ag'>; -} -declare module 'brfs/test/files/async_encoding.js' { - declare module.exports: $Exports<'brfs/test/files/async_encoding'>; -} -declare module 'brfs/test/files/async_str_encoding.js' { - declare module.exports: $Exports<'brfs/test/files/async_str_encoding'>; -} -declare module 'brfs/test/files/async.js' { - declare module.exports: $Exports<'brfs/test/files/async'>; -} -declare module 'brfs/test/files/buffer.js' { - declare module.exports: $Exports<'brfs/test/files/buffer'>; -} -declare module 'brfs/test/files/dynamic_read_concat.js' { - declare module.exports: $Exports<'brfs/test/files/dynamic_read_concat'>; -} -declare module 'brfs/test/files/dynamic_read_no_concat.js' { - declare module.exports: $Exports<'brfs/test/files/dynamic_read_no_concat'>; -} -declare module 'brfs/test/files/encoding.js' { - declare module.exports: $Exports<'brfs/test/files/encoding'>; -} -declare module 'brfs/test/files/hoist.js' { - declare module.exports: $Exports<'brfs/test/files/hoist'>; -} -declare module 'brfs/test/files/inline.js' { - declare module.exports: $Exports<'brfs/test/files/inline'>; -} -declare module 'brfs/test/files/main.js' { - declare module.exports: $Exports<'brfs/test/files/main'>; -} -declare module 'brfs/test/files/multi_var.js' { - declare module.exports: $Exports<'brfs/test/files/multi_var'>; -} -declare module 'brfs/test/files/non_fs.js' { - declare module.exports: $Exports<'brfs/test/files/non_fs'>; -} -declare module 'brfs/test/files/path_join_other_name.js' { - declare module.exports: $Exports<'brfs/test/files/path_join_other_name'>; -} -declare module 'brfs/test/files/path_join_single_var.js' { - declare module.exports: $Exports<'brfs/test/files/path_join_single_var'>; -} -declare module 'brfs/test/files/path_join.js' { - declare module.exports: $Exports<'brfs/test/files/path_join'>; -} -declare module 'brfs/test/files/readdir-sync.js' { - declare module.exports: $Exports<'brfs/test/files/readdir-sync'>; -} -declare module 'brfs/test/files/readdir.js' { - declare module.exports: $Exports<'brfs/test/files/readdir'>; -} -declare module 'brfs/test/files/separators.js' { - declare module.exports: $Exports<'brfs/test/files/separators'>; -} -declare module 'brfs/test/files/with_comments.js' { - declare module.exports: $Exports<'brfs/test/files/with_comments'>; -} -declare module 'brfs/test/hoist.js' { - declare module.exports: $Exports<'brfs/test/hoist'>; -} -declare module 'brfs/test/inline.js' { - declare module.exports: $Exports<'brfs/test/inline'>; -} -declare module 'brfs/test/multi_var.js' { - declare module.exports: $Exports<'brfs/test/multi_var'>; -} -declare module 'brfs/test/non_fs.js' { - declare module.exports: $Exports<'brfs/test/non_fs'>; -} -declare module 'brfs/test/path_join_other_name.js' { - declare module.exports: $Exports<'brfs/test/path_join_other_name'>; -} -declare module 'brfs/test/path_join_single_var.js' { - declare module.exports: $Exports<'brfs/test/path_join_single_var'>; -} -declare module 'brfs/test/path_join.js' { - declare module.exports: $Exports<'brfs/test/path_join'>; -} -declare module 'brfs/test/readdir.js' { - declare module.exports: $Exports<'brfs/test/readdir'>; -} -declare module 'brfs/test/require_resolve.js' { - declare module.exports: $Exports<'brfs/test/require_resolve'>; -} -declare module 'brfs/test/require_resolve/main.js' { - declare module.exports: $Exports<'brfs/test/require_resolve/main'>; -} -declare module 'brfs/test/separators.js' { - declare module.exports: $Exports<'brfs/test/separators'>; -} -declare module 'brfs/test/tr.js' { - declare module.exports: $Exports<'brfs/test/tr'>; -} -declare module 'brfs/test/with_comments.js' { - declare module.exports: $Exports<'brfs/test/with_comments'>; -} diff --git a/flow-typed/npm/chai_v3.5.x.js b/flow-typed/npm/chai_v3.5.x.js deleted file mode 100644 index b3d8036..0000000 --- a/flow-typed/npm/chai_v3.5.x.js +++ /dev/null @@ -1,262 +0,0 @@ -// flow-typed signature: 98fefd085adee7e50ffc1f2e8c96033f -// flow-typed version: b43d75317c/chai_v3.5.x/flow_>=v0.25.0 - -declare module "chai" { - declare type ExpectChain = { - and: ExpectChain, - at: ExpectChain, - be: ExpectChain, - been: ExpectChain, - have: ExpectChain, - has: ExpectChain, - is: ExpectChain, - of: ExpectChain, - same: ExpectChain, - that: ExpectChain, - to: ExpectChain, - which: ExpectChain, - with: ExpectChain, - - not: ExpectChain, - deep: ExpectChain, - any: ExpectChain, - all: ExpectChain, - - a: ExpectChain & ((type: string) => ExpectChain), - an: ExpectChain & ((type: string) => ExpectChain), - - include: ExpectChain & ((value: mixed) => ExpectChain), - includes: ExpectChain & ((value: mixed) => ExpectChain), - contain: ExpectChain & ((value: mixed) => ExpectChain), - contains: ExpectChain & ((value: mixed) => ExpectChain), - - eql: (value: T) => ExpectChain, - equal: (value: T) => ExpectChain, - equals: (value: T) => ExpectChain, - - above: (value: T & number) => ExpectChain, - greaterThan: (value: T & number) => ExpectChain, - gt: (value: T & number) => ExpectChain, - least: (value: T & number) => ExpectChain, - below: (value: T & number) => ExpectChain, - lessThan: (value: T & number) => ExpectChain, - lt: (value: T & number) => ExpectChain, - most: (value: T & number) => ExpectChain, - within: (start: T & number, finish: T & number) => ExpectChain, - - instanceof: (constructor: mixed) => ExpectChain, - property:

( - name: string, - value?: P - ) => ExpectChain

& ((name: string) => ExpectChain), - - length: (value: number) => ExpectChain | ExpectChain, - lengthOf: (value: number) => ExpectChain, - - match: (regex: RegExp) => ExpectChain, - string: (string: string) => ExpectChain, - - key: (key: string) => ExpectChain, - keys: ( - key: string | Array, - ...keys: Array - ) => ExpectChain, - - throw: ( - err?: Class | Error | RegExp | string, - errMsgMatcher?: RegExp | string, - msg?: string - ) => ExpectChain, - - respondTo: (method: string) => ExpectChain, - itself: ExpectChain, - - satisfy: (method: (value: T) => boolean) => ExpectChain, - - closeTo: (expected: T & number, delta: number) => ExpectChain, - - members: (set: mixed) => ExpectChain, - oneOf: (list: Array) => ExpectChain, - - change: (obj: mixed, key: string) => ExpectChain, - increase: (obj: mixed, key: string) => ExpectChain, - decrease: (obj: mixed, key: string) => ExpectChain, - - // dirty-chai - ok: () => ExpectChain, - true: () => ExpectChain, - false: () => ExpectChain, - null: () => ExpectChain, - undefined: () => ExpectChain, - exist: () => ExpectChain, - empty: () => ExpectChain, - - extensible: () => ExpectChain, - sealed: () => ExpectChain, - frozen: () => ExpectChain, - - // chai-immutable - size: (n: number) => ExpectChain, - - // sinon-chai - called: () => ExpectChain, - callCount: (n: number) => ExpectChain, - calledOnce: () => ExpectChain, - calledTwice: () => ExpectChain, - calledThrice: () => ExpectChain, - calledBefore: (spy: mixed) => ExpectChain, - calledAfter: (spy: mixed) => ExpectChain, - calledWith: (...args: Array) => ExpectChain, - calledWithMatch: (...args: Array) => ExpectChain, - calledWithExactly: (...args: Array) => ExpectChain, - - // chai-as-promised - eventually: ExpectChain, - resolvedWith: (value: mixed) => Promise & ExpectChain, - resolved: () => Promise & ExpectChain, - rejectedWith: (value: mixed) => Promise & ExpectChain, - rejected: () => Promise & ExpectChain, - notify: (callback: () => mixed) => ExpectChain, - - // chai-subset - containSubset: (obj: Object | Object[]) => ExpectChain, - - // chai-redux-mock-store - dispatchedActions: ( - actions: Array any)> - ) => ExpectChain, - dispatchedTypes: (actions: Array) => ExpectChain - }; - - declare function expect(actual: T): ExpectChain; - - declare function use(plugin: (chai: Object, utils: Object) => void): void; - - declare class assert { - static (expression: mixed, message?: string): void; - static fail( - actual: mixed, - expected: mixed, - message?: string, - operator?: string - ): void; - - static isOk(object: mixed, message?: string): void; - static isNotOk(object: mixed, message?: string): void; - - static equal(actual: mixed, expected: mixed, message?: string): void; - static notEqual(actual: mixed, expected: mixed, message?: string): void; - - static strictEqual(act: mixed, exp: mixed, msg?: string): void; - static notStrictEqual(act: mixed, exp: mixed, msg?: string): void; - - static deepEqual(act: mixed, exp: mixed, msg?: string): void; - static notDeepEqual(act: mixed, exp: mixed, msg?: string): void; - - static ok(val: mixed, msg?: string): void; - static isTrue(val: mixed, msg?: string): void; - static isNotTrue(val: mixed, msg?: string): void; - static isFalse(val: mixed, msg?: string): void; - static isNotFalse(val: mixed, msg?: string): void; - - static isNull(val: mixed, msg?: string): void; - static isNotNull(val: mixed, msg?: string): void; - - static isUndefined(val: mixed, msg?: string): void; - static isDefined(val: mixed, msg?: string): void; - - static isNaN(val: mixed, msg?: string): void; - static isNotNaN(val: mixed, msg?: string): void; - - static isAbove(val: number, abv: number, msg?: string): void; - static isBelow(val: number, blw: number, msg?: string): void; - - static isAtMost(val: number, atmst: number, msg?: string): void; - static isAtLeast(val: number, atlst: number, msg?: string): void; - - static isFunction(val: mixed, msg?: string): void; - static isNotFunction(val: mixed, msg?: string): void; - - static isObject(val: mixed, msg?: string): void; - static isNotObject(val: mixed, msg?: string): void; - - static isArray(val: mixed, msg?: string): void; - static isNotArray(val: mixed, msg?: string): void; - - static isString(val: mixed, msg?: string): void; - static isNotString(val: mixed, msg?: string): void; - - static isNumber(val: mixed, msg?: string): void; - static isNotNumber(val: mixed, msg?: string): void; - - static isBoolean(val: mixed, msg?: string): void; - static isNotBoolean(val: mixed, msg?: string): void; - - static typeOf(val: mixed, type: string, msg?: string): void; - static notTypeOf(val: mixed, type: string, msg?: string): void; - - static instanceOf(val: mixed, constructor: Function, msg?: string): void; - static notInstanceOf(val: mixed, constructor: Function, msg?: string): void; - - static include(exp: string, inc: mixed, msg?: string): void; - static include(exp: Array, inc: T, msg?: string): void; - - static notInclude(exp: string, inc: mixed, msg?: string): void; - static notInclude(exp: Array, inc: T, msg?: string): void; - - static match(exp: mixed, re: RegExp, msg?: string): void; - static notMatch(exp: mixed, re: RegExp, msg?: string): void; - - static property(obj: Object, prop: string, msg?: string): void; - static notProperty(obj: Object, prop: string, msg?: string): void; - static deepProperty(obj: Object, prop: string, msg?: string): void; - static notDeepProperty(obj: Object, prop: string, msg?: string): void; - - static propertyVal( - obj: Object, - prop: string, - val: mixed, - msg?: string - ): void; - static propertyNotVal( - obj: Object, - prop: string, - val: mixed, - msg?: string - ): void; - - static deepPropertyVal( - obj: Object, - prop: string, - val: mixed, - msg?: string - ): void; - static deepPropertyNotVal( - obj: Object, - prop: string, - val: mixed, - msg?: string - ): void; - - static lengthOf(exp: mixed, len: number, msg?: string): void; - - static throws( - func: () => any, - err?: Class | Error | RegExp | string, - errorMsgMatcher?: string | RegExp, - msg?: string - ): void; - static doesNotThrow( - func: () => any, - err?: Class | Error | RegExp | string, - errorMsgMatcher?: string | RegExp, - msg?: string - ): void; - } - - declare var config: { - includeStack: boolean, - showDiff: boolean, - truncateThreshold: number - }; -} diff --git a/flow-typed/npm/chartist_vx.x.x.js b/flow-typed/npm/chartist_vx.x.x.js deleted file mode 100644 index dff9b61..0000000 --- a/flow-typed/npm/chartist_vx.x.x.js +++ /dev/null @@ -1,39 +0,0 @@ -// flow-typed signature: 53d5bccabfb23f9a0e693009929cf2db -// flow-typed version: <>/chartist_v^0.11.0/flow_v0.77.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'chartist' - * - * 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 'chartist' { - 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 'chartist/dist/chartist' { - declare module.exports: any; -} - -declare module 'chartist/dist/chartist.min' { - declare module.exports: any; -} - -// Filename aliases -declare module 'chartist/dist/chartist.js' { - declare module.exports: $Exports<'chartist/dist/chartist'>; -} -declare module 'chartist/dist/chartist.min.js' { - declare module.exports: $Exports<'chartist/dist/chartist.min'>; -} diff --git a/flow-typed/npm/child-process-promise_vx.x.x.js b/flow-typed/npm/child-process-promise_vx.x.x.js deleted file mode 100644 index 0155b36..0000000 --- a/flow-typed/npm/child-process-promise_vx.x.x.js +++ /dev/null @@ -1,73 +0,0 @@ -// flow-typed signature: fa4c216bac13f43c883622eb1f972783 -// flow-typed version: <>/child-process-promise_v^2.0.2/flow_v0.77.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'child-process-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 'child-process-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 'child-process-promise/lib-es5/ChildProcessError' { - declare module.exports: any; -} - -declare module 'child-process-promise/lib-es5/ChildProcessPromise' { - declare module.exports: any; -} - -declare module 'child-process-promise/lib-es5/index' { - declare module.exports: any; -} - -declare module 'child-process-promise/lib/ChildProcessError' { - declare module.exports: any; -} - -declare module 'child-process-promise/lib/ChildProcessPromise' { - declare module.exports: any; -} - -declare module 'child-process-promise/lib/index' { - declare module.exports: any; -} - -// Filename aliases -declare module 'child-process-promise/index' { - declare module.exports: $Exports<'child-process-promise'>; -} -declare module 'child-process-promise/index.js' { - declare module.exports: $Exports<'child-process-promise'>; -} -declare module 'child-process-promise/lib-es5/ChildProcessError.js' { - declare module.exports: $Exports<'child-process-promise/lib-es5/ChildProcessError'>; -} -declare module 'child-process-promise/lib-es5/ChildProcessPromise.js' { - declare module.exports: $Exports<'child-process-promise/lib-es5/ChildProcessPromise'>; -} -declare module 'child-process-promise/lib-es5/index.js' { - declare module.exports: $Exports<'child-process-promise/lib-es5/index'>; -} -declare module 'child-process-promise/lib/ChildProcessError.js' { - declare module.exports: $Exports<'child-process-promise/lib/ChildProcessError'>; -} -declare module 'child-process-promise/lib/ChildProcessPromise.js' { - declare module.exports: $Exports<'child-process-promise/lib/ChildProcessPromise'>; -} -declare module 'child-process-promise/lib/index.js' { - declare module.exports: $Exports<'child-process-promise/lib/index'>; -} 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 2307243..0000000 --- a/flow-typed/npm/classnames_v2.x.x.js +++ /dev/null @@ -1,23 +0,0 @@ -// flow-typed signature: cf86673cc32d185bdab1d2ea90578d37 -// flow-typed version: 614bf49aa8/classnames_v2.x.x/flow_>=v0.25.x - -type $npm$classnames$Classes = - | string - | { [className: string]: * } - | false - | void - | null; - -declare module "classnames" { - declare module.exports: ( - ...classes: Array<$npm$classnames$Classes | $npm$classnames$Classes[]> - ) => string; -} - -declare module "classnames/bind" { - declare module.exports: $Exports<"classnames">; -} - -declare module "classnames/dedupe" { - declare module.exports: $Exports<"classnames">; -} diff --git a/flow-typed/npm/compression-webpack-plugin_vx.x.x.js b/flow-typed/npm/compression-webpack-plugin_vx.x.x.js deleted file mode 100644 index 2ebe910..0000000 --- a/flow-typed/npm/compression-webpack-plugin_vx.x.x.js +++ /dev/null @@ -1,39 +0,0 @@ -// flow-typed signature: db26559668ae3c3463c5f48ce550a0bd -// flow-typed version: <>/compression-webpack-plugin_v^1.0.1/flow_v0.77.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'compression-webpack-plugin' - * - * Fill this stub out by replacing all the `any` types. - * - * Once filled out, we encourage you to share your work with the - * community by sending a pull request to: - * https://github.com/flowtype/flow-typed - */ - -declare module 'compression-webpack-plugin' { - declare module.exports: any; -} - -/** - * We include stubs for each file inside this npm package in case you need to - * require those files directly. Feel free to delete any files that aren't - * needed. - */ -declare module 'compression-webpack-plugin/dist/cjs' { - declare module.exports: any; -} - -declare module 'compression-webpack-plugin/dist/index' { - declare module.exports: any; -} - -// Filename aliases -declare module 'compression-webpack-plugin/dist/cjs.js' { - declare module.exports: $Exports<'compression-webpack-plugin/dist/cjs'>; -} -declare module 'compression-webpack-plugin/dist/index.js' { - declare module.exports: $Exports<'compression-webpack-plugin/dist/index'>; -} diff --git a/flow-typed/npm/css-loader_vx.x.x.js b/flow-typed/npm/css-loader_vx.x.x.js deleted file mode 100644 index 95f4402..0000000 --- a/flow-typed/npm/css-loader_vx.x.x.js +++ /dev/null @@ -1,101 +0,0 @@ -// flow-typed signature: b530668714937b65c4df12a16ac2322e -// flow-typed version: <>/css-loader_v^0.28.11/flow_v0.77.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'css-loader' - * - * Fill this stub out by replacing all the `any` types. - * - * Once filled out, we encourage you to share your work with the - * community by sending a pull request to: - * https://github.com/flowtype/flow-typed - */ - -declare module 'css-loader' { - declare module.exports: any; -} - -/** - * We include stubs for each file inside this npm package in case you need to - * require those files directly. Feel free to delete any files that aren't - * needed. - */ -declare module 'css-loader/lib/compile-exports' { - declare module.exports: any; -} - -declare module 'css-loader/lib/createResolver' { - declare module.exports: any; -} - -declare module 'css-loader/lib/css-base' { - declare module.exports: any; -} - -declare module 'css-loader/lib/getImportPrefix' { - declare module.exports: any; -} - -declare module 'css-loader/lib/getLocalIdent' { - declare module.exports: any; -} - -declare module 'css-loader/lib/loader' { - declare module.exports: any; -} - -declare module 'css-loader/lib/localsLoader' { - declare module.exports: any; -} - -declare module 'css-loader/lib/processCss' { - declare module.exports: any; -} - -declare module 'css-loader/lib/url/escape' { - declare module.exports: any; -} - -declare module 'css-loader/locals' { - declare module.exports: any; -} - -// Filename aliases -declare module 'css-loader/index' { - declare module.exports: $Exports<'css-loader'>; -} -declare module 'css-loader/index.js' { - declare module.exports: $Exports<'css-loader'>; -} -declare module 'css-loader/lib/compile-exports.js' { - declare module.exports: $Exports<'css-loader/lib/compile-exports'>; -} -declare module 'css-loader/lib/createResolver.js' { - declare module.exports: $Exports<'css-loader/lib/createResolver'>; -} -declare module 'css-loader/lib/css-base.js' { - declare module.exports: $Exports<'css-loader/lib/css-base'>; -} -declare module 'css-loader/lib/getImportPrefix.js' { - declare module.exports: $Exports<'css-loader/lib/getImportPrefix'>; -} -declare module 'css-loader/lib/getLocalIdent.js' { - declare module.exports: $Exports<'css-loader/lib/getLocalIdent'>; -} -declare module 'css-loader/lib/loader.js' { - declare module.exports: $Exports<'css-loader/lib/loader'>; -} -declare module 'css-loader/lib/localsLoader.js' { - declare module.exports: $Exports<'css-loader/lib/localsLoader'>; -} -declare module 'css-loader/lib/processCss.js' { - declare module.exports: $Exports<'css-loader/lib/processCss'>; -} -declare module 'css-loader/lib/url/escape.js' { - declare module.exports: $Exports<'css-loader/lib/url/escape'>; -} -declare module 'css-loader/locals.js' { - declare module.exports: $Exports<'css-loader/locals'>; -} diff --git a/flow-typed/npm/cssnano_vx.x.x.js b/flow-typed/npm/cssnano_vx.x.x.js deleted file mode 100644 index 4d4b404..0000000 --- a/flow-typed/npm/cssnano_vx.x.x.js +++ /dev/null @@ -1,130 +0,0 @@ -// flow-typed signature: c3c2e2a959cfaca13aff97970b9cfa07 -// flow-typed version: <>/cssnano_v^3.10.0/flow_v0.77.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'cssnano' - * - * 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 'cssnano' { - 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 'cssnano/dist/index' { - declare module.exports: any; -} - -declare module 'cssnano/dist/lib/core' { - declare module.exports: any; -} - -declare module 'cssnano/dist/lib/evenValues' { - declare module.exports: any; -} - -declare module 'cssnano/dist/lib/filterOptimiser' { - declare module.exports: any; -} - -declare module 'cssnano/dist/lib/functionOptimiser' { - declare module.exports: any; -} - -declare module 'cssnano/dist/lib/getArguments' { - declare module.exports: any; -} - -declare module 'cssnano/dist/lib/getMatch' { - declare module.exports: any; -} - -declare module 'cssnano/dist/lib/normalizeString' { - declare module.exports: any; -} - -declare module 'cssnano/dist/lib/normalizeUnicode' { - declare module.exports: any; -} - -declare module 'cssnano/dist/lib/reduceBackgroundRepeat' { - declare module.exports: any; -} - -declare module 'cssnano/dist/lib/reduceDisplayValues' { - declare module.exports: any; -} - -declare module 'cssnano/dist/lib/reducePositions' { - declare module.exports: any; -} - -declare module 'cssnano/dist/lib/reduceTimingFunctions' { - declare module.exports: any; -} - -declare module 'cssnano/dist/lib/styleCache' { - declare module.exports: any; -} - -declare module 'cssnano/quickstart' { - declare module.exports: any; -} - -// Filename aliases -declare module 'cssnano/dist/index.js' { - declare module.exports: $Exports<'cssnano/dist/index'>; -} -declare module 'cssnano/dist/lib/core.js' { - declare module.exports: $Exports<'cssnano/dist/lib/core'>; -} -declare module 'cssnano/dist/lib/evenValues.js' { - declare module.exports: $Exports<'cssnano/dist/lib/evenValues'>; -} -declare module 'cssnano/dist/lib/filterOptimiser.js' { - declare module.exports: $Exports<'cssnano/dist/lib/filterOptimiser'>; -} -declare module 'cssnano/dist/lib/functionOptimiser.js' { - declare module.exports: $Exports<'cssnano/dist/lib/functionOptimiser'>; -} -declare module 'cssnano/dist/lib/getArguments.js' { - declare module.exports: $Exports<'cssnano/dist/lib/getArguments'>; -} -declare module 'cssnano/dist/lib/getMatch.js' { - declare module.exports: $Exports<'cssnano/dist/lib/getMatch'>; -} -declare module 'cssnano/dist/lib/normalizeString.js' { - declare module.exports: $Exports<'cssnano/dist/lib/normalizeString'>; -} -declare module 'cssnano/dist/lib/normalizeUnicode.js' { - declare module.exports: $Exports<'cssnano/dist/lib/normalizeUnicode'>; -} -declare module 'cssnano/dist/lib/reduceBackgroundRepeat.js' { - declare module.exports: $Exports<'cssnano/dist/lib/reduceBackgroundRepeat'>; -} -declare module 'cssnano/dist/lib/reduceDisplayValues.js' { - declare module.exports: $Exports<'cssnano/dist/lib/reduceDisplayValues'>; -} -declare module 'cssnano/dist/lib/reducePositions.js' { - declare module.exports: $Exports<'cssnano/dist/lib/reducePositions'>; -} -declare module 'cssnano/dist/lib/reduceTimingFunctions.js' { - declare module.exports: $Exports<'cssnano/dist/lib/reduceTimingFunctions'>; -} -declare module 'cssnano/dist/lib/styleCache.js' { - declare module.exports: $Exports<'cssnano/dist/lib/styleCache'>; -} -declare module 'cssnano/quickstart.js' { - declare module.exports: $Exports<'cssnano/quickstart'>; -} diff --git a/flow-typed/npm/eslint-plugin-babel_vx.x.x.js b/flow-typed/npm/eslint-plugin-babel_vx.x.x.js deleted file mode 100644 index f23a614..0000000 --- a/flow-typed/npm/eslint-plugin-babel_vx.x.x.js +++ /dev/null @@ -1,157 +0,0 @@ -// flow-typed signature: b328bc9a8d187c890c8d14c5ff67f180 -// flow-typed version: <>/eslint-plugin-babel_v^3.2.0/flow_v0.77.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'eslint-plugin-babel' - * - * 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-babel' { - 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-babel/rules/array-bracket-spacing' { - declare module.exports: any; -} - -declare module 'eslint-plugin-babel/rules/arrow-parens' { - declare module.exports: any; -} - -declare module 'eslint-plugin-babel/rules/flow-object-type' { - declare module.exports: any; -} - -declare module 'eslint-plugin-babel/rules/func-params-comma-dangle' { - declare module.exports: any; -} - -declare module 'eslint-plugin-babel/rules/generator-star-spacing' { - declare module.exports: any; -} - -declare module 'eslint-plugin-babel/rules/new-cap' { - declare module.exports: any; -} - -declare module 'eslint-plugin-babel/rules/no-await-in-loop' { - declare module.exports: any; -} - -declare module 'eslint-plugin-babel/rules/object-curly-spacing' { - declare module.exports: any; -} - -declare module 'eslint-plugin-babel/rules/object-shorthand' { - declare module.exports: any; -} - -declare module 'eslint-plugin-babel/tests/array-bracket-spacing' { - declare module.exports: any; -} - -declare module 'eslint-plugin-babel/tests/arrow-parens' { - declare module.exports: any; -} - -declare module 'eslint-plugin-babel/tests/flow-object-type' { - declare module.exports: any; -} - -declare module 'eslint-plugin-babel/tests/func-params-comma-dangle' { - declare module.exports: any; -} - -declare module 'eslint-plugin-babel/tests/generator-star-spacing' { - declare module.exports: any; -} - -declare module 'eslint-plugin-babel/tests/new-cap' { - declare module.exports: any; -} - -declare module 'eslint-plugin-babel/tests/no-await-in-loop' { - declare module.exports: any; -} - -declare module 'eslint-plugin-babel/tests/object-curly-spacing' { - declare module.exports: any; -} - -declare module 'eslint-plugin-babel/tests/object-shorthand' { - declare module.exports: any; -} - -// Filename aliases -declare module 'eslint-plugin-babel/index' { - declare module.exports: $Exports<'eslint-plugin-babel'>; -} -declare module 'eslint-plugin-babel/index.js' { - declare module.exports: $Exports<'eslint-plugin-babel'>; -} -declare module 'eslint-plugin-babel/rules/array-bracket-spacing.js' { - declare module.exports: $Exports<'eslint-plugin-babel/rules/array-bracket-spacing'>; -} -declare module 'eslint-plugin-babel/rules/arrow-parens.js' { - declare module.exports: $Exports<'eslint-plugin-babel/rules/arrow-parens'>; -} -declare module 'eslint-plugin-babel/rules/flow-object-type.js' { - declare module.exports: $Exports<'eslint-plugin-babel/rules/flow-object-type'>; -} -declare module 'eslint-plugin-babel/rules/func-params-comma-dangle.js' { - declare module.exports: $Exports<'eslint-plugin-babel/rules/func-params-comma-dangle'>; -} -declare module 'eslint-plugin-babel/rules/generator-star-spacing.js' { - declare module.exports: $Exports<'eslint-plugin-babel/rules/generator-star-spacing'>; -} -declare module 'eslint-plugin-babel/rules/new-cap.js' { - declare module.exports: $Exports<'eslint-plugin-babel/rules/new-cap'>; -} -declare module 'eslint-plugin-babel/rules/no-await-in-loop.js' { - declare module.exports: $Exports<'eslint-plugin-babel/rules/no-await-in-loop'>; -} -declare module 'eslint-plugin-babel/rules/object-curly-spacing.js' { - declare module.exports: $Exports<'eslint-plugin-babel/rules/object-curly-spacing'>; -} -declare module 'eslint-plugin-babel/rules/object-shorthand.js' { - declare module.exports: $Exports<'eslint-plugin-babel/rules/object-shorthand'>; -} -declare module 'eslint-plugin-babel/tests/array-bracket-spacing.js' { - declare module.exports: $Exports<'eslint-plugin-babel/tests/array-bracket-spacing'>; -} -declare module 'eslint-plugin-babel/tests/arrow-parens.js' { - declare module.exports: $Exports<'eslint-plugin-babel/tests/arrow-parens'>; -} -declare module 'eslint-plugin-babel/tests/flow-object-type.js' { - declare module.exports: $Exports<'eslint-plugin-babel/tests/flow-object-type'>; -} -declare module 'eslint-plugin-babel/tests/func-params-comma-dangle.js' { - declare module.exports: $Exports<'eslint-plugin-babel/tests/func-params-comma-dangle'>; -} -declare module 'eslint-plugin-babel/tests/generator-star-spacing.js' { - declare module.exports: $Exports<'eslint-plugin-babel/tests/generator-star-spacing'>; -} -declare module 'eslint-plugin-babel/tests/new-cap.js' { - declare module.exports: $Exports<'eslint-plugin-babel/tests/new-cap'>; -} -declare module 'eslint-plugin-babel/tests/no-await-in-loop.js' { - declare module.exports: $Exports<'eslint-plugin-babel/tests/no-await-in-loop'>; -} -declare module 'eslint-plugin-babel/tests/object-curly-spacing.js' { - declare module.exports: $Exports<'eslint-plugin-babel/tests/object-curly-spacing'>; -} -declare module 'eslint-plugin-babel/tests/object-shorthand.js' { - declare module.exports: $Exports<'eslint-plugin-babel/tests/object-shorthand'>; -} 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 9393944..0000000 --- a/flow-typed/npm/eslint-plugin-react_vx.x.x.js +++ /dev/null @@ -1,388 +0,0 @@ -// flow-typed signature: be15dbb40e565893917d4529a4c069ec -// flow-typed version: <>/eslint-plugin-react_v^5.0.1/flow_v0.77.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/display-name' { - declare module.exports: any; -} - -declare module 'eslint-plugin-react/lib/rules/forbid-prop-types' { - declare module.exports: any; -} - -declare module 'eslint-plugin-react/lib/rules/jsx-boolean-value' { - declare module.exports: any; -} - -declare module 'eslint-plugin-react/lib/rules/jsx-closing-bracket-location' { - 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-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-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-duplicate-props' { - declare module.exports: any; -} - -declare module 'eslint-plugin-react/lib/rules/jsx-no-literals' { - declare module.exports: any; -} - -declare module 'eslint-plugin-react/lib/rules/jsx-no-target-blank' { - declare module.exports: any; -} - -declare module 'eslint-plugin-react/lib/rules/jsx-no-undef' { - declare module.exports: any; -} - -declare module 'eslint-plugin-react/lib/rules/jsx-pascal-case' { - declare module.exports: any; -} - -declare module 'eslint-plugin-react/lib/rules/jsx-sort-prop-types' { - 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-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/no-comment-textnodes' { - 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-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-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-unknown-property' { - 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-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-extension' { - 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/wrap-multilines' { - declare module.exports: any; -} - -declare module 'eslint-plugin-react/lib/util/Components' { - declare module.exports: any; -} - -declare module 'eslint-plugin-react/lib/util/pragma' { - 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/display-name.js' { - declare module.exports: $Exports<'eslint-plugin-react/lib/rules/display-name'>; -} -declare module 'eslint-plugin-react/lib/rules/forbid-prop-types.js' { - declare module.exports: $Exports<'eslint-plugin-react/lib/rules/forbid-prop-types'>; -} -declare module 'eslint-plugin-react/lib/rules/jsx-boolean-value.js' { - declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-boolean-value'>; -} -declare module 'eslint-plugin-react/lib/rules/jsx-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-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-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-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-duplicate-props.js' { - declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-no-duplicate-props'>; -} -declare module 'eslint-plugin-react/lib/rules/jsx-no-literals.js' { - declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-no-literals'>; -} -declare module 'eslint-plugin-react/lib/rules/jsx-no-target-blank.js' { - declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-no-target-blank'>; -} -declare module 'eslint-plugin-react/lib/rules/jsx-no-undef.js' { - declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-no-undef'>; -} -declare module 'eslint-plugin-react/lib/rules/jsx-pascal-case.js' { - declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-pascal-case'>; -} -declare module 'eslint-plugin-react/lib/rules/jsx-sort-prop-types.js' { - declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-sort-prop-types'>; -} -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-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/no-comment-textnodes.js' { - declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-comment-textnodes'>; -} -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-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-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-unknown-property.js' { - declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-unknown-property'>; -} -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-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-extension.js' { - declare module.exports: $Exports<'eslint-plugin-react/lib/rules/require-extension'>; -} -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/wrap-multilines.js' { - declare module.exports: $Exports<'eslint-plugin-react/lib/rules/wrap-multilines'>; -} -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/pragma.js' { - declare module.exports: $Exports<'eslint-plugin-react/lib/util/pragma'>; -} -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_vx.x.x.js b/flow-typed/npm/eslint_vx.x.x.js deleted file mode 100644 index ca2115d..0000000 --- a/flow-typed/npm/eslint_vx.x.x.js +++ /dev/null @@ -1,1978 +0,0 @@ -// flow-typed signature: 5cd973f03cc9b4c4dd1577d985632ea6 -// flow-typed version: <>/eslint_v^2.8.0/flow_v0.77.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/cli-options' { - declare module.exports: any; -} - -declare module 'eslint/conf/environments' { - declare module.exports: any; -} - -declare module 'eslint/conf/eslint-all' { - declare module.exports: any; -} - -declare module 'eslint/lib/api' { - declare module.exports: any; -} - -declare module 'eslint/lib/ast-utils' { - declare module.exports: any; -} - -declare module 'eslint/lib/cli-engine' { - declare module.exports: any; -} - -declare module 'eslint/lib/cli' { - declare module.exports: any; -} - -declare module 'eslint/lib/code-path-analysis/code-path-analyzer' { - declare module.exports: any; -} - -declare module 'eslint/lib/code-path-analysis/code-path-segment' { - declare module.exports: any; -} - -declare module 'eslint/lib/code-path-analysis/code-path-state' { - declare module.exports: any; -} - -declare module 'eslint/lib/code-path-analysis/code-path' { - declare module.exports: any; -} - -declare module 'eslint/lib/code-path-analysis/debug-helpers' { - declare module.exports: any; -} - -declare module 'eslint/lib/code-path-analysis/fork-context' { - declare module.exports: any; -} - -declare module 'eslint/lib/code-path-analysis/id-generator' { - declare module.exports: any; -} - -declare module 'eslint/lib/config' { - declare module.exports: any; -} - -declare module 'eslint/lib/config/autoconfig' { - declare module.exports: any; -} - -declare module 'eslint/lib/config/config-file' { - declare module.exports: any; -} - -declare module 'eslint/lib/config/config-initializer' { - declare module.exports: any; -} - -declare module 'eslint/lib/config/config-ops' { - declare module.exports: any; -} - -declare module 'eslint/lib/config/config-rule' { - declare module.exports: any; -} - -declare module 'eslint/lib/config/config-validator' { - declare module.exports: any; -} - -declare module 'eslint/lib/config/environments' { - declare module.exports: any; -} - -declare module 'eslint/lib/config/plugins' { - declare module.exports: any; -} - -declare module 'eslint/lib/eslint' { - declare module.exports: any; -} - -declare module 'eslint/lib/file-finder' { - declare module.exports: any; -} - -declare module 'eslint/lib/formatters/checkstyle' { - declare module.exports: any; -} - -declare module 'eslint/lib/formatters/compact' { - declare module.exports: any; -} - -declare module 'eslint/lib/formatters/html' { - declare module.exports: any; -} - -declare module 'eslint/lib/formatters/jslint-xml' { - declare module.exports: any; -} - -declare module 'eslint/lib/formatters/json' { - declare module.exports: any; -} - -declare module 'eslint/lib/formatters/junit' { - declare module.exports: any; -} - -declare module 'eslint/lib/formatters/stylish' { - declare module.exports: any; -} - -declare module 'eslint/lib/formatters/table' { - declare module.exports: any; -} - -declare module 'eslint/lib/formatters/tap' { - declare module.exports: any; -} - -declare module 'eslint/lib/formatters/unix' { - declare module.exports: any; -} - -declare module 'eslint/lib/formatters/visualstudio' { - declare module.exports: any; -} - -declare module 'eslint/lib/ignored-paths' { - declare module.exports: any; -} - -declare module 'eslint/lib/load-rules' { - declare module.exports: any; -} - -declare module 'eslint/lib/logging' { - declare module.exports: any; -} - -declare module 'eslint/lib/options' { - declare module.exports: any; -} - -declare module 'eslint/lib/rule-context' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/accessor-pairs' { - 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/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/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' { - 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/func-names' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/func-style' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/generator-star-spacing' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/global-require' { - 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-length' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/id-match' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/indent' { - 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/linebreak-style' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/lines-around-comment' { - 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' { - 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/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-bitwise' { - 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-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-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-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-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-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-magic-numbers' { - 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-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-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-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-syntax' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-return-assign' { - 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-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-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' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/no-unsafe-finally' { - 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-call' { - 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-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/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/prefer-arrow-callback' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/prefer-const' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/prefer-reflect' { - 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-jsdoc' { - 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' { - declare module.exports: any; -} - -declare module 'eslint/lib/rules/sort-imports' { - 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/template-curly-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/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/testers/event-generator-tester' { - declare module.exports: any; -} - -declare module 'eslint/lib/testers/rule-tester' { - declare module.exports: any; -} - -declare module 'eslint/lib/timing' { - declare module.exports: any; -} - -declare module 'eslint/lib/token-store' { - declare module.exports: any; -} - -declare module 'eslint/lib/util/comment-event-generator' { - declare module.exports: any; -} - -declare module 'eslint/lib/util/glob-util' { - declare module.exports: any; -} - -declare module 'eslint/lib/util/hash' { - declare module.exports: any; -} - -declare module 'eslint/lib/util/keywords' { - declare module.exports: any; -} - -declare module 'eslint/lib/util/module-resolver' { - declare module.exports: any; -} - -declare module 'eslint/lib/util/node-event-generator' { - declare module.exports: any; -} - -declare module 'eslint/lib/util/npm-util' { - declare module.exports: any; -} - -declare module 'eslint/lib/util/path-util' { - declare module.exports: any; -} - -declare module 'eslint/lib/util/rule-fixer' { - declare module.exports: any; -} - -declare module 'eslint/lib/util/source-code-fixer' { - declare module.exports: any; -} - -declare module 'eslint/lib/util/source-code-util' { - declare module.exports: any; -} - -declare module 'eslint/lib/util/source-code' { - declare module.exports: any; -} - -declare module 'eslint/lib/util/traverser' { - declare module.exports: any; -} - -// Filename aliases -declare module 'eslint/bin/eslint.js' { - declare module.exports: $Exports<'eslint/bin/eslint'>; -} -declare module 'eslint/conf/cli-options.js' { - declare module.exports: $Exports<'eslint/conf/cli-options'>; -} -declare module 'eslint/conf/environments.js' { - declare module.exports: $Exports<'eslint/conf/environments'>; -} -declare module 'eslint/conf/eslint-all.js' { - declare module.exports: $Exports<'eslint/conf/eslint-all'>; -} -declare module 'eslint/lib/api.js' { - declare module.exports: $Exports<'eslint/lib/api'>; -} -declare module 'eslint/lib/ast-utils.js' { - declare module.exports: $Exports<'eslint/lib/ast-utils'>; -} -declare module 'eslint/lib/cli-engine.js' { - declare module.exports: $Exports<'eslint/lib/cli-engine'>; -} -declare module 'eslint/lib/cli.js' { - declare module.exports: $Exports<'eslint/lib/cli'>; -} -declare module 'eslint/lib/code-path-analysis/code-path-analyzer.js' { - declare module.exports: $Exports<'eslint/lib/code-path-analysis/code-path-analyzer'>; -} -declare module 'eslint/lib/code-path-analysis/code-path-segment.js' { - declare module.exports: $Exports<'eslint/lib/code-path-analysis/code-path-segment'>; -} -declare module 'eslint/lib/code-path-analysis/code-path-state.js' { - declare module.exports: $Exports<'eslint/lib/code-path-analysis/code-path-state'>; -} -declare module 'eslint/lib/code-path-analysis/code-path.js' { - declare module.exports: $Exports<'eslint/lib/code-path-analysis/code-path'>; -} -declare module 'eslint/lib/code-path-analysis/debug-helpers.js' { - declare module.exports: $Exports<'eslint/lib/code-path-analysis/debug-helpers'>; -} -declare module 'eslint/lib/code-path-analysis/fork-context.js' { - declare module.exports: $Exports<'eslint/lib/code-path-analysis/fork-context'>; -} -declare module 'eslint/lib/code-path-analysis/id-generator.js' { - declare module.exports: $Exports<'eslint/lib/code-path-analysis/id-generator'>; -} -declare module 'eslint/lib/config.js' { - declare module.exports: $Exports<'eslint/lib/config'>; -} -declare module 'eslint/lib/config/autoconfig.js' { - declare module.exports: $Exports<'eslint/lib/config/autoconfig'>; -} -declare module 'eslint/lib/config/config-file.js' { - declare module.exports: $Exports<'eslint/lib/config/config-file'>; -} -declare module 'eslint/lib/config/config-initializer.js' { - declare module.exports: $Exports<'eslint/lib/config/config-initializer'>; -} -declare module 'eslint/lib/config/config-ops.js' { - declare module.exports: $Exports<'eslint/lib/config/config-ops'>; -} -declare module 'eslint/lib/config/config-rule.js' { - declare module.exports: $Exports<'eslint/lib/config/config-rule'>; -} -declare module 'eslint/lib/config/config-validator.js' { - declare module.exports: $Exports<'eslint/lib/config/config-validator'>; -} -declare module 'eslint/lib/config/environments.js' { - declare module.exports: $Exports<'eslint/lib/config/environments'>; -} -declare module 'eslint/lib/config/plugins.js' { - declare module.exports: $Exports<'eslint/lib/config/plugins'>; -} -declare module 'eslint/lib/eslint.js' { - declare module.exports: $Exports<'eslint/lib/eslint'>; -} -declare module 'eslint/lib/file-finder.js' { - declare module.exports: $Exports<'eslint/lib/file-finder'>; -} -declare module 'eslint/lib/formatters/checkstyle.js' { - declare module.exports: $Exports<'eslint/lib/formatters/checkstyle'>; -} -declare module 'eslint/lib/formatters/compact.js' { - declare module.exports: $Exports<'eslint/lib/formatters/compact'>; -} -declare module 'eslint/lib/formatters/html.js' { - declare module.exports: $Exports<'eslint/lib/formatters/html'>; -} -declare module 'eslint/lib/formatters/jslint-xml.js' { - declare module.exports: $Exports<'eslint/lib/formatters/jslint-xml'>; -} -declare module 'eslint/lib/formatters/json.js' { - declare module.exports: $Exports<'eslint/lib/formatters/json'>; -} -declare module 'eslint/lib/formatters/junit.js' { - declare module.exports: $Exports<'eslint/lib/formatters/junit'>; -} -declare module 'eslint/lib/formatters/stylish.js' { - declare module.exports: $Exports<'eslint/lib/formatters/stylish'>; -} -declare module 'eslint/lib/formatters/table.js' { - declare module.exports: $Exports<'eslint/lib/formatters/table'>; -} -declare module 'eslint/lib/formatters/tap.js' { - declare module.exports: $Exports<'eslint/lib/formatters/tap'>; -} -declare module 'eslint/lib/formatters/unix.js' { - declare module.exports: $Exports<'eslint/lib/formatters/unix'>; -} -declare module 'eslint/lib/formatters/visualstudio.js' { - declare module.exports: $Exports<'eslint/lib/formatters/visualstudio'>; -} -declare module 'eslint/lib/ignored-paths.js' { - declare module.exports: $Exports<'eslint/lib/ignored-paths'>; -} -declare module 'eslint/lib/load-rules.js' { - declare module.exports: $Exports<'eslint/lib/load-rules'>; -} -declare module 'eslint/lib/logging.js' { - declare module.exports: $Exports<'eslint/lib/logging'>; -} -declare module 'eslint/lib/options.js' { - declare module.exports: $Exports<'eslint/lib/options'>; -} -declare module 'eslint/lib/rule-context.js' { - declare module.exports: $Exports<'eslint/lib/rule-context'>; -} -declare module 'eslint/lib/rules.js' { - declare module.exports: $Exports<'eslint/lib/rules'>; -} -declare module 'eslint/lib/rules/accessor-pairs.js' { - declare module.exports: $Exports<'eslint/lib/rules/accessor-pairs'>; -} -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/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/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.js' { - declare module.exports: $Exports<'eslint/lib/rules/default-case'>; -} -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/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/generator-star-spacing.js' { - declare module.exports: $Exports<'eslint/lib/rules/generator-star-spacing'>; -} -declare module 'eslint/lib/rules/global-require.js' { - declare module.exports: $Exports<'eslint/lib/rules/global-require'>; -} -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-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/indent.js' { - declare module.exports: $Exports<'eslint/lib/rules/indent'>; -} -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/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/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.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/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-bitwise.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-bitwise'>; -} -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-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-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-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-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-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-magic-numbers.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-magic-numbers'>; -} -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-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-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-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-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-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-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-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.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-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-call.js' { - declare module.exports: $Exports<'eslint/lib/rules/no-useless-call'>; -} -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-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/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/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-reflect.js' { - declare module.exports: $Exports<'eslint/lib/rules/prefer-reflect'>; -} -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-jsdoc.js' { - declare module.exports: $Exports<'eslint/lib/rules/require-jsdoc'>; -} -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.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-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/template-curly-spacing.js' { - declare module.exports: $Exports<'eslint/lib/rules/template-curly-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/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/testers/event-generator-tester.js' { - declare module.exports: $Exports<'eslint/lib/testers/event-generator-tester'>; -} -declare module 'eslint/lib/testers/rule-tester.js' { - declare module.exports: $Exports<'eslint/lib/testers/rule-tester'>; -} -declare module 'eslint/lib/timing.js' { - declare module.exports: $Exports<'eslint/lib/timing'>; -} -declare module 'eslint/lib/token-store.js' { - declare module.exports: $Exports<'eslint/lib/token-store'>; -} -declare module 'eslint/lib/util/comment-event-generator.js' { - declare module.exports: $Exports<'eslint/lib/util/comment-event-generator'>; -} -declare module 'eslint/lib/util/glob-util.js' { - declare module.exports: $Exports<'eslint/lib/util/glob-util'>; -} -declare module 'eslint/lib/util/hash.js' { - declare module.exports: $Exports<'eslint/lib/util/hash'>; -} -declare module 'eslint/lib/util/keywords.js' { - declare module.exports: $Exports<'eslint/lib/util/keywords'>; -} -declare module 'eslint/lib/util/module-resolver.js' { - declare module.exports: $Exports<'eslint/lib/util/module-resolver'>; -} -declare module 'eslint/lib/util/node-event-generator.js' { - declare module.exports: $Exports<'eslint/lib/util/node-event-generator'>; -} -declare module 'eslint/lib/util/npm-util.js' { - declare module.exports: $Exports<'eslint/lib/util/npm-util'>; -} -declare module 'eslint/lib/util/path-util.js' { - declare module.exports: $Exports<'eslint/lib/util/path-util'>; -} -declare module 'eslint/lib/util/rule-fixer.js' { - declare module.exports: $Exports<'eslint/lib/util/rule-fixer'>; -} -declare module 'eslint/lib/util/source-code-fixer.js' { - declare module.exports: $Exports<'eslint/lib/util/source-code-fixer'>; -} -declare module 'eslint/lib/util/source-code-util.js' { - declare module.exports: $Exports<'eslint/lib/util/source-code-util'>; -} -declare module 'eslint/lib/util/source-code.js' { - declare module.exports: $Exports<'eslint/lib/util/source-code'>; -} -declare module 'eslint/lib/util/traverser.js' { - declare module.exports: $Exports<'eslint/lib/util/traverser'>; -} diff --git a/flow-typed/npm/extract-text-webpack-plugin_vx.x.x.js b/flow-typed/npm/extract-text-webpack-plugin_vx.x.x.js deleted file mode 100644 index 156b996..0000000 --- a/flow-typed/npm/extract-text-webpack-plugin_vx.x.x.js +++ /dev/null @@ -1,74 +0,0 @@ -// flow-typed signature: 05ef09dfc9e5088cc56bdadeb38a8670 -// flow-typed version: <>/extract-text-webpack-plugin_v^4.0.0-beta.0/flow_v0.77.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'extract-text-webpack-plugin' - * - * Fill this stub out by replacing all the `any` types. - * - * Once filled out, we encourage you to share your work with the - * community by sending a pull request to: - * https://github.com/flowtype/flow-typed - */ - -declare module 'extract-text-webpack-plugin' { - declare module.exports: any; -} - -/** - * We include stubs for each file inside this npm package in case you need to - * require those files directly. Feel free to delete any files that aren't - * needed. - */ -declare module 'extract-text-webpack-plugin/dist/cjs' { - declare module.exports: any; -} - -declare module 'extract-text-webpack-plugin/dist/index' { - declare module.exports: any; -} - -declare module 'extract-text-webpack-plugin/dist/lib/ExtractedModule' { - declare module.exports: any; -} - -declare module 'extract-text-webpack-plugin/dist/lib/ExtractTextPluginCompilation' { - declare module.exports: any; -} - -declare module 'extract-text-webpack-plugin/dist/lib/helpers' { - declare module.exports: any; -} - -declare module 'extract-text-webpack-plugin/dist/lib/OrderUndefinedError' { - declare module.exports: any; -} - -declare module 'extract-text-webpack-plugin/dist/loader' { - declare module.exports: any; -} - -// Filename aliases -declare module 'extract-text-webpack-plugin/dist/cjs.js' { - declare module.exports: $Exports<'extract-text-webpack-plugin/dist/cjs'>; -} -declare module 'extract-text-webpack-plugin/dist/index.js' { - declare module.exports: $Exports<'extract-text-webpack-plugin/dist/index'>; -} -declare module 'extract-text-webpack-plugin/dist/lib/ExtractedModule.js' { - declare module.exports: $Exports<'extract-text-webpack-plugin/dist/lib/ExtractedModule'>; -} -declare module 'extract-text-webpack-plugin/dist/lib/ExtractTextPluginCompilation.js' { - declare module.exports: $Exports<'extract-text-webpack-plugin/dist/lib/ExtractTextPluginCompilation'>; -} -declare module 'extract-text-webpack-plugin/dist/lib/helpers.js' { - declare module.exports: $Exports<'extract-text-webpack-plugin/dist/lib/helpers'>; -} -declare module 'extract-text-webpack-plugin/dist/lib/OrderUndefinedError.js' { - declare module.exports: $Exports<'extract-text-webpack-plugin/dist/lib/OrderUndefinedError'>; -} -declare module 'extract-text-webpack-plugin/dist/loader.js' { - declare module.exports: $Exports<'extract-text-webpack-plugin/dist/loader'>; -} diff --git a/flow-typed/npm/file-loader_vx.x.x.js b/flow-typed/npm/file-loader_vx.x.x.js deleted file mode 100644 index c7c3ca6..0000000 --- a/flow-typed/npm/file-loader_vx.x.x.js +++ /dev/null @@ -1,39 +0,0 @@ -// flow-typed signature: edf751676c381a3bc79a2577ca0915c9 -// flow-typed version: <>/file-loader_v^1.1.11/flow_v0.77.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'file-loader' - * - * Fill this stub out by replacing all the `any` types. - * - * Once filled out, we encourage you to share your work with the - * community by sending a pull request to: - * https://github.com/flowtype/flow-typed - */ - -declare module 'file-loader' { - declare module.exports: any; -} - -/** - * We include stubs for each file inside this npm package in case you need to - * require those files directly. Feel free to delete any files that aren't - * needed. - */ -declare module 'file-loader/dist/cjs' { - declare module.exports: any; -} - -declare module 'file-loader/dist/index' { - declare module.exports: any; -} - -// Filename aliases -declare module 'file-loader/dist/cjs.js' { - declare module.exports: $Exports<'file-loader/dist/cjs'>; -} -declare module 'file-loader/dist/index.js' { - declare module.exports: $Exports<'file-loader/dist/index'>; -} 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 c538e20..0000000 --- a/flow-typed/npm/flow-bin_v0.x.x.js +++ /dev/null @@ -1,6 +0,0 @@ -// flow-typed signature: 6a5610678d4b01e13bbfbbc62bdaf583 -// flow-typed version: 3817bc6980/flow-bin_v0.x.x/flow_>=v0.25.x - -declare module "flow-bin" { - declare module.exports: string; -} diff --git a/flow-typed/npm/fs-promise_vx.x.x.js b/flow-typed/npm/fs-promise_vx.x.x.js deleted file mode 100644 index cdf7ea5..0000000 --- a/flow-typed/npm/fs-promise_vx.x.x.js +++ /dev/null @@ -1,52 +0,0 @@ -// flow-typed signature: 529c5d74afd6bd233ccb0889c206dbf9 -// flow-typed version: <>/fs-promise_v^0.5.0/flow_v0.77.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'fs-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 'fs-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 'fs-promise/test/basic' { - declare module.exports: any; -} - -declare module 'fs-promise/test/mz' { - declare module.exports: any; -} - -declare module 'fs-promise/test/register' { - declare module.exports: any; -} - -// Filename aliases -declare module 'fs-promise/index' { - declare module.exports: $Exports<'fs-promise'>; -} -declare module 'fs-promise/index.js' { - declare module.exports: $Exports<'fs-promise'>; -} -declare module 'fs-promise/test/basic.js' { - declare module.exports: $Exports<'fs-promise/test/basic'>; -} -declare module 'fs-promise/test/mz.js' { - declare module.exports: $Exports<'fs-promise/test/mz'>; -} -declare module 'fs-promise/test/register.js' { - declare module.exports: $Exports<'fs-promise/test/register'>; -} diff --git a/flow-typed/npm/gh-pages_vx.x.x.js b/flow-typed/npm/gh-pages_vx.x.x.js deleted file mode 100644 index f301c2e..0000000 --- a/flow-typed/npm/gh-pages_vx.x.x.js +++ /dev/null @@ -1,123 +0,0 @@ -// flow-typed signature: 7c33428e6b152bea40ae754e356fb2c0 -// flow-typed version: <>/gh-pages_v^1.2.0/flow_v0.77.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'gh-pages' - * - * 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 'gh-pages' { - 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 'gh-pages/bin/gh-pages-clean' { - declare module.exports: any; -} - -declare module 'gh-pages/bin/gh-pages' { - declare module.exports: any; -} - -declare module 'gh-pages/lib/git' { - declare module.exports: any; -} - -declare module 'gh-pages/lib/index' { - declare module.exports: any; -} - -declare module 'gh-pages/lib/util' { - declare module.exports: any; -} - -declare module 'gh-pages/plugin' { - declare module.exports: any; -} - -declare module 'gh-pages/test/bin/gh-pages.spec' { - declare module.exports: any; -} - -declare module 'gh-pages/test/helper' { - declare module.exports: any; -} - -declare module 'gh-pages/test/integration/basic.spec' { - declare module.exports: any; -} - -declare module 'gh-pages/test/integration/dest.spec' { - declare module.exports: any; -} - -declare module 'gh-pages/test/integration/fixtures/include/expected/good' { - declare module.exports: any; -} - -declare module 'gh-pages/test/integration/fixtures/include/local/good' { - declare module.exports: any; -} - -declare module 'gh-pages/test/integration/include.spec' { - declare module.exports: any; -} - -declare module 'gh-pages/test/lib/util.spec' { - declare module.exports: any; -} - -// Filename aliases -declare module 'gh-pages/bin/gh-pages-clean.js' { - declare module.exports: $Exports<'gh-pages/bin/gh-pages-clean'>; -} -declare module 'gh-pages/bin/gh-pages.js' { - declare module.exports: $Exports<'gh-pages/bin/gh-pages'>; -} -declare module 'gh-pages/lib/git.js' { - declare module.exports: $Exports<'gh-pages/lib/git'>; -} -declare module 'gh-pages/lib/index.js' { - declare module.exports: $Exports<'gh-pages/lib/index'>; -} -declare module 'gh-pages/lib/util.js' { - declare module.exports: $Exports<'gh-pages/lib/util'>; -} -declare module 'gh-pages/plugin.js' { - declare module.exports: $Exports<'gh-pages/plugin'>; -} -declare module 'gh-pages/test/bin/gh-pages.spec.js' { - declare module.exports: $Exports<'gh-pages/test/bin/gh-pages.spec'>; -} -declare module 'gh-pages/test/helper.js' { - declare module.exports: $Exports<'gh-pages/test/helper'>; -} -declare module 'gh-pages/test/integration/basic.spec.js' { - declare module.exports: $Exports<'gh-pages/test/integration/basic.spec'>; -} -declare module 'gh-pages/test/integration/dest.spec.js' { - declare module.exports: $Exports<'gh-pages/test/integration/dest.spec'>; -} -declare module 'gh-pages/test/integration/fixtures/include/expected/good.js' { - declare module.exports: $Exports<'gh-pages/test/integration/fixtures/include/expected/good'>; -} -declare module 'gh-pages/test/integration/fixtures/include/local/good.js' { - declare module.exports: $Exports<'gh-pages/test/integration/fixtures/include/local/good'>; -} -declare module 'gh-pages/test/integration/include.spec.js' { - declare module.exports: $Exports<'gh-pages/test/integration/include.spec'>; -} -declare module 'gh-pages/test/lib/util.spec.js' { - declare module.exports: $Exports<'gh-pages/test/lib/util.spec'>; -} diff --git a/flow-typed/npm/glob_vx.x.x.js b/flow-typed/npm/glob_vx.x.x.js deleted file mode 100644 index e7593f0..0000000 --- a/flow-typed/npm/glob_vx.x.x.js +++ /dev/null @@ -1,46 +0,0 @@ -// flow-typed signature: 9bb25204b0d7b909c3421b4f03b2cc2b -// flow-typed version: <>/glob_v^7.0.3/flow_v0.77.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'glob' - * - * 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 'glob' { - 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 'glob/common' { - declare module.exports: any; -} - -declare module 'glob/glob' { - declare module.exports: any; -} - -declare module 'glob/sync' { - declare module.exports: any; -} - -// Filename aliases -declare module 'glob/common.js' { - declare module.exports: $Exports<'glob/common'>; -} -declare module 'glob/glob.js' { - declare module.exports: $Exports<'glob/glob'>; -} -declare module 'glob/sync.js' { - declare module.exports: $Exports<'glob/sync'>; -} diff --git a/flow-typed/npm/html-loader_vx.x.x.js b/flow-typed/npm/html-loader_vx.x.x.js deleted file mode 100644 index b4f7411..0000000 --- a/flow-typed/npm/html-loader_vx.x.x.js +++ /dev/null @@ -1,38 +0,0 @@ -// flow-typed signature: cd1a4bf39b99f96cfe1eb99bbd20b85f -// flow-typed version: <>/html-loader_v^0.4.3/flow_v0.77.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'html-loader' - * - * Fill this stub out by replacing all the `any` types. - * - * Once filled out, we encourage you to share your work with the - * community by sending a pull request to: - * https://github.com/flowtype/flow-typed - */ - -declare module 'html-loader' { - declare module.exports: any; -} - -/** - * We include stubs for each file inside this npm package in case you need to - * require those files directly. Feel free to delete any files that aren't - * needed. - */ -declare module 'html-loader/lib/attributesParser' { - declare module.exports: any; -} - -// Filename aliases -declare module 'html-loader/index' { - declare module.exports: $Exports<'html-loader'>; -} -declare module 'html-loader/index.js' { - declare module.exports: $Exports<'html-loader'>; -} -declare module 'html-loader/lib/attributesParser.js' { - declare module.exports: $Exports<'html-loader/lib/attributesParser'>; -} diff --git a/flow-typed/npm/html-webpack-plugin_vx.x.x.js b/flow-typed/npm/html-webpack-plugin_vx.x.x.js deleted file mode 100644 index b1d8415..0000000 --- a/flow-typed/npm/html-webpack-plugin_vx.x.x.js +++ /dev/null @@ -1,59 +0,0 @@ -// flow-typed signature: 7b11ba98e80ce036f370918f0accae7e -// flow-typed version: <>/html-webpack-plugin_v^3.0.6/flow_v0.77.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'html-webpack-plugin' - * - * Fill this stub out by replacing all the `any` types. - * - * Once filled out, we encourage you to share your work with the - * community by sending a pull request to: - * https://github.com/flowtype/flow-typed - */ - -declare module 'html-webpack-plugin' { - declare module.exports: any; -} - -/** - * We include stubs for each file inside this npm package in case you need to - * require those files directly. Feel free to delete any files that aren't - * needed. - */ -declare module 'html-webpack-plugin/lib/chunksorter' { - declare module.exports: any; -} - -declare module 'html-webpack-plugin/lib/compiler' { - declare module.exports: any; -} - -declare module 'html-webpack-plugin/lib/errors' { - declare module.exports: any; -} - -declare module 'html-webpack-plugin/lib/loader' { - declare module.exports: any; -} - -// Filename aliases -declare module 'html-webpack-plugin/index' { - declare module.exports: $Exports<'html-webpack-plugin'>; -} -declare module 'html-webpack-plugin/index.js' { - declare module.exports: $Exports<'html-webpack-plugin'>; -} -declare module 'html-webpack-plugin/lib/chunksorter.js' { - declare module.exports: $Exports<'html-webpack-plugin/lib/chunksorter'>; -} -declare module 'html-webpack-plugin/lib/compiler.js' { - declare module.exports: $Exports<'html-webpack-plugin/lib/compiler'>; -} -declare module 'html-webpack-plugin/lib/errors.js' { - declare module.exports: $Exports<'html-webpack-plugin/lib/errors'>; -} -declare module 'html-webpack-plugin/lib/loader.js' { - declare module.exports: $Exports<'html-webpack-plugin/lib/loader'>; -} diff --git a/flow-typed/npm/karma_vx.x.x.js b/flow-typed/npm/karma_vx.x.x.js deleted file mode 100644 index a6b66a5..0000000 --- a/flow-typed/npm/karma_vx.x.x.js +++ /dev/null @@ -1,382 +0,0 @@ -// flow-typed signature: 59f814140e7509cd647b8c10f7a6a89e -// flow-typed version: <>/karma_v^0.13.22/flow_v0.77.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'karma' - * - * 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 'karma' { - 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 'karma/config.tpl' { - declare module.exports: any; -} - -declare module 'karma/gruntfile' { - declare module.exports: any; -} - -declare module 'karma/lib/browser_collection' { - declare module.exports: any; -} - -declare module 'karma/lib/browser_result' { - declare module.exports: any; -} - -declare module 'karma/lib/browser' { - declare module.exports: any; -} - -declare module 'karma/lib/cli' { - declare module.exports: any; -} - -declare module 'karma/lib/completion' { - declare module.exports: any; -} - -declare module 'karma/lib/config' { - declare module.exports: any; -} - -declare module 'karma/lib/constants' { - declare module.exports: any; -} - -declare module 'karma/lib/emitter_wrapper' { - declare module.exports: any; -} - -declare module 'karma/lib/events' { - declare module.exports: any; -} - -declare module 'karma/lib/executor' { - declare module.exports: any; -} - -declare module 'karma/lib/file-list' { - declare module.exports: any; -} - -declare module 'karma/lib/file' { - declare module.exports: any; -} - -declare module 'karma/lib/helper' { - declare module.exports: any; -} - -declare module 'karma/lib/index' { - declare module.exports: any; -} - -declare module 'karma/lib/init' { - declare module.exports: any; -} - -declare module 'karma/lib/init/color_schemes' { - declare module.exports: any; -} - -declare module 'karma/lib/init/formatters' { - declare module.exports: any; -} - -declare module 'karma/lib/init/state_machine' { - declare module.exports: any; -} - -declare module 'karma/lib/launcher' { - declare module.exports: any; -} - -declare module 'karma/lib/launchers/base' { - declare module.exports: any; -} - -declare module 'karma/lib/launchers/capture_timeout' { - declare module.exports: any; -} - -declare module 'karma/lib/launchers/process' { - declare module.exports: any; -} - -declare module 'karma/lib/launchers/retry' { - declare module.exports: any; -} - -declare module 'karma/lib/logger' { - declare module.exports: any; -} - -declare module 'karma/lib/middleware/common' { - declare module.exports: any; -} - -declare module 'karma/lib/middleware/karma' { - declare module.exports: any; -} - -declare module 'karma/lib/middleware/proxy' { - declare module.exports: any; -} - -declare module 'karma/lib/middleware/runner' { - declare module.exports: any; -} - -declare module 'karma/lib/middleware/source_files' { - declare module.exports: any; -} - -declare module 'karma/lib/middleware/strip_host' { - declare module.exports: any; -} - -declare module 'karma/lib/plugin' { - declare module.exports: any; -} - -declare module 'karma/lib/preprocessor' { - declare module.exports: any; -} - -declare module 'karma/lib/reporter' { - declare module.exports: any; -} - -declare module 'karma/lib/reporters/base_color' { - declare module.exports: any; -} - -declare module 'karma/lib/reporters/base' { - declare module.exports: any; -} - -declare module 'karma/lib/reporters/dots_color' { - declare module.exports: any; -} - -declare module 'karma/lib/reporters/dots' { - declare module.exports: any; -} - -declare module 'karma/lib/reporters/multi' { - declare module.exports: any; -} - -declare module 'karma/lib/reporters/progress_color' { - declare module.exports: any; -} - -declare module 'karma/lib/reporters/progress' { - declare module.exports: any; -} - -declare module 'karma/lib/runner' { - declare module.exports: any; -} - -declare module 'karma/lib/server' { - declare module.exports: any; -} - -declare module 'karma/lib/temp_dir' { - declare module.exports: any; -} - -declare module 'karma/lib/url' { - declare module.exports: any; -} - -declare module 'karma/lib/watcher' { - declare module.exports: any; -} - -declare module 'karma/lib/web-server' { - declare module.exports: any; -} - -declare module 'karma/requirejs.config.tpl' { - declare module.exports: any; -} - -declare module 'karma/static/karma' { - declare module.exports: any; -} - -declare module 'karma/wallaby' { - declare module.exports: any; -} - -// Filename aliases -declare module 'karma/config.tpl.js' { - declare module.exports: $Exports<'karma/config.tpl'>; -} -declare module 'karma/gruntfile.js' { - declare module.exports: $Exports<'karma/gruntfile'>; -} -declare module 'karma/lib/browser_collection.js' { - declare module.exports: $Exports<'karma/lib/browser_collection'>; -} -declare module 'karma/lib/browser_result.js' { - declare module.exports: $Exports<'karma/lib/browser_result'>; -} -declare module 'karma/lib/browser.js' { - declare module.exports: $Exports<'karma/lib/browser'>; -} -declare module 'karma/lib/cli.js' { - declare module.exports: $Exports<'karma/lib/cli'>; -} -declare module 'karma/lib/completion.js' { - declare module.exports: $Exports<'karma/lib/completion'>; -} -declare module 'karma/lib/config.js' { - declare module.exports: $Exports<'karma/lib/config'>; -} -declare module 'karma/lib/constants.js' { - declare module.exports: $Exports<'karma/lib/constants'>; -} -declare module 'karma/lib/emitter_wrapper.js' { - declare module.exports: $Exports<'karma/lib/emitter_wrapper'>; -} -declare module 'karma/lib/events.js' { - declare module.exports: $Exports<'karma/lib/events'>; -} -declare module 'karma/lib/executor.js' { - declare module.exports: $Exports<'karma/lib/executor'>; -} -declare module 'karma/lib/file-list.js' { - declare module.exports: $Exports<'karma/lib/file-list'>; -} -declare module 'karma/lib/file.js' { - declare module.exports: $Exports<'karma/lib/file'>; -} -declare module 'karma/lib/helper.js' { - declare module.exports: $Exports<'karma/lib/helper'>; -} -declare module 'karma/lib/index.js' { - declare module.exports: $Exports<'karma/lib/index'>; -} -declare module 'karma/lib/init.js' { - declare module.exports: $Exports<'karma/lib/init'>; -} -declare module 'karma/lib/init/color_schemes.js' { - declare module.exports: $Exports<'karma/lib/init/color_schemes'>; -} -declare module 'karma/lib/init/formatters.js' { - declare module.exports: $Exports<'karma/lib/init/formatters'>; -} -declare module 'karma/lib/init/state_machine.js' { - declare module.exports: $Exports<'karma/lib/init/state_machine'>; -} -declare module 'karma/lib/launcher.js' { - declare module.exports: $Exports<'karma/lib/launcher'>; -} -declare module 'karma/lib/launchers/base.js' { - declare module.exports: $Exports<'karma/lib/launchers/base'>; -} -declare module 'karma/lib/launchers/capture_timeout.js' { - declare module.exports: $Exports<'karma/lib/launchers/capture_timeout'>; -} -declare module 'karma/lib/launchers/process.js' { - declare module.exports: $Exports<'karma/lib/launchers/process'>; -} -declare module 'karma/lib/launchers/retry.js' { - declare module.exports: $Exports<'karma/lib/launchers/retry'>; -} -declare module 'karma/lib/logger.js' { - declare module.exports: $Exports<'karma/lib/logger'>; -} -declare module 'karma/lib/middleware/common.js' { - declare module.exports: $Exports<'karma/lib/middleware/common'>; -} -declare module 'karma/lib/middleware/karma.js' { - declare module.exports: $Exports<'karma/lib/middleware/karma'>; -} -declare module 'karma/lib/middleware/proxy.js' { - declare module.exports: $Exports<'karma/lib/middleware/proxy'>; -} -declare module 'karma/lib/middleware/runner.js' { - declare module.exports: $Exports<'karma/lib/middleware/runner'>; -} -declare module 'karma/lib/middleware/source_files.js' { - declare module.exports: $Exports<'karma/lib/middleware/source_files'>; -} -declare module 'karma/lib/middleware/strip_host.js' { - declare module.exports: $Exports<'karma/lib/middleware/strip_host'>; -} -declare module 'karma/lib/plugin.js' { - declare module.exports: $Exports<'karma/lib/plugin'>; -} -declare module 'karma/lib/preprocessor.js' { - declare module.exports: $Exports<'karma/lib/preprocessor'>; -} -declare module 'karma/lib/reporter.js' { - declare module.exports: $Exports<'karma/lib/reporter'>; -} -declare module 'karma/lib/reporters/base_color.js' { - declare module.exports: $Exports<'karma/lib/reporters/base_color'>; -} -declare module 'karma/lib/reporters/base.js' { - declare module.exports: $Exports<'karma/lib/reporters/base'>; -} -declare module 'karma/lib/reporters/dots_color.js' { - declare module.exports: $Exports<'karma/lib/reporters/dots_color'>; -} -declare module 'karma/lib/reporters/dots.js' { - declare module.exports: $Exports<'karma/lib/reporters/dots'>; -} -declare module 'karma/lib/reporters/multi.js' { - declare module.exports: $Exports<'karma/lib/reporters/multi'>; -} -declare module 'karma/lib/reporters/progress_color.js' { - declare module.exports: $Exports<'karma/lib/reporters/progress_color'>; -} -declare module 'karma/lib/reporters/progress.js' { - declare module.exports: $Exports<'karma/lib/reporters/progress'>; -} -declare module 'karma/lib/runner.js' { - declare module.exports: $Exports<'karma/lib/runner'>; -} -declare module 'karma/lib/server.js' { - declare module.exports: $Exports<'karma/lib/server'>; -} -declare module 'karma/lib/temp_dir.js' { - declare module.exports: $Exports<'karma/lib/temp_dir'>; -} -declare module 'karma/lib/url.js' { - declare module.exports: $Exports<'karma/lib/url'>; -} -declare module 'karma/lib/watcher.js' { - declare module.exports: $Exports<'karma/lib/watcher'>; -} -declare module 'karma/lib/web-server.js' { - declare module.exports: $Exports<'karma/lib/web-server'>; -} -declare module 'karma/requirejs.config.tpl.js' { - declare module.exports: $Exports<'karma/requirejs.config.tpl'>; -} -declare module 'karma/static/karma.js' { - declare module.exports: $Exports<'karma/static/karma'>; -} -declare module 'karma/wallaby.js' { - declare module.exports: $Exports<'karma/wallaby'>; -} diff --git a/flow-typed/npm/less-loader_vx.x.x.js b/flow-typed/npm/less-loader_vx.x.x.js deleted file mode 100644 index 277ea7c..0000000 --- a/flow-typed/npm/less-loader_vx.x.x.js +++ /dev/null @@ -1,81 +0,0 @@ -// flow-typed signature: a50aaa835cd3ad35a5d7946eed99f362 -// flow-typed version: <>/less-loader_v^4.1.0/flow_v0.77.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'less-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 'less-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 'less-loader/dist/cjs' { - declare module.exports: any; -} - -declare module 'less-loader/dist/createWebpackLessPlugin' { - declare module.exports: any; -} - -declare module 'less-loader/dist/formatLessError' { - declare module.exports: any; -} - -declare module 'less-loader/dist/getOptions' { - declare module.exports: any; -} - -declare module 'less-loader/dist/index' { - declare module.exports: any; -} - -declare module 'less-loader/dist/processResult' { - declare module.exports: any; -} - -declare module 'less-loader/dist/removeSourceMappingUrl' { - declare module.exports: any; -} - -declare module 'less-loader/dist/stringifyLoader' { - declare module.exports: any; -} - -// Filename aliases -declare module 'less-loader/dist/cjs.js' { - declare module.exports: $Exports<'less-loader/dist/cjs'>; -} -declare module 'less-loader/dist/createWebpackLessPlugin.js' { - declare module.exports: $Exports<'less-loader/dist/createWebpackLessPlugin'>; -} -declare module 'less-loader/dist/formatLessError.js' { - declare module.exports: $Exports<'less-loader/dist/formatLessError'>; -} -declare module 'less-loader/dist/getOptions.js' { - declare module.exports: $Exports<'less-loader/dist/getOptions'>; -} -declare module 'less-loader/dist/index.js' { - declare module.exports: $Exports<'less-loader/dist/index'>; -} -declare module 'less-loader/dist/processResult.js' { - declare module.exports: $Exports<'less-loader/dist/processResult'>; -} -declare module 'less-loader/dist/removeSourceMappingUrl.js' { - declare module.exports: $Exports<'less-loader/dist/removeSourceMappingUrl'>; -} -declare module 'less-loader/dist/stringifyLoader.js' { - declare module.exports: $Exports<'less-loader/dist/stringifyLoader'>; -} diff --git a/flow-typed/npm/less_vx.x.x.js b/flow-typed/npm/less_vx.x.x.js deleted file mode 100644 index 00a85d5..0000000 --- a/flow-typed/npm/less_vx.x.x.js +++ /dev/null @@ -1,1179 +0,0 @@ -// flow-typed signature: e1e0f3f76954687db6b2a28637bf1783 -// flow-typed version: <>/less_v^2.7.1/flow_v0.77.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'less' - * - * 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 'less' { - 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 'less/browser' { - declare module.exports: any; -} - -declare module 'less/dist/less' { - declare module.exports: any; -} - -declare module 'less/dist/less.min' { - declare module.exports: any; -} - -declare module 'less/Gruntfile' { - declare module.exports: any; -} - -declare module 'less/lib/less-browser/add-default-options' { - declare module.exports: any; -} - -declare module 'less/lib/less-browser/bootstrap' { - declare module.exports: any; -} - -declare module 'less/lib/less-browser/browser' { - declare module.exports: any; -} - -declare module 'less/lib/less-browser/cache' { - declare module.exports: any; -} - -declare module 'less/lib/less-browser/error-reporting' { - declare module.exports: any; -} - -declare module 'less/lib/less-browser/file-manager' { - declare module.exports: any; -} - -declare module 'less/lib/less-browser/image-size' { - declare module.exports: any; -} - -declare module 'less/lib/less-browser/index' { - declare module.exports: any; -} - -declare module 'less/lib/less-browser/log-listener' { - declare module.exports: any; -} - -declare module 'less/lib/less-browser/utils' { - declare module.exports: any; -} - -declare module 'less/lib/less-node/environment' { - declare module.exports: any; -} - -declare module 'less/lib/less-node/file-manager' { - declare module.exports: any; -} - -declare module 'less/lib/less-node/fs' { - declare module.exports: any; -} - -declare module 'less/lib/less-node/image-size' { - declare module.exports: any; -} - -declare module 'less/lib/less-node/index' { - declare module.exports: any; -} - -declare module 'less/lib/less-node/lessc-helper' { - declare module.exports: any; -} - -declare module 'less/lib/less-node/plugin-loader' { - declare module.exports: any; -} - -declare module 'less/lib/less-node/url-file-manager' { - declare module.exports: any; -} - -declare module 'less/lib/less-rhino/index' { - declare module.exports: any; -} - -declare module 'less/lib/less/contexts' { - declare module.exports: any; -} - -declare module 'less/lib/less/data/colors' { - declare module.exports: any; -} - -declare module 'less/lib/less/data/index' { - declare module.exports: any; -} - -declare module 'less/lib/less/data/unit-conversions' { - declare module.exports: any; -} - -declare module 'less/lib/less/environment/abstract-file-manager' { - declare module.exports: any; -} - -declare module 'less/lib/less/environment/environment-api' { - declare module.exports: any; -} - -declare module 'less/lib/less/environment/environment' { - declare module.exports: any; -} - -declare module 'less/lib/less/environment/file-manager-api' { - declare module.exports: any; -} - -declare module 'less/lib/less/functions/color-blending' { - declare module.exports: any; -} - -declare module 'less/lib/less/functions/color' { - declare module.exports: any; -} - -declare module 'less/lib/less/functions/data-uri' { - declare module.exports: any; -} - -declare module 'less/lib/less/functions/default' { - declare module.exports: any; -} - -declare module 'less/lib/less/functions/function-caller' { - declare module.exports: any; -} - -declare module 'less/lib/less/functions/function-registry' { - declare module.exports: any; -} - -declare module 'less/lib/less/functions/index' { - declare module.exports: any; -} - -declare module 'less/lib/less/functions/math-helper' { - declare module.exports: any; -} - -declare module 'less/lib/less/functions/math' { - declare module.exports: any; -} - -declare module 'less/lib/less/functions/number' { - declare module.exports: any; -} - -declare module 'less/lib/less/functions/string' { - declare module.exports: any; -} - -declare module 'less/lib/less/functions/svg' { - declare module.exports: any; -} - -declare module 'less/lib/less/functions/types' { - declare module.exports: any; -} - -declare module 'less/lib/less/import-manager' { - declare module.exports: any; -} - -declare module 'less/lib/less/index' { - declare module.exports: any; -} - -declare module 'less/lib/less/less-error' { - declare module.exports: any; -} - -declare module 'less/lib/less/logger' { - declare module.exports: any; -} - -declare module 'less/lib/less/parse-tree' { - declare module.exports: any; -} - -declare module 'less/lib/less/parse' { - declare module.exports: any; -} - -declare module 'less/lib/less/parser/chunker' { - declare module.exports: any; -} - -declare module 'less/lib/less/parser/parser-input' { - declare module.exports: any; -} - -declare module 'less/lib/less/parser/parser' { - declare module.exports: any; -} - -declare module 'less/lib/less/plugin-manager' { - declare module.exports: any; -} - -declare module 'less/lib/less/plugins/function-importer' { - declare module.exports: any; -} - -declare module 'less/lib/less/render' { - declare module.exports: any; -} - -declare module 'less/lib/less/source-map-builder' { - declare module.exports: any; -} - -declare module 'less/lib/less/source-map-output' { - declare module.exports: any; -} - -declare module 'less/lib/less/transform-tree' { - declare module.exports: any; -} - -declare module 'less/lib/less/tree/alpha' { - declare module.exports: any; -} - -declare module 'less/lib/less/tree/anonymous' { - declare module.exports: any; -} - -declare module 'less/lib/less/tree/assignment' { - declare module.exports: any; -} - -declare module 'less/lib/less/tree/attribute' { - declare module.exports: any; -} - -declare module 'less/lib/less/tree/call' { - declare module.exports: any; -} - -declare module 'less/lib/less/tree/color' { - declare module.exports: any; -} - -declare module 'less/lib/less/tree/combinator' { - declare module.exports: any; -} - -declare module 'less/lib/less/tree/comment' { - declare module.exports: any; -} - -declare module 'less/lib/less/tree/condition' { - declare module.exports: any; -} - -declare module 'less/lib/less/tree/debug-info' { - declare module.exports: any; -} - -declare module 'less/lib/less/tree/detached-ruleset' { - declare module.exports: any; -} - -declare module 'less/lib/less/tree/dimension' { - declare module.exports: any; -} - -declare module 'less/lib/less/tree/directive' { - declare module.exports: any; -} - -declare module 'less/lib/less/tree/element' { - declare module.exports: any; -} - -declare module 'less/lib/less/tree/expression' { - declare module.exports: any; -} - -declare module 'less/lib/less/tree/extend' { - declare module.exports: any; -} - -declare module 'less/lib/less/tree/import' { - declare module.exports: any; -} - -declare module 'less/lib/less/tree/index' { - declare module.exports: any; -} - -declare module 'less/lib/less/tree/javascript' { - declare module.exports: any; -} - -declare module 'less/lib/less/tree/js-eval-node' { - declare module.exports: any; -} - -declare module 'less/lib/less/tree/keyword' { - declare module.exports: any; -} - -declare module 'less/lib/less/tree/media' { - declare module.exports: any; -} - -declare module 'less/lib/less/tree/mixin-call' { - declare module.exports: any; -} - -declare module 'less/lib/less/tree/mixin-definition' { - declare module.exports: any; -} - -declare module 'less/lib/less/tree/negative' { - declare module.exports: any; -} - -declare module 'less/lib/less/tree/node' { - declare module.exports: any; -} - -declare module 'less/lib/less/tree/operation' { - declare module.exports: any; -} - -declare module 'less/lib/less/tree/paren' { - declare module.exports: any; -} - -declare module 'less/lib/less/tree/quoted' { - declare module.exports: any; -} - -declare module 'less/lib/less/tree/rule' { - declare module.exports: any; -} - -declare module 'less/lib/less/tree/ruleset-call' { - declare module.exports: any; -} - -declare module 'less/lib/less/tree/ruleset' { - declare module.exports: any; -} - -declare module 'less/lib/less/tree/selector' { - declare module.exports: any; -} - -declare module 'less/lib/less/tree/unicode-descriptor' { - declare module.exports: any; -} - -declare module 'less/lib/less/tree/unit' { - declare module.exports: any; -} - -declare module 'less/lib/less/tree/url' { - declare module.exports: any; -} - -declare module 'less/lib/less/tree/value' { - declare module.exports: any; -} - -declare module 'less/lib/less/tree/variable' { - declare module.exports: any; -} - -declare module 'less/lib/less/utils' { - declare module.exports: any; -} - -declare module 'less/lib/less/visitors/extend-visitor' { - declare module.exports: any; -} - -declare module 'less/lib/less/visitors/import-sequencer' { - declare module.exports: any; -} - -declare module 'less/lib/less/visitors/import-visitor' { - declare module.exports: any; -} - -declare module 'less/lib/less/visitors/index' { - declare module.exports: any; -} - -declare module 'less/lib/less/visitors/join-selector-visitor' { - declare module.exports: any; -} - -declare module 'less/lib/less/visitors/set-tree-visibility-visitor' { - declare module.exports: any; -} - -declare module 'less/lib/less/visitors/to-css-visitor' { - declare module.exports: any; -} - -declare module 'less/lib/less/visitors/visitor' { - declare module.exports: any; -} - -declare module 'less/lib/source-map/source-map-0.1.31' { - declare module.exports: any; -} - -declare module 'less/lib/source-map/source-map-footer' { - declare module.exports: any; -} - -declare module 'less/lib/source-map/source-map-header' { - declare module.exports: any; -} - -declare module 'less/test/browser/common' { - declare module.exports: any; -} - -declare module 'less/test/browser/jasmine-jsreporter' { - declare module.exports: any; -} - -declare module 'less/test/browser/less' { - declare module.exports: any; -} - -declare module 'less/test/browser/runner-browser-options' { - declare module.exports: any; -} - -declare module 'less/test/browser/runner-browser-spec' { - declare module.exports: any; -} - -declare module 'less/test/browser/runner-console-errors' { - declare module.exports: any; -} - -declare module 'less/test/browser/runner-errors-options' { - declare module.exports: any; -} - -declare module 'less/test/browser/runner-errors-spec' { - declare module.exports: any; -} - -declare module 'less/test/browser/runner-filemanagerPlugin-options' { - declare module.exports: any; -} - -declare module 'less/test/browser/runner-filemanagerPlugin' { - declare module.exports: any; -} - -declare module 'less/test/browser/runner-global-vars-options' { - declare module.exports: any; -} - -declare module 'less/test/browser/runner-global-vars-spec' { - declare module.exports: any; -} - -declare module 'less/test/browser/runner-legacy-options' { - declare module.exports: any; -} - -declare module 'less/test/browser/runner-legacy-spec' { - declare module.exports: any; -} - -declare module 'less/test/browser/runner-main-options' { - declare module.exports: any; -} - -declare module 'less/test/browser/runner-main-spec' { - declare module.exports: any; -} - -declare module 'less/test/browser/runner-modify-vars-options' { - declare module.exports: any; -} - -declare module 'less/test/browser/runner-modify-vars-spec' { - declare module.exports: any; -} - -declare module 'less/test/browser/runner-no-js-errors-options' { - declare module.exports: any; -} - -declare module 'less/test/browser/runner-no-js-errors-spec' { - declare module.exports: any; -} - -declare module 'less/test/browser/runner-postProcessor-options' { - declare module.exports: any; -} - -declare module 'less/test/browser/runner-postProcessor' { - declare module.exports: any; -} - -declare module 'less/test/browser/runner-postProcessorPlugin-options' { - declare module.exports: any; -} - -declare module 'less/test/browser/runner-postProcessorPlugin' { - declare module.exports: any; -} - -declare module 'less/test/browser/runner-preProcessorPlugin-options' { - declare module.exports: any; -} - -declare module 'less/test/browser/runner-preProcessorPlugin' { - declare module.exports: any; -} - -declare module 'less/test/browser/runner-production-options' { - declare module.exports: any; -} - -declare module 'less/test/browser/runner-production-spec' { - declare module.exports: any; -} - -declare module 'less/test/browser/runner-relative-urls-options' { - declare module.exports: any; -} - -declare module 'less/test/browser/runner-relative-urls-spec' { - declare module.exports: any; -} - -declare module 'less/test/browser/runner-rootpath-options' { - declare module.exports: any; -} - -declare module 'less/test/browser/runner-rootpath-relative-options' { - declare module.exports: any; -} - -declare module 'less/test/browser/runner-rootpath-relative-spec' { - declare module.exports: any; -} - -declare module 'less/test/browser/runner-rootpath-spec' { - declare module.exports: any; -} - -declare module 'less/test/browser/runner-strict-units-options' { - declare module.exports: any; -} - -declare module 'less/test/browser/runner-strict-units-spec' { - declare module.exports: any; -} - -declare module 'less/test/browser/runner-VisitorPlugin-options' { - declare module.exports: any; -} - -declare module 'less/test/browser/runner-VisitorPlugin' { - declare module.exports: any; -} - -declare module 'less/test/copy-bom' { - declare module.exports: any; -} - -declare module 'less/test/index' { - declare module.exports: any; -} - -declare module 'less/test/less-bom/plugin/plugin-global' { - declare module.exports: any; -} - -declare module 'less/test/less-bom/plugin/plugin-local' { - declare module.exports: any; -} - -declare module 'less/test/less-bom/plugin/plugin-transitive' { - declare module.exports: any; -} - -declare module 'less/test/less-bom/plugin/plugin-tree-nodes' { - declare module.exports: any; -} - -declare module 'less/test/less-test' { - declare module.exports: any; -} - -declare module 'less/test/less/plugin/plugin-global' { - declare module.exports: any; -} - -declare module 'less/test/less/plugin/plugin-local' { - declare module.exports: any; -} - -declare module 'less/test/less/plugin/plugin-transitive' { - declare module.exports: any; -} - -declare module 'less/test/less/plugin/plugin-tree-nodes' { - declare module.exports: any; -} - -declare module 'less/test/modify-vars' { - declare module.exports: any; -} - -declare module 'less/test/plugins/filemanager/index' { - declare module.exports: any; -} - -declare module 'less/test/plugins/postprocess/index' { - declare module.exports: any; -} - -declare module 'less/test/plugins/preprocess/index' { - declare module.exports: any; -} - -declare module 'less/test/plugins/visitor/index' { - declare module.exports: any; -} - -declare module 'less/test/rhino/test-header' { - declare module.exports: any; -} - -// Filename aliases -declare module 'less/browser.js' { - declare module.exports: $Exports<'less/browser'>; -} -declare module 'less/dist/less.js' { - declare module.exports: $Exports<'less/dist/less'>; -} -declare module 'less/dist/less.min.js' { - declare module.exports: $Exports<'less/dist/less.min'>; -} -declare module 'less/Gruntfile.js' { - declare module.exports: $Exports<'less/Gruntfile'>; -} -declare module 'less/index' { - declare module.exports: $Exports<'less'>; -} -declare module 'less/index.js' { - declare module.exports: $Exports<'less'>; -} -declare module 'less/lib/less-browser/add-default-options.js' { - declare module.exports: $Exports<'less/lib/less-browser/add-default-options'>; -} -declare module 'less/lib/less-browser/bootstrap.js' { - declare module.exports: $Exports<'less/lib/less-browser/bootstrap'>; -} -declare module 'less/lib/less-browser/browser.js' { - declare module.exports: $Exports<'less/lib/less-browser/browser'>; -} -declare module 'less/lib/less-browser/cache.js' { - declare module.exports: $Exports<'less/lib/less-browser/cache'>; -} -declare module 'less/lib/less-browser/error-reporting.js' { - declare module.exports: $Exports<'less/lib/less-browser/error-reporting'>; -} -declare module 'less/lib/less-browser/file-manager.js' { - declare module.exports: $Exports<'less/lib/less-browser/file-manager'>; -} -declare module 'less/lib/less-browser/image-size.js' { - declare module.exports: $Exports<'less/lib/less-browser/image-size'>; -} -declare module 'less/lib/less-browser/index.js' { - declare module.exports: $Exports<'less/lib/less-browser/index'>; -} -declare module 'less/lib/less-browser/log-listener.js' { - declare module.exports: $Exports<'less/lib/less-browser/log-listener'>; -} -declare module 'less/lib/less-browser/utils.js' { - declare module.exports: $Exports<'less/lib/less-browser/utils'>; -} -declare module 'less/lib/less-node/environment.js' { - declare module.exports: $Exports<'less/lib/less-node/environment'>; -} -declare module 'less/lib/less-node/file-manager.js' { - declare module.exports: $Exports<'less/lib/less-node/file-manager'>; -} -declare module 'less/lib/less-node/fs.js' { - declare module.exports: $Exports<'less/lib/less-node/fs'>; -} -declare module 'less/lib/less-node/image-size.js' { - declare module.exports: $Exports<'less/lib/less-node/image-size'>; -} -declare module 'less/lib/less-node/index.js' { - declare module.exports: $Exports<'less/lib/less-node/index'>; -} -declare module 'less/lib/less-node/lessc-helper.js' { - declare module.exports: $Exports<'less/lib/less-node/lessc-helper'>; -} -declare module 'less/lib/less-node/plugin-loader.js' { - declare module.exports: $Exports<'less/lib/less-node/plugin-loader'>; -} -declare module 'less/lib/less-node/url-file-manager.js' { - declare module.exports: $Exports<'less/lib/less-node/url-file-manager'>; -} -declare module 'less/lib/less-rhino/index.js' { - declare module.exports: $Exports<'less/lib/less-rhino/index'>; -} -declare module 'less/lib/less/contexts.js' { - declare module.exports: $Exports<'less/lib/less/contexts'>; -} -declare module 'less/lib/less/data/colors.js' { - declare module.exports: $Exports<'less/lib/less/data/colors'>; -} -declare module 'less/lib/less/data/index.js' { - declare module.exports: $Exports<'less/lib/less/data/index'>; -} -declare module 'less/lib/less/data/unit-conversions.js' { - declare module.exports: $Exports<'less/lib/less/data/unit-conversions'>; -} -declare module 'less/lib/less/environment/abstract-file-manager.js' { - declare module.exports: $Exports<'less/lib/less/environment/abstract-file-manager'>; -} -declare module 'less/lib/less/environment/environment-api.js' { - declare module.exports: $Exports<'less/lib/less/environment/environment-api'>; -} -declare module 'less/lib/less/environment/environment.js' { - declare module.exports: $Exports<'less/lib/less/environment/environment'>; -} -declare module 'less/lib/less/environment/file-manager-api.js' { - declare module.exports: $Exports<'less/lib/less/environment/file-manager-api'>; -} -declare module 'less/lib/less/functions/color-blending.js' { - declare module.exports: $Exports<'less/lib/less/functions/color-blending'>; -} -declare module 'less/lib/less/functions/color.js' { - declare module.exports: $Exports<'less/lib/less/functions/color'>; -} -declare module 'less/lib/less/functions/data-uri.js' { - declare module.exports: $Exports<'less/lib/less/functions/data-uri'>; -} -declare module 'less/lib/less/functions/default.js' { - declare module.exports: $Exports<'less/lib/less/functions/default'>; -} -declare module 'less/lib/less/functions/function-caller.js' { - declare module.exports: $Exports<'less/lib/less/functions/function-caller'>; -} -declare module 'less/lib/less/functions/function-registry.js' { - declare module.exports: $Exports<'less/lib/less/functions/function-registry'>; -} -declare module 'less/lib/less/functions/index.js' { - declare module.exports: $Exports<'less/lib/less/functions/index'>; -} -declare module 'less/lib/less/functions/math-helper.js' { - declare module.exports: $Exports<'less/lib/less/functions/math-helper'>; -} -declare module 'less/lib/less/functions/math.js' { - declare module.exports: $Exports<'less/lib/less/functions/math'>; -} -declare module 'less/lib/less/functions/number.js' { - declare module.exports: $Exports<'less/lib/less/functions/number'>; -} -declare module 'less/lib/less/functions/string.js' { - declare module.exports: $Exports<'less/lib/less/functions/string'>; -} -declare module 'less/lib/less/functions/svg.js' { - declare module.exports: $Exports<'less/lib/less/functions/svg'>; -} -declare module 'less/lib/less/functions/types.js' { - declare module.exports: $Exports<'less/lib/less/functions/types'>; -} -declare module 'less/lib/less/import-manager.js' { - declare module.exports: $Exports<'less/lib/less/import-manager'>; -} -declare module 'less/lib/less/index.js' { - declare module.exports: $Exports<'less/lib/less/index'>; -} -declare module 'less/lib/less/less-error.js' { - declare module.exports: $Exports<'less/lib/less/less-error'>; -} -declare module 'less/lib/less/logger.js' { - declare module.exports: $Exports<'less/lib/less/logger'>; -} -declare module 'less/lib/less/parse-tree.js' { - declare module.exports: $Exports<'less/lib/less/parse-tree'>; -} -declare module 'less/lib/less/parse.js' { - declare module.exports: $Exports<'less/lib/less/parse'>; -} -declare module 'less/lib/less/parser/chunker.js' { - declare module.exports: $Exports<'less/lib/less/parser/chunker'>; -} -declare module 'less/lib/less/parser/parser-input.js' { - declare module.exports: $Exports<'less/lib/less/parser/parser-input'>; -} -declare module 'less/lib/less/parser/parser.js' { - declare module.exports: $Exports<'less/lib/less/parser/parser'>; -} -declare module 'less/lib/less/plugin-manager.js' { - declare module.exports: $Exports<'less/lib/less/plugin-manager'>; -} -declare module 'less/lib/less/plugins/function-importer.js' { - declare module.exports: $Exports<'less/lib/less/plugins/function-importer'>; -} -declare module 'less/lib/less/render.js' { - declare module.exports: $Exports<'less/lib/less/render'>; -} -declare module 'less/lib/less/source-map-builder.js' { - declare module.exports: $Exports<'less/lib/less/source-map-builder'>; -} -declare module 'less/lib/less/source-map-output.js' { - declare module.exports: $Exports<'less/lib/less/source-map-output'>; -} -declare module 'less/lib/less/transform-tree.js' { - declare module.exports: $Exports<'less/lib/less/transform-tree'>; -} -declare module 'less/lib/less/tree/alpha.js' { - declare module.exports: $Exports<'less/lib/less/tree/alpha'>; -} -declare module 'less/lib/less/tree/anonymous.js' { - declare module.exports: $Exports<'less/lib/less/tree/anonymous'>; -} -declare module 'less/lib/less/tree/assignment.js' { - declare module.exports: $Exports<'less/lib/less/tree/assignment'>; -} -declare module 'less/lib/less/tree/attribute.js' { - declare module.exports: $Exports<'less/lib/less/tree/attribute'>; -} -declare module 'less/lib/less/tree/call.js' { - declare module.exports: $Exports<'less/lib/less/tree/call'>; -} -declare module 'less/lib/less/tree/color.js' { - declare module.exports: $Exports<'less/lib/less/tree/color'>; -} -declare module 'less/lib/less/tree/combinator.js' { - declare module.exports: $Exports<'less/lib/less/tree/combinator'>; -} -declare module 'less/lib/less/tree/comment.js' { - declare module.exports: $Exports<'less/lib/less/tree/comment'>; -} -declare module 'less/lib/less/tree/condition.js' { - declare module.exports: $Exports<'less/lib/less/tree/condition'>; -} -declare module 'less/lib/less/tree/debug-info.js' { - declare module.exports: $Exports<'less/lib/less/tree/debug-info'>; -} -declare module 'less/lib/less/tree/detached-ruleset.js' { - declare module.exports: $Exports<'less/lib/less/tree/detached-ruleset'>; -} -declare module 'less/lib/less/tree/dimension.js' { - declare module.exports: $Exports<'less/lib/less/tree/dimension'>; -} -declare module 'less/lib/less/tree/directive.js' { - declare module.exports: $Exports<'less/lib/less/tree/directive'>; -} -declare module 'less/lib/less/tree/element.js' { - declare module.exports: $Exports<'less/lib/less/tree/element'>; -} -declare module 'less/lib/less/tree/expression.js' { - declare module.exports: $Exports<'less/lib/less/tree/expression'>; -} -declare module 'less/lib/less/tree/extend.js' { - declare module.exports: $Exports<'less/lib/less/tree/extend'>; -} -declare module 'less/lib/less/tree/import.js' { - declare module.exports: $Exports<'less/lib/less/tree/import'>; -} -declare module 'less/lib/less/tree/index.js' { - declare module.exports: $Exports<'less/lib/less/tree/index'>; -} -declare module 'less/lib/less/tree/javascript.js' { - declare module.exports: $Exports<'less/lib/less/tree/javascript'>; -} -declare module 'less/lib/less/tree/js-eval-node.js' { - declare module.exports: $Exports<'less/lib/less/tree/js-eval-node'>; -} -declare module 'less/lib/less/tree/keyword.js' { - declare module.exports: $Exports<'less/lib/less/tree/keyword'>; -} -declare module 'less/lib/less/tree/media.js' { - declare module.exports: $Exports<'less/lib/less/tree/media'>; -} -declare module 'less/lib/less/tree/mixin-call.js' { - declare module.exports: $Exports<'less/lib/less/tree/mixin-call'>; -} -declare module 'less/lib/less/tree/mixin-definition.js' { - declare module.exports: $Exports<'less/lib/less/tree/mixin-definition'>; -} -declare module 'less/lib/less/tree/negative.js' { - declare module.exports: $Exports<'less/lib/less/tree/negative'>; -} -declare module 'less/lib/less/tree/node.js' { - declare module.exports: $Exports<'less/lib/less/tree/node'>; -} -declare module 'less/lib/less/tree/operation.js' { - declare module.exports: $Exports<'less/lib/less/tree/operation'>; -} -declare module 'less/lib/less/tree/paren.js' { - declare module.exports: $Exports<'less/lib/less/tree/paren'>; -} -declare module 'less/lib/less/tree/quoted.js' { - declare module.exports: $Exports<'less/lib/less/tree/quoted'>; -} -declare module 'less/lib/less/tree/rule.js' { - declare module.exports: $Exports<'less/lib/less/tree/rule'>; -} -declare module 'less/lib/less/tree/ruleset-call.js' { - declare module.exports: $Exports<'less/lib/less/tree/ruleset-call'>; -} -declare module 'less/lib/less/tree/ruleset.js' { - declare module.exports: $Exports<'less/lib/less/tree/ruleset'>; -} -declare module 'less/lib/less/tree/selector.js' { - declare module.exports: $Exports<'less/lib/less/tree/selector'>; -} -declare module 'less/lib/less/tree/unicode-descriptor.js' { - declare module.exports: $Exports<'less/lib/less/tree/unicode-descriptor'>; -} -declare module 'less/lib/less/tree/unit.js' { - declare module.exports: $Exports<'less/lib/less/tree/unit'>; -} -declare module 'less/lib/less/tree/url.js' { - declare module.exports: $Exports<'less/lib/less/tree/url'>; -} -declare module 'less/lib/less/tree/value.js' { - declare module.exports: $Exports<'less/lib/less/tree/value'>; -} -declare module 'less/lib/less/tree/variable.js' { - declare module.exports: $Exports<'less/lib/less/tree/variable'>; -} -declare module 'less/lib/less/utils.js' { - declare module.exports: $Exports<'less/lib/less/utils'>; -} -declare module 'less/lib/less/visitors/extend-visitor.js' { - declare module.exports: $Exports<'less/lib/less/visitors/extend-visitor'>; -} -declare module 'less/lib/less/visitors/import-sequencer.js' { - declare module.exports: $Exports<'less/lib/less/visitors/import-sequencer'>; -} -declare module 'less/lib/less/visitors/import-visitor.js' { - declare module.exports: $Exports<'less/lib/less/visitors/import-visitor'>; -} -declare module 'less/lib/less/visitors/index.js' { - declare module.exports: $Exports<'less/lib/less/visitors/index'>; -} -declare module 'less/lib/less/visitors/join-selector-visitor.js' { - declare module.exports: $Exports<'less/lib/less/visitors/join-selector-visitor'>; -} -declare module 'less/lib/less/visitors/set-tree-visibility-visitor.js' { - declare module.exports: $Exports<'less/lib/less/visitors/set-tree-visibility-visitor'>; -} -declare module 'less/lib/less/visitors/to-css-visitor.js' { - declare module.exports: $Exports<'less/lib/less/visitors/to-css-visitor'>; -} -declare module 'less/lib/less/visitors/visitor.js' { - declare module.exports: $Exports<'less/lib/less/visitors/visitor'>; -} -declare module 'less/lib/source-map/source-map-0.1.31.js' { - declare module.exports: $Exports<'less/lib/source-map/source-map-0.1.31'>; -} -declare module 'less/lib/source-map/source-map-footer.js' { - declare module.exports: $Exports<'less/lib/source-map/source-map-footer'>; -} -declare module 'less/lib/source-map/source-map-header.js' { - declare module.exports: $Exports<'less/lib/source-map/source-map-header'>; -} -declare module 'less/test/browser/common.js' { - declare module.exports: $Exports<'less/test/browser/common'>; -} -declare module 'less/test/browser/jasmine-jsreporter.js' { - declare module.exports: $Exports<'less/test/browser/jasmine-jsreporter'>; -} -declare module 'less/test/browser/less.js' { - declare module.exports: $Exports<'less/test/browser/less'>; -} -declare module 'less/test/browser/runner-browser-options.js' { - declare module.exports: $Exports<'less/test/browser/runner-browser-options'>; -} -declare module 'less/test/browser/runner-browser-spec.js' { - declare module.exports: $Exports<'less/test/browser/runner-browser-spec'>; -} -declare module 'less/test/browser/runner-console-errors.js' { - declare module.exports: $Exports<'less/test/browser/runner-console-errors'>; -} -declare module 'less/test/browser/runner-errors-options.js' { - declare module.exports: $Exports<'less/test/browser/runner-errors-options'>; -} -declare module 'less/test/browser/runner-errors-spec.js' { - declare module.exports: $Exports<'less/test/browser/runner-errors-spec'>; -} -declare module 'less/test/browser/runner-filemanagerPlugin-options.js' { - declare module.exports: $Exports<'less/test/browser/runner-filemanagerPlugin-options'>; -} -declare module 'less/test/browser/runner-filemanagerPlugin.js' { - declare module.exports: $Exports<'less/test/browser/runner-filemanagerPlugin'>; -} -declare module 'less/test/browser/runner-global-vars-options.js' { - declare module.exports: $Exports<'less/test/browser/runner-global-vars-options'>; -} -declare module 'less/test/browser/runner-global-vars-spec.js' { - declare module.exports: $Exports<'less/test/browser/runner-global-vars-spec'>; -} -declare module 'less/test/browser/runner-legacy-options.js' { - declare module.exports: $Exports<'less/test/browser/runner-legacy-options'>; -} -declare module 'less/test/browser/runner-legacy-spec.js' { - declare module.exports: $Exports<'less/test/browser/runner-legacy-spec'>; -} -declare module 'less/test/browser/runner-main-options.js' { - declare module.exports: $Exports<'less/test/browser/runner-main-options'>; -} -declare module 'less/test/browser/runner-main-spec.js' { - declare module.exports: $Exports<'less/test/browser/runner-main-spec'>; -} -declare module 'less/test/browser/runner-modify-vars-options.js' { - declare module.exports: $Exports<'less/test/browser/runner-modify-vars-options'>; -} -declare module 'less/test/browser/runner-modify-vars-spec.js' { - declare module.exports: $Exports<'less/test/browser/runner-modify-vars-spec'>; -} -declare module 'less/test/browser/runner-no-js-errors-options.js' { - declare module.exports: $Exports<'less/test/browser/runner-no-js-errors-options'>; -} -declare module 'less/test/browser/runner-no-js-errors-spec.js' { - declare module.exports: $Exports<'less/test/browser/runner-no-js-errors-spec'>; -} -declare module 'less/test/browser/runner-postProcessor-options.js' { - declare module.exports: $Exports<'less/test/browser/runner-postProcessor-options'>; -} -declare module 'less/test/browser/runner-postProcessor.js' { - declare module.exports: $Exports<'less/test/browser/runner-postProcessor'>; -} -declare module 'less/test/browser/runner-postProcessorPlugin-options.js' { - declare module.exports: $Exports<'less/test/browser/runner-postProcessorPlugin-options'>; -} -declare module 'less/test/browser/runner-postProcessorPlugin.js' { - declare module.exports: $Exports<'less/test/browser/runner-postProcessorPlugin'>; -} -declare module 'less/test/browser/runner-preProcessorPlugin-options.js' { - declare module.exports: $Exports<'less/test/browser/runner-preProcessorPlugin-options'>; -} -declare module 'less/test/browser/runner-preProcessorPlugin.js' { - declare module.exports: $Exports<'less/test/browser/runner-preProcessorPlugin'>; -} -declare module 'less/test/browser/runner-production-options.js' { - declare module.exports: $Exports<'less/test/browser/runner-production-options'>; -} -declare module 'less/test/browser/runner-production-spec.js' { - declare module.exports: $Exports<'less/test/browser/runner-production-spec'>; -} -declare module 'less/test/browser/runner-relative-urls-options.js' { - declare module.exports: $Exports<'less/test/browser/runner-relative-urls-options'>; -} -declare module 'less/test/browser/runner-relative-urls-spec.js' { - declare module.exports: $Exports<'less/test/browser/runner-relative-urls-spec'>; -} -declare module 'less/test/browser/runner-rootpath-options.js' { - declare module.exports: $Exports<'less/test/browser/runner-rootpath-options'>; -} -declare module 'less/test/browser/runner-rootpath-relative-options.js' { - declare module.exports: $Exports<'less/test/browser/runner-rootpath-relative-options'>; -} -declare module 'less/test/browser/runner-rootpath-relative-spec.js' { - declare module.exports: $Exports<'less/test/browser/runner-rootpath-relative-spec'>; -} -declare module 'less/test/browser/runner-rootpath-spec.js' { - declare module.exports: $Exports<'less/test/browser/runner-rootpath-spec'>; -} -declare module 'less/test/browser/runner-strict-units-options.js' { - declare module.exports: $Exports<'less/test/browser/runner-strict-units-options'>; -} -declare module 'less/test/browser/runner-strict-units-spec.js' { - declare module.exports: $Exports<'less/test/browser/runner-strict-units-spec'>; -} -declare module 'less/test/browser/runner-VisitorPlugin-options.js' { - declare module.exports: $Exports<'less/test/browser/runner-VisitorPlugin-options'>; -} -declare module 'less/test/browser/runner-VisitorPlugin.js' { - declare module.exports: $Exports<'less/test/browser/runner-VisitorPlugin'>; -} -declare module 'less/test/copy-bom.js' { - declare module.exports: $Exports<'less/test/copy-bom'>; -} -declare module 'less/test/index.js' { - declare module.exports: $Exports<'less/test/index'>; -} -declare module 'less/test/less-bom/plugin/plugin-global.js' { - declare module.exports: $Exports<'less/test/less-bom/plugin/plugin-global'>; -} -declare module 'less/test/less-bom/plugin/plugin-local.js' { - declare module.exports: $Exports<'less/test/less-bom/plugin/plugin-local'>; -} -declare module 'less/test/less-bom/plugin/plugin-transitive.js' { - declare module.exports: $Exports<'less/test/less-bom/plugin/plugin-transitive'>; -} -declare module 'less/test/less-bom/plugin/plugin-tree-nodes.js' { - declare module.exports: $Exports<'less/test/less-bom/plugin/plugin-tree-nodes'>; -} -declare module 'less/test/less-test.js' { - declare module.exports: $Exports<'less/test/less-test'>; -} -declare module 'less/test/less/plugin/plugin-global.js' { - declare module.exports: $Exports<'less/test/less/plugin/plugin-global'>; -} -declare module 'less/test/less/plugin/plugin-local.js' { - declare module.exports: $Exports<'less/test/less/plugin/plugin-local'>; -} -declare module 'less/test/less/plugin/plugin-transitive.js' { - declare module.exports: $Exports<'less/test/less/plugin/plugin-transitive'>; -} -declare module 'less/test/less/plugin/plugin-tree-nodes.js' { - declare module.exports: $Exports<'less/test/less/plugin/plugin-tree-nodes'>; -} -declare module 'less/test/modify-vars.js' { - declare module.exports: $Exports<'less/test/modify-vars'>; -} -declare module 'less/test/plugins/filemanager/index.js' { - declare module.exports: $Exports<'less/test/plugins/filemanager/index'>; -} -declare module 'less/test/plugins/postprocess/index.js' { - declare module.exports: $Exports<'less/test/plugins/postprocess/index'>; -} -declare module 'less/test/plugins/preprocess/index.js' { - declare module.exports: $Exports<'less/test/plugins/preprocess/index'>; -} -declare module 'less/test/plugins/visitor/index.js' { - declare module.exports: $Exports<'less/test/plugins/visitor/index'>; -} -declare module 'less/test/rhino/test-header.js' { - declare module.exports: $Exports<'less/test/rhino/test-header'>; -} diff --git a/flow-typed/npm/lodash-webpack-plugin_vx.x.x.js b/flow-typed/npm/lodash-webpack-plugin_vx.x.x.js deleted file mode 100644 index eefaf9d..0000000 --- a/flow-typed/npm/lodash-webpack-plugin_vx.x.x.js +++ /dev/null @@ -1,46 +0,0 @@ -// flow-typed signature: 19f56f4efe89f0eb10025a846874e21e -// flow-typed version: <>/lodash-webpack-plugin_v^0.11.5/flow_v0.77.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'lodash-webpack-plugin' - * - * Fill this stub out by replacing all the `any` types. - * - * Once filled out, we encourage you to share your work with the - * community by sending a pull request to: - * https://github.com/flowtype/flow-typed - */ - -declare module 'lodash-webpack-plugin' { - declare module.exports: any; -} - -/** - * We include stubs for each file inside this npm package in case you need to - * require those files directly. Feel free to delete any files that aren't - * needed. - */ -declare module 'lodash-webpack-plugin/lib/index' { - declare module.exports: any; -} - -declare module 'lodash-webpack-plugin/lib/listing' { - declare module.exports: any; -} - -declare module 'lodash-webpack-plugin/lib/mapping' { - declare module.exports: any; -} - -// Filename aliases -declare module 'lodash-webpack-plugin/lib/index.js' { - declare module.exports: $Exports<'lodash-webpack-plugin/lib/index'>; -} -declare module 'lodash-webpack-plugin/lib/listing.js' { - declare module.exports: $Exports<'lodash-webpack-plugin/lib/listing'>; -} -declare module 'lodash-webpack-plugin/lib/mapping.js' { - declare module.exports: $Exports<'lodash-webpack-plugin/lib/mapping'>; -} 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 5ba8b3e..0000000 --- a/flow-typed/npm/lodash_v4.x.x.js +++ /dev/null @@ -1,5991 +0,0 @@ -// flow-typed signature: b5d718f00f6b115d706f046e5c36b6ea -// flow-typed version: 5240bd2a9a/lodash_v4.x.x/flow_>=v0.63.x - -declare module "lodash" { - 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 NestedArray = Array>; - - declare type matchesIterateeShorthand = Object; - declare type matchesPropertyIterateeShorthand = [string, any]; - declare type propertyIterateeShorthand = string; - - declare type OPredicate = - | ((value: A, key: string, object: O) => any) - | matchesIterateeShorthand - | matchesPropertyIterateeShorthand - | propertyIterateeShorthand; - - declare type OIterateeWithResult = - | Object - | string - | ((value: V, key: string, object: O) => R); - declare type OIteratee = OIterateeWithResult; - declare type OFlatMapIteratee = OIterateeWithResult>; - - 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 FlatMapIteratee = - | ((item: T, index: number, array: ?$ReadOnlyArray) => Array) - | Object - | string; - declare type Comparator = (item: T, item2: T) => boolean; - - declare type MapIterator = - | ((item: T, index: number, array: Array) => U) - | propertyIterateeShorthand; - - 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?: ?Array, size?: ?number): Array>; - compact(array?: ?Array): Array; - concat(base?: ?$ReadOnlyArray, ...elements: Array): Array; - difference(array?: ?$ReadOnlyArray, ...values: Array>): Array; - differenceBy( - array?: ?$ReadOnlyArray, - values?: ?$ReadOnlyArray, - iteratee?: ?ValueOnlyIteratee - ): T[]; - differenceWith(array?: ?$ReadOnlyArray, values?: ?$ReadOnlyArray, comparator?: ?Comparator): T[]; - drop(array?: ?Array, n?: ?number): Array; - dropRight(array?: ?Array, n?: ?number): Array; - dropRightWhile(array?: ?Array, predicate?: ?Predicate): Array; - dropWhile(array?: ?Array, 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?: ?Array | X>): Array; - flattenDeep(array?: ?any[]): Array; - flattenDepth(array?: ?any[], depth?: ?number): any[]; - fromPairs(pairs?: ?Array<[A, B]>): { [key: A]: B }; - head(array: ?$ReadOnlyArray): T; - indexOf(array: Array, value: T, fromIndex?: number): number; - indexOf(array: void | null, value?: ?T, fromIndex?: ?number): -1; - initial(array: ?Array): Array; - intersection(...arrays?: Array>): Array; - //Workaround until (...parameter: T, parameter2: U) works - intersectionBy(a1?: ?Array, iteratee?: ?ValueOnlyIteratee): Array; - intersectionBy( - a1?: ?Array, - a2?: ?Array, - iteratee?: ?ValueOnlyIteratee - ): Array; - intersectionBy( - a1?: ?Array, - a2?: ?Array, - a3?: ?Array, - iteratee?: ?ValueOnlyIteratee - ): Array; - intersectionBy( - a1?: ?Array, - a2?: ?Array, - a3?: ?Array, - a4?: ?Array, - iteratee?: ?ValueOnlyIteratee - ): Array; - //Workaround until (...parameter: T, parameter2: U) works - intersectionWith(a1?: ?Array, comparator?: ?Comparator): Array; - intersectionWith( - a1?: ?Array, - a2?: ?Array, - comparator?: ?Comparator - ): Array; - intersectionWith( - a1?: ?Array, - a2?: ?Array, - a3?: ?Array, - comparator?: ?Comparator - ): Array; - intersectionWith( - a1?: ?Array, - a2?: ?Array, - a3?: ?Array, - a4?: ?Array, - comparator?: ?Comparator - ): Array; - join(array: Array, separator?: ?string): string; - join(array: void | null, separator?: ?string): ''; - last(array: ?$ReadOnlyArray): T; - lastIndexOf(array: Array, value?: ?T, fromIndex?: ?number): number; - lastIndexOf(array: void | null, value?: ?T, fromIndex?: ?number): -1; - nth(array: T[], n?: ?number): T; - nth(array: void | null, n?: ?number): void; - pull(array: Array, ...values?: Array): Array; - pull(array: T, ...values?: Array): T; - pullAll(array: Array, values?: ?Array): Array; - pullAll(array: T, values?: ?Array): T; - pullAllBy( - array: Array, - values?: ?Array, - iteratee?: ?ValueOnlyIteratee - ): Array; - pullAllBy( - array: T, - values?: ?Array, - iteratee?: ?ValueOnlyIteratee - ): T; - pullAllWith(array: T[], values?: ?T[], comparator?: ?Function): T[]; - pullAllWith(array: T, values?: ?Array, comparator?: ?Function): T; - pullAt(array?: ?Array, ...indexed?: Array): Array; - pullAt(array?: ?Array, indexed?: ?Array): 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: Array, value: T): number; - sortedIndex(array: void | null, value: ?T): 0; - sortedIndexBy( - array: Array, - value?: ?T, - iteratee?: ?ValueOnlyIteratee - ): number; - sortedIndexBy( - array: void | null, - value?: ?T, - iteratee?: ?ValueOnlyIteratee - ): 0; - sortedIndexOf(array: Array, value: T): number; - sortedIndexOf(array: void | null, value?: ?T): -1; - sortedLastIndex(array: Array, value: T): number; - sortedLastIndex(array: void | null, value?: ?T): 0; - sortedLastIndexBy( - array: Array, - value: T, - iteratee?: ValueOnlyIteratee - ): number; - sortedLastIndexBy( - array: void | null, - value?: ?T, - iteratee?: ?ValueOnlyIteratee - ): 0; - sortedLastIndexOf(array: Array, value: T): number; - sortedLastIndexOf(array: void | null, value?: ?T): -1; - sortedUniq(array?: ?Array): Array; - sortedUniqBy(array?: ?Array, iteratee?: ?(value: T) => mixed): Array; - tail(array?: ?Array): Array; - take(array?: ?Array, n?: ?number): Array; - takeRight(array?: ?Array, n?: ?number): Array; - takeRightWhile(array?: ?Array, predicate?: ?Predicate): Array; - takeWhile(array?: ?Array, predicate?: ?Predicate): Array; - union(...arrays?: Array>): Array; - //Workaround until (...parameter: T, parameter2: U) works - unionBy(a1?: ?Array, iteratee?: ?ValueOnlyIteratee): Array; - unionBy( - a1?: ?Array, - a2: Array, - iteratee?: ValueOnlyIteratee - ): Array; - unionBy( - a1: Array, - a2: Array, - a3: Array, - iteratee?: ValueOnlyIteratee - ): Array; - unionBy( - a1: Array, - a2: Array, - a3: Array, - a4: Array, - iteratee?: ValueOnlyIteratee - ): Array; - //Workaround until (...parameter: T, parameter2: U) works - unionWith(a1?: ?Array, comparator?: ?Comparator): Array; - unionWith( - a1: Array, - a2: Array, - comparator?: Comparator - ): Array; - unionWith( - a1: Array, - a2: Array, - a3: Array, - comparator?: Comparator - ): Array; - unionWith( - a1: Array, - a2: Array, - a3: Array, - a4: Array, - comparator?: Comparator - ): Array; - uniq(array?: ?Array): Array; - uniqBy(array?: ?Array, iteratee?: ?ValueOnlyIteratee): Array; - uniqWith(array?: ?Array, comparator?: ?Comparator): Array; - unzip(array?: ?Array): Array; - unzipWith(array: ?Array, iteratee?: ?Iteratee): Array; - without(array?: ?$ReadOnlyArray, ...values?: Array): Array; - xor(...array: Array>): Array; - //Workaround until (...parameter: T, parameter2: U) works - xorBy(a1?: ?Array, iteratee?: ?ValueOnlyIteratee): Array; - xorBy( - a1: Array, - a2: Array, - iteratee?: ValueOnlyIteratee - ): Array; - xorBy( - a1: Array, - a2: Array, - a3: Array, - iteratee?: ValueOnlyIteratee - ): Array; - xorBy( - a1: Array, - a2: Array, - a3: Array, - a4: Array, - iteratee?: ValueOnlyIteratee - ): Array; - //Workaround until (...parameter: T, parameter2: U) works - xorWith(a1?: ?Array, comparator?: ?Comparator): Array; - xorWith( - a1: Array, - a2: Array, - comparator?: Comparator - ): Array; - xorWith( - a1: Array, - a2: Array, - a3: Array, - comparator?: Comparator - ): Array; - xorWith( - a1: Array, - a2: Array, - a3: Array, - a4: Array, - comparator?: Comparator - ): Array; - zip(a1?: ?A[], a2?: ?B[]): Array<[A, B]>; - zip(a1: A[], a2: B[], a3: C[]): Array<[A, B, C]>; - zip(a1: A[], a2: B[], a3: C[], a4: D[]): Array<[A, B, C, D]>; - zip( - a1: A[], - a2: B[], - a3: C[], - a4: D[], - a5: E[] - ): Array<[A, B, C, D, E]>; - - zipObject(props: Array, values?: ?Array): { [key: K]: V }; - zipObject(props: void | null, values?: ?Array): {}; - zipObjectDeep(props: any[], values?: ?any): Object; - zipObjectDeep(props: void | null, values?: ?any): {}; - - zipWith(a1?: ?Array): Array<[A]>; - zipWith(a1: Array, iteratee: (A) => T): Array; - - zipWith(a1: Array, a2: Array): Array<[A, B]>; - zipWith( - a1: Array, - a2: Array, - iteratee: (A, B) => T - ): Array; - - zipWith( - a1: Array, - a2: Array, - a3: Array - ): Array<[A, B, C]>; - zipWith( - a1: Array, - a2: Array, - a3: Array, - iteratee: (A, B, C) => T - ): Array; - - zipWith( - a1: Array, - a2: Array, - a3: Array, - a4: Array - ): Array<[A, B, C, D]>; - zipWith( - a1: Array, - a2: Array, - a3: Array, - a4: Array, - iteratee: (A, B, C, D) => T - ): Array; - - // Collection - countBy(array: Array, iteratee?: ?ValueOnlyIteratee): Object; - countBy(array: void | null, iteratee?: ?ValueOnlyIteratee): {}; - countBy(object: T, iteratee?: ?ValueOnlyIteratee): Object; - // alias of _.forEach - each(array: $ReadOnlyArray, iteratee?: ?Iteratee): Array; - each(array: T, iteratee?: ?Iteratee): T; - each(object: T, iteratee?: ?OIteratee): T; - // alias of _.forEachRight - eachRight(array: $ReadOnlyArray, iteratee?: ?Iteratee): Array; - eachRight(array: T, iteratee?: ?Iteratee): T; - eachRight(object: T, iteratee?: OIteratee): T; - every(array?: ?$ReadOnlyArray, iteratee?: ?Iteratee): boolean; - every(object: T, iteratee?: OIteratee): 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 - ): V; - findLast( - array: ?$ReadOnlyArray, - predicate?: ?Predicate, - fromIndex?: ?number - ): T | void; - findLast( - object: T, - predicate?: ?OPredicate - ): V; - flatMap( - array?: ?$ReadOnlyArray, - iteratee?: ?FlatMapIteratee - ): Array; - flatMap( - object: T, - iteratee?: OFlatMapIteratee - ): Array; - flatMapDeep( - array?: ?$ReadOnlyArray, - iteratee?: ?FlatMapIteratee - ): Array; - flatMapDeep( - object: T, - iteratee?: ?OFlatMapIteratee - ): Array; - flatMapDepth( - array?: ?Array, - iteratee?: ?FlatMapIteratee, - depth?: ?number - ): Array; - flatMapDepth( - object: T, - iteratee?: OFlatMapIteratee, - depth?: number - ): Array; - forEach(array: $ReadOnlyArray, iteratee?: ?Iteratee): Array; - forEach(array: T, iteratee?: ?Iteratee): T; - forEach(object: T, iteratee?: ?OIteratee): T; - forEachRight(array: $ReadOnlyArray, iteratee?: ?Iteratee): Array; - forEachRight(array: T, iteratee?: ?Iteratee): T; - forEachRight(object: T, iteratee?: ?OIteratee): 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: T, value: any, fromIndex?: number): boolean; - includes(str: string, value: string, fromIndex?: number): boolean; - invokeMap( - array?: ?Array, - path?: ?((value: T) => Array | string) | Array | string, - ...args?: Array - ): Array; - invokeMap( - object: T, - path: ((value: any) => Array | string) | Array | string, - ...args?: Array - ): 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?: ?Array, iteratee?: ?MapIterator): Array; - map( - array: ?$ReadOnlyArray, - iteratee?: ReadOnlyMapIterator - ): Array, - map( - 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?: ?Array, - predicate?: ?Predicate - ): [Array, Array]; - partition( - object: T, - predicate?: OPredicate - ): [Array, Array]; - reduce( - array: Array, - iteratee?: ( - accumulator: U, - value: T, - index: number, - array: ?Array - ) => U, - accumulator?: U - ): U; - reduce( - array: void | null, - iteratee?: ?( - accumulator: U, - value: T, - index: number, - array: ?Array - ) => U, - accumulator?: ?U - ): void | null; - reduce( - 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: number, - array: ?Array - ) => U, - accumulator?: ?U - ): void | null; - reduceRight( - array: Array, - iteratee?: ?( - accumulator: U, - value: T, - index: number, - array: ?Array - ) => U, - accumulator?: ?U - ): U; - reduceRight( - 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(array: ?Array): T; - sample(object: T): V; - sampleSize(array?: ?Array, n?: ?number): Array; - sampleSize(object: T, n?: number): Array; - shuffle(array: ?Array): Array; - shuffle(object: T): Array; - size(collection: $ReadOnlyArray | Object | string): number; - some(array: ?$ReadOnlyArray, predicate?: Predicate): boolean; - some(array: void | null, predicate?: ?Predicate): false; - some( - object?: ?T, - predicate?: OPredicate - ): boolean; - sortBy( - array: ?$ReadOnlyArray, - ...iteratees?: $ReadOnlyArray> - ): Array; - sortBy( - array: ?$ReadOnlyArray, - iteratees?: $ReadOnlyArray> - ): Array; - sortBy( - object: T, - ...iteratees?: Array> - ): 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(func: Function, thisArg: any, ...partials: Array): Function; - bindKey(obj?: ?Object, key?: ?string, ...partials?: Array): Function; - curry: Curry; - curry(func: Function, arity?: number): Function; - curryRight(func: Function, arity?: number): Function; - debounce(func: F, wait?: number, options?: DebounceOptions): F; - defer(func: Function, ...args?: Array): TimeoutID; - delay(func: Function, wait: number, ...args?: Array): TimeoutID; - flip(func: Function): Function; - memoize(func: F, resolver?: Function): F; - negate(predicate: Function): Function; - once(func: Function): Function; - overArgs(func?: ?Function, ...transforms?: Array): Function; - overArgs(func?: ?Function, transforms?: ?Array): Function; - partial(func: Function, ...partials: any[]): Function; - partialRight(func: Function, ...partials: Array): Function; - partialRight(func: Function, partials: Array): Function; - rearg(func: Function, ...indexes: Array): Function; - rearg(func: Function, indexes: Array): Function; - rest(func: Function, start?: number): Function; - spread(func: Function): Function; - throttle( - func: Function, - wait?: number, - options?: ThrottleOptions - ): Function; - unary(func: Function): Function; - wrap(value?: any, wrapper?: ?Function): Function; - - // Lang - castArray(value: *): any[]; - 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 & { [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: Array): true; - isArray(value: any): false; - isArrayBuffer(value: ArrayBuffer): true; - isArrayBuffer(value: any): false; - isArrayLike(value: Array | string | {length: number}): true; - isArrayLike(value: any): false; - isArrayLikeObject(value: {length: number} | Array): 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: Object): true; - isObject(value: any): false; - isObjectLike(value: void | null): false; - isObjectLike(value: any): boolean; - isPlainObject(value: Object): true; - isPlainObject(value: any): false; - 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: ?Array): T; - maxBy(array: ?$ReadOnlyArray, iteratee?: Iteratee): T; - mean(array: Array<*>): number; - meanBy(array: Array, iteratee?: Iteratee): number; - min(array: ?Array): 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: Array<*>): number; - sumBy(array: Array, 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?: Array): 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: Array): Array; - at(object?: ?Object, paths: Array): Array; - create(prototype: T, properties: Object): $Supertype; - create(prototype: any, properties: void | null): {}; - defaults(object?: ?Object, ...sources?: Array): Object; - defaultsDeep(object?: ?Object, ...sources?: 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, 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?: ?$ReadOnlyArray | string | number, - defaultValue?: any - ): any; - has(object: Object, path: Array | string): boolean; - has(object: Object, path: void | null): false; - has(object: void | null, path?: ?Array | ?string): false; - hasIn(object: Object, path: Array | string): boolean; - hasIn(object: Object, path: void | null): false; - hasIn(object: void | null, path?: ?Array | ?string): 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?: ?Array | string, - ...args?: Array - ): any; - keys(object?: ?{ [key: K]: any }): 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?: Array): 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: Array): Object; - omit(object?: ?Object, props: Array): Object; - omitBy( - object: T, - predicate?: ?OPredicate - ): Object; - omitBy( - object: void | null, - predicate?: ?OPredicate - ): {}; - pick(object?: ?Object, ...props: Array): Object; - pick(object?: ?Object, props: Array): Object; - pickBy( - object: T, - predicate?: ?OPredicate - ): Object; - pickBy( - object: void | null, - predicate?: ?OPredicate - ): {}; - result( - object?: ?Object, - path?: ?Array | string, - defaultValue?: any - ): any; - set(object: Object, path?: ?Array | string, value: any): Object; - set( - object: T, - path?: ?Array | string, - value?: ?any): T; - setWith( - object: T, - path?: ?Array | string, - value: any, - customizer?: (nsValue: any, key: string, nsObject: T) => any - ): Object; - setWith( - object: T, - path?: ?Array | string, - value?: ?any, - customizer?: ?(nsValue: any, key: string, nsObject: T) => any - ): T; - toPairs(object?: ?Object | Array<*>): 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: Object, path?: ?Array | ?string): boolean; - unset(object: void | null, path?: ?Array | ?string): true; - update(object: Object, path: string[] | string, updater: Function): Object; - update( - object: T, - path?: ?string[] | ?string, - updater?: ?Function): T; - updateWith( - object: Object, - path?: ?string[] | ?string, - updater?: ?Function, - customizer?: ?Function - ): Object; - updateWith( - object: T, - path?: ?string[] | ?string, - 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: Array): any; - bindAll(object: Object, methodNames?: ?Array): Object; - bindAll(object: T, methodNames?: ?Array): T; - bindAll(object: Object, ...methodNames: Array): Object; - cond(pairs?: ?NestedArray): Function; - conforms(source?: ?Object): Function; - constant(value: T): () => T; - 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; - defaultTo(value: T1, defaultValue: T2): T2; - flow: ($ComposeReverse & (funcs: Array) => Function); - flowRight: ($Compose & (funcs: Array) => Function); - identity(value: T): T; - iteratee(func?: any): Function; - matches(source?: ?Object): Function; - matchesProperty(path?: ?Array | string, srcValue: any): Function; - method(path?: ?Array | string, ...args?: Array): Function; - methodOf(object?: ?Object, ...args?: Array): Function; - mixin( - object?: T, - source: Object, - options?: { chain: boolean } - ): T; - noConflict(): Lodash; - noop(...args: Array): void; - nthArg(n?: ?number): Function; - over(...iteratees: Array): Function; - over(iteratees: Array): Function; - overEvery(...predicates: Array): Function; - overEvery(predicates: Array): Function; - overSome(...predicates: Array): Function; - overSome(predicates: Array): Function; - property(path?: ?Array | string): 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?: Array): 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 __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 NestedArray = Array>; - - declare type matchesIterateeShorthand = Object; - declare type matchesPropertyIterateeShorthand = [string, any]; - declare type propertyIterateeShorthand = string; - - declare type OPredicate = - | ((value: A) => any) - | matchesIterateeShorthand - | matchesPropertyIterateeShorthand - | propertyIterateeShorthand; - - declare type OIterateeWithResult = Object | string | ((value: V) => R); - declare type OIteratee = OIterateeWithResult; - declare type OFlatMapIteratee = 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 FlatMapIteratee = - | ((item: T) => Array) - | Object - | string; - 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: Array) => Array>; - chunk(size: number, array: Array): 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) => T[]; - difference(values: $ReadOnlyArray, array: $ReadOnlyArray): T[]; - differenceBy( - iteratee: ValueOnlyIteratee - ): ((values: $ReadOnlyArray) => (array: $ReadOnlyArray) => T[]) & - ((values: $ReadOnlyArray, array: $ReadOnlyArray) => T[]); - differenceBy( - iteratee: ValueOnlyIteratee, - values: $ReadOnlyArray - ): (array: $ReadOnlyArray) => T[]; - differenceBy( - iteratee: ValueOnlyIteratee, - values: $ReadOnlyArray, - array: $ReadOnlyArray - ): T[]; - differenceWith( - comparator: Comparator, - ): ((first: $ReadOnly) => (second: $ReadOnly) => T[]) & - ((first: $ReadOnly, second: $ReadOnly) => T[]); - differenceWith( - comparator: Comparator, - first: $ReadOnly, - ): (second: $ReadOnly) => T[]; - differenceWith( - comparator: Comparator, - first: $ReadOnly, - second: $ReadOnly - ): T[]; - drop(n: number): (array: Array) => Array; - drop(n: number, array: Array): Array; - dropLast(n: number): (array: Array) => Array; - dropLast(n: number, array: Array): Array; - dropRight(n: number): (array: Array) => Array; - dropRight(n: number, array: Array): Array; - dropRightWhile(predicate: Predicate): (array: Array) => Array; - dropRightWhile(predicate: Predicate, array: Array): Array; - dropWhile(predicate: Predicate): (array: Array) => Array; - dropWhile(predicate: Predicate, array: Array): Array; - dropLastWhile(predicate: Predicate): (array: Array) => Array; - dropLastWhile(predicate: Predicate, array: Array): 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: Array | X>): Array; - unnest(array: Array | X>): Array; - flattenDeep(array: any[]): Array; - flattenDepth(depth: number): (array: any[]) => any[]; - flattenDepth(depth: number, array: any[]): any[]; - fromPairs(pairs: Array<[A, B]>): { [key: A]: B }; - head(array: $ReadOnlyArray): T; - indexOf(value: T): (array: Array) => number; - indexOf(value: T, array: Array): number; - indexOfFrom( - value: T - ): ((fromIndex: number) => (array: Array) => number) & - ((fromIndex: number, array: Array) => number); - indexOfFrom(value: T, fromIndex: number): (array: Array) => number; - indexOfFrom(value: T, fromIndex: number, array: Array): number; - initial(array: Array): Array; - init(array: Array): Array; - intersection(a1: Array): (a2: Array) => Array; - intersection(a1: Array, a2: Array): Array; - intersectionBy( - iteratee: ValueOnlyIteratee - ): ((a1: Array) => (a2: Array) => Array) & - ((a1: Array, a2: Array) => Array); - intersectionBy( - iteratee: ValueOnlyIteratee, - a1: Array - ): (a2: Array) => Array; - intersectionBy( - iteratee: ValueOnlyIteratee, - a1: Array, - a2: Array - ): Array; - intersectionWith( - comparator: Comparator - ): ((a1: Array) => (a2: Array) => Array) & - ((a1: Array, a2: Array) => Array); - intersectionWith( - comparator: Comparator, - a1: Array - ): (a2: Array) => Array; - intersectionWith( - comparator: Comparator, - a1: Array, - a2: Array - ): Array; - join(separator: string): (array: Array) => string; - join(separator: string, array: Array): string; - last(array: Array): T; - lastIndexOf(value: T): (array: Array) => number; - lastIndexOf(value: T, array: Array): number; - lastIndexOfFrom( - value: T - ): ((fromIndex: number) => (array: Array) => number) & - ((fromIndex: number, array: Array) => number); - lastIndexOfFrom( - value: T, - fromIndex: number - ): (array: Array) => number; - lastIndexOfFrom(value: T, fromIndex: number, array: Array): number; - nth(n: number): (array: T[]) => T; - nth(n: number, array: T[]): T; - pull(value: T): (array: Array) => Array; - pull(value: T, array: Array): Array; - pullAll(values: Array): (array: Array) => Array; - pullAll(values: Array, array: Array): Array; - pullAllBy( - iteratee: ValueOnlyIteratee - ): ((values: Array) => (array: Array) => Array) & - ((values: Array, array: Array) => Array); - pullAllBy( - iteratee: ValueOnlyIteratee, - values: Array - ): (array: Array) => Array; - pullAllBy( - iteratee: ValueOnlyIteratee, - values: Array, - array: Array - ): Array; - pullAllWith( - comparator: Function - ): ((values: T[]) => (array: T[]) => T[]) & - ((values: T[], array: T[]) => T[]); - pullAllWith(comparator: Function, values: T[]): (array: T[]) => T[]; - pullAllWith(comparator: Function, values: T[], array: T[]): T[]; - 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: Array) => Array) & - ((end: number, array: Array) => Array); - slice(start: number, end: number): (array: Array) => Array; - slice(start: number, end: number, array: Array): Array; - sortedIndex(value: T): (array: Array) => number; - sortedIndex(value: T, array: Array): number; - sortedIndexBy( - iteratee: ValueOnlyIteratee - ): ((value: T) => (array: Array) => number) & - ((value: T, array: Array) => number); - sortedIndexBy( - iteratee: ValueOnlyIteratee, - value: T - ): (array: Array) => number; - sortedIndexBy( - iteratee: ValueOnlyIteratee, - value: T, - array: Array - ): number; - sortedIndexOf(value: T): (array: Array) => number; - sortedIndexOf(value: T, array: Array): number; - sortedLastIndex(value: T): (array: Array) => number; - sortedLastIndex(value: T, array: Array): number; - sortedLastIndexBy( - iteratee: ValueOnlyIteratee - ): ((value: T) => (array: Array) => number) & - ((value: T, array: Array) => number); - sortedLastIndexBy( - iteratee: ValueOnlyIteratee, - value: T - ): (array: Array) => number; - sortedLastIndexBy( - iteratee: ValueOnlyIteratee, - value: T, - array: Array - ): number; - sortedLastIndexOf(value: T): (array: Array) => number; - sortedLastIndexOf(value: T, array: Array): number; - sortedUniq(array: Array): Array; - sortedUniqBy( - iteratee: (value: T) => mixed - ): (array: Array) => Array; - sortedUniqBy(iteratee: (value: T) => mixed, array: Array): Array; - tail(array: Array): Array; - take(n: number): (array: Array) => Array; - take(n: number, array: Array): Array; - takeRight(n: number): (array: Array) => Array; - takeRight(n: number, array: Array): Array; - takeLast(n: number): (array: Array) => Array; - takeLast(n: number, array: Array): Array; - takeRightWhile(predicate: Predicate): (array: Array) => Array; - takeRightWhile(predicate: Predicate, array: Array): Array; - takeLastWhile(predicate: Predicate): (array: Array) => Array; - takeLastWhile(predicate: Predicate, array: Array): Array; - takeWhile(predicate: Predicate): (array: Array) => Array; - takeWhile(predicate: Predicate, array: Array): Array; - union(a1: Array): (a2: Array) => Array; - union(a1: Array, a2: Array): Array; - unionBy( - iteratee: ValueOnlyIteratee - ): ((a1: Array) => (a2: Array) => Array) & - ((a1: Array, a2: Array) => Array); - unionBy( - iteratee: ValueOnlyIteratee, - a1: Array - ): (a2: Array) => Array; - unionBy( - iteratee: ValueOnlyIteratee, - a1: Array, - a2: Array - ): Array; - unionWith( - comparator: Comparator - ): ((a1: Array) => (a2: Array) => Array) & - ((a1: Array, a2: Array) => Array); - unionWith( - comparator: Comparator, - a1: Array - ): (a2: Array) => Array; - unionWith( - comparator: Comparator, - a1: Array, - a2: Array - ): Array; - uniq(array: Array): Array; - uniqBy(iteratee: ValueOnlyIteratee): (array: Array) => Array; - uniqBy(iteratee: ValueOnlyIteratee, array: Array): Array; - uniqWith(comparator: Comparator): (array: Array) => Array; - uniqWith(comparator: Comparator, array: Array): Array; - unzip(array: Array): Array; - unzipWith(iteratee: Iteratee): (array: Array) => Array; - unzipWith(iteratee: Iteratee, array: Array): Array; - without(values: Array): (array: Array) => Array; - without(values: Array, array: Array): Array; - xor(a1: Array): (a2: Array) => Array; - xor(a1: Array, a2: Array): Array; - symmetricDifference(a1: Array): (a2: Array) => Array; - symmetricDifference(a1: Array, a2: Array): Array; - xorBy( - iteratee: ValueOnlyIteratee - ): ((a1: Array) => (a2: Array) => Array) & - ((a1: Array, a2: Array) => Array); - xorBy( - iteratee: ValueOnlyIteratee, - a1: Array - ): (a2: Array) => Array; - xorBy( - iteratee: ValueOnlyIteratee, - a1: Array, - a2: Array - ): Array; - symmetricDifferenceBy( - iteratee: ValueOnlyIteratee - ): ((a1: Array) => (a2: Array) => Array) & - ((a1: Array, a2: Array) => Array); - symmetricDifferenceBy( - iteratee: ValueOnlyIteratee, - a1: Array - ): (a2: Array) => Array; - symmetricDifferenceBy( - iteratee: ValueOnlyIteratee, - a1: Array, - a2: Array - ): Array; - xorWith( - comparator: Comparator - ): ((a1: Array) => (a2: Array) => Array) & - ((a1: Array, a2: Array) => Array); - xorWith( - comparator: Comparator, - a1: Array - ): (a2: Array) => Array; - xorWith(comparator: Comparator, a1: Array, a2: Array): Array; - symmetricDifferenceWith( - comparator: Comparator - ): ((a1: Array) => (a2: Array) => Array) & - ((a1: Array, a2: Array) => Array); - symmetricDifferenceWith( - comparator: Comparator, - a1: Array - ): (a2: Array) => Array; - symmetricDifferenceWith( - comparator: Comparator, - a1: Array, - a2: Array - ): Array; - zip(a1: A[]): (a2: B[]) => Array<[A, B]>; - zip(a1: A[], a2: B[]): Array<[A, B]>; - zipAll(arrays: Array>): Array; - zipObject(props?: Array): (values?: Array) => { [key: K]: V }; - zipObject(props?: Array, values?: Array): { [key: K]: V }; - zipObj(props: Array): (values: Array) => Object; - zipObj(props: Array, values: Array): Object; - zipObjectDeep(props: any[]): (values: any) => Object; - zipObjectDeep(props: any[], 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: Array | { [id: any]: T }) => { [string]: number }; - countBy( - iteratee: ValueOnlyIteratee, - collection: Array | { [id: any]: T } - ): { [string]: number }; - // alias of _.forEach - each( - iteratee: Iteratee | OIteratee - ): (collection: $ReadOnlyArray | { [id: any]: T }) => Array; - each( - iteratee: Iteratee | OIteratee, - collection: $ReadOnlyArray | { [id: any]: T } - ): Array; - // alias of _.forEachRight - eachRight( - iteratee: Iteratee | OIteratee - ): (collection: $ReadOnlyArray | { [id: any]: T }) => Array; - eachRight( - iteratee: Iteratee | OIteratee, - collection: $ReadOnlyArray | { [id: any]: T } - ): Array; - every( - iteratee: Iteratee | OIteratee - ): (collection: $ReadOnlyArray | { [id: any]: T }) => boolean; - every( - iteratee: Iteratee | OIteratee, - collection: $ReadOnlyArray | { [id: any]: T } - ): boolean; - all( - iteratee: Iteratee | OIteratee - ): (collection: Array | { [id: any]: T }) => boolean; - all( - iteratee: Iteratee | OIteratee, - collection: Array | { [id: any]: T } - ): boolean; - filter( - predicate: Predicate | OPredicate - ): (collection: $ReadOnlyArray | { [id: any]: T }) => Array; - filter( - predicate: Predicate | OPredicate, - collection: $ReadOnlyArray | { [id: any]: T } - ): Array; - find( - predicate: Predicate | OPredicate - ): (collection: $ReadOnlyArray | { [id: any]: T }) => T | void; - find( - predicate: Predicate | OPredicate, - collection: $ReadOnlyArray | { [id: any]: T } - ): T | void; - findFrom( - predicate: Predicate | OPredicate - ): (( - fromIndex: number - ) => (collection: $ReadOnlyArray | { [id: any]: T }) => T | void) & - (( - fromIndex: number, - collection: $ReadOnlyArray | { [id: any]: T } - ) => T | void); - findFrom( - predicate: Predicate | OPredicate, - fromIndex: number - ): (collection: Array | { [id: any]: T }) => T | void; - findFrom( - predicate: Predicate | OPredicate, - fromIndex: number, - collection: $ReadOnlyArray | { [id: any]: T } - ): T | void; - findLast( - predicate: Predicate | OPredicate - ): (collection: $ReadOnlyArray | { [id: any]: T }) => T | void; - findLast( - predicate: Predicate | OPredicate, - collection: $ReadOnlyArray | { [id: any]: T } - ): T | void; - findLastFrom( - predicate: Predicate | OPredicate - ): (( - fromIndex: number - ) => (collection: $ReadOnlyArray | { [id: any]: T }) => T | void) & - (( - fromIndex: number, - collection: $ReadOnlyArray | { [id: any]: T } - ) => T | void); - findLastFrom( - predicate: Predicate | OPredicate, - fromIndex: number - ): (collection: $ReadOnlyArray | { [id: any]: T }) => T | void; - findLastFrom( - predicate: Predicate | OPredicate, - fromIndex: number, - collection: $ReadOnlyArray | { [id: any]: T } - ): T | void; - flatMap( - iteratee: FlatMapIteratee | OFlatMapIteratee - ): (collection: Array | { [id: any]: T }) => Array; - flatMap( - iteratee: FlatMapIteratee | OFlatMapIteratee, - collection: Array | { [id: any]: T } - ): Array; - flatMapDeep( - iteratee: FlatMapIteratee | OFlatMapIteratee - ): (collection: Array | { [id: any]: T }) => Array; - flatMapDeep( - iteratee: FlatMapIteratee | OFlatMapIteratee, - collection: Array | { [id: any]: T } - ): Array; - flatMapDepth( - iteratee: FlatMapIteratee | OFlatMapIteratee - ): (( - depth: number - ) => (collection: Array | { [id: any]: T }) => Array) & - ((depth: number, collection: Array | { [id: any]: T }) => Array); - flatMapDepth( - iteratee: FlatMapIteratee | OFlatMapIteratee, - depth: number - ): (collection: Array | { [id: any]: T }) => Array; - flatMapDepth( - iteratee: FlatMapIteratee | OFlatMapIteratee, - depth: number, - collection: Array | { [id: any]: T } - ): Array; - forEach( - iteratee: Iteratee | OIteratee - ): (collection: $ReadOnlyArray | { [id: any]: T }) => Array; - forEach( - iteratee: Iteratee | OIteratee, - collection: $ReadOnlyArray | { [id: any]: T } - ): Array; - forEachRight( - iteratee: Iteratee | OIteratee - ): (collection: $ReadOnlyArray | { [id: any]: T }) => Array; - forEachRight( - iteratee: Iteratee | OIteratee, - collection: $ReadOnlyArray | { [id: any]: T } - ): Array; - groupBy( - iteratee: ValueOnlyIteratee - ): ( - collection: $ReadOnlyArray | { [id: any]: T } - ) => { [key: V]: Array }; - groupBy( - iteratee: ValueOnlyIteratee, - collection: $ReadOnlyArray | { [id: any]: T } - ): { [key: V]: Array }; - includes(value: T): (collection: Array | { [id: any]: T }) => boolean; - includes(value: T, collection: Array | { [id: any]: T }): 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: Array | { [id: any]: T }) => boolean; - contains(value: T, collection: Array | { [id: any]: T }): 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: Array) => boolean) & - ((fromIndex: number, collection: Array) => boolean); - includesFrom( - value: T, - fromIndex: number - ): (collection: Array) => boolean; - includesFrom(value: T, fromIndex: number, collection: Array): boolean; - invokeMap( - path: ((value: T) => Array | string) | Array | string - ): (collection: Array | { [id: any]: T }) => Array; - invokeMap( - path: ((value: T) => Array | string) | Array | string, - collection: Array | { [id: any]: T } - ): Array; - invokeArgsMap( - path: ((value: T) => Array | string) | Array | string - ): (( - collection: Array | { [id: any]: T } - ) => (args: Array) => Array) & - (( - collection: Array | { [id: any]: T }, - args: Array - ) => Array); - invokeArgsMap( - path: ((value: T) => Array | string) | Array | string, - collection: Array | { [id: any]: T } - ): (args: Array) => Array; - invokeArgsMap( - path: ((value: T) => Array | string) | Array | string, - collection: Array | { [id: any]: T }, - args: Array - ): Array; - keyBy( - iteratee: ValueOnlyIteratee - ): (collection: $ReadOnlyArray | { [id: any]: T }) => { [key: V]: T }; - keyBy( - iteratee: ValueOnlyIteratee, - collection: $ReadOnlyArray | { [id: any]: T } - ): { [key: V]: T }; - indexBy( - iteratee: ValueOnlyIteratee - ): (collection: $ReadOnlyArray | { [id: any]: T }) => { [key: V]: T }; - indexBy( - iteratee: ValueOnlyIteratee, - collection: $ReadOnlyArray | { [id: any]: T } - ): { [key: V]: T }; - map( - iteratee: MapIterator | OMapIterator - ): (collection: $ReadOnlyArray | { [id: any]: T }) => Array; - map( - iteratee: MapIterator | OMapIterator, - collection: $ReadOnlyArray | { [id: any]: T } - ): Array; - map(iteratee: (char: string) => any): (str: string) => string; - map(iteratee: (char: string) => any, str: string): string; - pluck( - iteratee: MapIterator | OMapIterator - ): (collection: Array | { [id: any]: T }) => Array; - pluck( - iteratee: MapIterator | OMapIterator, - collection: Array | { [id: any]: T } - ): 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: $ReadOnlyArray | { [id: any]: T }) => Array) & - (( - orders: $ReadOnlyArray<"asc" | "desc"> | string, - collection: $ReadOnlyArray | { [id: any]: T } - ) => Array); - orderBy( - iteratees: $ReadOnlyArray | OIteratee<*>> | string, - orders: $ReadOnlyArray<"asc" | "desc"> | string - ): (collection: $ReadOnlyArray | { [id: any]: T }) => Array; - orderBy( - iteratees: $ReadOnlyArray | OIteratee<*>> | string, - orders: $ReadOnlyArray<"asc" | "desc"> | string, - collection: $ReadOnlyArray | { [id: any]: T } - ): Array; - partition( - predicate: Predicate | OPredicate - ): (collection: Array | { [id: any]: T }) => [Array, Array]; - partition( - predicate: Predicate | OPredicate, - collection: Array | { [id: any]: T } - ): [Array, Array]; - reduce( - iteratee: (accumulator: U, value: T) => U - ): ((accumulator: U) => (collection: Array | { [id: any]: T }) => U) & - ((accumulator: U, collection: Array | { [id: any]: T }) => U); - reduce( - iteratee: (accumulator: U, value: T) => U, - accumulator: U - ): (collection: Array | { [id: any]: T }) => U; - reduce( - iteratee: (accumulator: U, value: T) => U, - accumulator: U, - collection: Array | { [id: any]: T } - ): U; - reduceRight( - iteratee: (value: T, accumulator: U) => U - ): ((accumulator: U) => (collection: Array | { [id: any]: T }) => U) & - ((accumulator: U, collection: Array | { [id: any]: T }) => U); - reduceRight( - iteratee: (value: T, accumulator: U) => U, - accumulator: U - ): (collection: Array | { [id: any]: T }) => U; - reduceRight( - iteratee: (value: T, accumulator: U) => U, - accumulator: U, - collection: Array | { [id: any]: T } - ): U; - reject( - predicate: Predicate | OPredicate - ): (collection: Array | { [id: any]: T }) => Array; - reject( - predicate: Predicate | OPredicate, - collection: Array | { [id: any]: T } - ): Array; - sample(collection: Array | { [id: any]: T }): T; - sampleSize( - n: number - ): (collection: Array | { [id: any]: T }) => Array; - sampleSize(n: number, collection: Array | { [id: any]: T }): Array; - shuffle(collection: Array | { [id: any]: T }): Array; - size(collection: $ReadOnlyArray | Object | string): number; - some( - predicate: Predicate | OPredicate - ): (collection: $ReadOnlyArray | { [id: any]: T }) => boolean; - some( - predicate: Predicate | OPredicate, - collection: $ReadOnlyArray | { [id: any]: T } - ): boolean; - any( - predicate: Predicate | OPredicate - ): (collection: $ReadOnlyArray | { [id: any]: T }) => boolean; - any( - predicate: Predicate | OPredicate, - collection: $ReadOnlyArray | { [id: any]: T } - ): boolean; - sortBy( - iteratees: | $ReadOnlyArray | OIteratee> - | Iteratee - | OIteratee - ): (collection: $ReadOnlyArray | { [id: any]: T }) => Array; - sortBy( - iteratees: | $ReadOnlyArray | OIteratee> - | Iteratee - | OIteratee, - collection: $ReadOnlyArray | { [id: any]: T }, - ): 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: F) => F; - debounce(wait: number, func: F): F; - defer(func: Function): TimeoutID; - delay(wait: number): (func: Function) => TimeoutID; - delay(wait: number, func: Function): TimeoutID; - flip(func: Function): Function; - memoize(func: F): F; - negate(predicate: Function): Function; - complement(predicate: Function): Function; - once(func: Function): Function; - overArgs(func: Function): (transforms: Array) => Function; - overArgs(func: Function, transforms: Array): Function; - useWith(func: Function): (transforms: Array) => Function; - useWith(func: Function, transforms: Array): Function; - partial(func: Function): (partials: any[]) => Function; - partial(func: Function, partials: any[]): Function; - partialRight(func: Function): (partials: Array) => Function; - partialRight(func: Function, partials: Array): Function; - rearg(indexes: Array): (func: Function) => Function; - rearg(indexes: Array, 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: Function) => Function; - throttle(wait: number, func: Function): Function; - unary(func: Function): Function; - wrap(wrapper: Function): (value: any) => Function; - wrap(wrapper: Function, value: any): Function; - - // Lang - castArray(value: *): any[]; - 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 & { [key: string]: (x: any) => boolean } - ): (source: T) => boolean; - conformsTo( - predicates: T & { [key: string]: (x: any) => boolean }, - source: T - ): boolean; - where( - predicates: T & { [key: string]: (x: any) => boolean } - ): (source: T) => boolean; - where( - predicates: T & { [key: string]: (x: any) => boolean }, - source: T - ): boolean; - conforms( - predicates: T & { [key: string]: (x: any) => boolean } - ): (source: T) => boolean; - conforms( - predicates: T & { [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: Function): true; - isFunction(value: number | string | void | null | Object): false; - 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: Array): T; - maxBy(iteratee: Iteratee): (array: Array) => T; - maxBy(iteratee: Iteratee, array: Array): T; - mean(array: Array<*>): number; - meanBy(iteratee: Iteratee): (array: Array) => number; - meanBy(iteratee: Iteratee, array: Array): number; - min(array: Array): T; - minBy(iteratee: Iteratee): (array: Array) => T; - minBy(iteratee: Iteratee, array: Array): 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: Array<*>): number; - sumBy(iteratee: Iteratee): (array: Array) => number; - sumBy(iteratee: Iteratee, array: Array): 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: Array): (object: Object) => Array; - at(paths: Array, object: Object): Array; - props(paths: Array): (object: Object) => Array; - props(paths: Array, object: Object): Array; - paths(paths: Array): (object: Object) => Array; - paths(paths: Array, object: Object): Array; - create(prototype: T): $Supertype; - 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: $ReadOnlyArray | string | number): (object: Object | $ReadOnlyArray | void | null) => any; - get(path: $ReadOnlyArray | string | number, object: Object | $ReadOnlyArray | void | null): any; - prop(path: Array | string): (object: Object | Array) => any; - prop(path: Array | string, object: Object | Array): any; - path(path: Array | string): (object: Object | Array) => any; - path(path: Array | string, object: Object | Array): any; - getOr( - defaultValue: any - ): (( - path: Array | string - ) => (object: Object | Array) => any) & - ((path: Array | string, object: Object | $ReadOnlyArray | void | null) => any); - getOr( - defaultValue: any, - path: Array | string - ): (object: Object | $ReadOnlyArray | void | null) => any; - getOr( - defaultValue: any, - path: Array | string, - object: Object | $ReadOnlyArray | void | null - ): any; - propOr( - defaultValue: any - ): (( - path: Array | string - ) => (object: Object | Array) => any) & - ((path: Array | string, object: Object | Array) => any); - propOr( - defaultValue: any, - path: Array | string - ): (object: Object | Array) => any; - propOr( - defaultValue: any, - path: Array | string, - object: Object | Array - ): any; - pathOr( - defaultValue: any - ): (( - path: Array | string - ) => (object: Object | Array) => any) & - ((path: Array | string, object: Object | Array) => any); - pathOr( - defaultValue: any, - path: Array | string - ): (object: Object | Array) => any; - pathOr( - defaultValue: any, - path: Array | string, - object: Object | Array - ): any; - has(path: Array | string): (object: Object) => boolean; - has(path: Array | string, object: Object): boolean; - hasIn(path: Array | string): (object: Object) => boolean; - hasIn(path: Array | string, 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: Array | string): (object: Object) => any; - invoke(path: Array | string, object: Object): any; - invokeArgs( - path: Array | string - ): ((object: Object) => (args: Array) => any) & - ((object: Object, args: Array) => any); - invokeArgs( - path: Array | string, - object: Object - ): (args: Array) => any; - invokeArgs( - path: Array | string, - object: Object, - args: Array - ): any; - keys(object: { [key: K]: any }): 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: Array): 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: Array) => Object; - mergeAllWith( - customizer: ( - objValue: any, - srcValue: any, - key: string, - object: Object, - source: Object - ) => any | void, - objects: Array - ): Object; - omit(props: Array): (object: Object) => Object; - omit(props: Array, object: Object): Object; - omitAll(props: Array): (object: Object) => Object; - omitAll(props: Array, object: Object): Object; - omitBy( - predicate: OPredicate - ): (object: T) => Object; - omitBy(predicate: OPredicate, object: T): Object; - pick(props: Array): (object: Object) => Object; - pick(props: Array, object: Object): Object; - pickAll(props: Array): (object: Object) => Object; - pickAll(props: Array, object: Object): Object; - pickBy( - predicate: OPredicate - ): (object: T) => Object; - pickBy(predicate: OPredicate, object: T): Object; - result(path: Array | string): (object: Object) => any; - result(path: Array | string, object: Object): any; - set( - path: Array | string - ): ((value: any) => (object: Object) => Object) & - ((value: any, object: Object) => Object); - set(path: Array | string, value: any): (object: Object) => Object; - set(path: Array | string, value: any, object: Object): Object; - assoc( - path: Array | string - ): ((value: any) => (object: Object) => Object) & - ((value: any, object: Object) => Object); - assoc(path: Array | string, value: any): (object: Object) => Object; - assoc(path: Array | string, value: any, object: Object): Object; - assocPath( - path: Array | string - ): ((value: any) => (object: Object) => Object) & - ((value: any, object: Object) => Object); - assocPath( - path: Array | string, - value: any - ): (object: Object) => Object; - assocPath(path: Array | string, value: any, object: Object): Object; - setWith( - customizer: (nsValue: any, key: string, nsObject: T) => any - ): (( - path: Array | string - ) => ((value: any) => (object: T) => Object) & - ((value: any, object: T) => Object)) & - ((path: Array | string, value: any) => (object: T) => Object) & - ((path: Array | string, value: any, object: T) => Object); - setWith( - customizer: (nsValue: any, key: string, nsObject: T) => any, - path: Array | string - ): ((value: any) => (object: T) => Object) & - ((value: any, object: T) => Object); - setWith( - customizer: (nsValue: any, key: string, nsObject: T) => any, - path: Array | string, - value: any - ): (object: T) => Object; - setWith( - customizer: (nsValue: any, key: string, nsObject: T) => any, - path: Array | string, - value: any, - object: T - ): Object; - toPairs(object: Object | Array<*>): 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: Array | string): (object: Object) => Object; - unset(path: Array | string, object: Object): Object; - dissoc(path: Array | string): (object: Object) => Object; - dissoc(path: Array | string, object: Object): Object; - dissocPath(path: Array | string): (object: Object) => Object; - dissocPath(path: Array | string, object: Object): Object; - update( - path: string[] | string - ): ((updater: Function) => (object: Object) => Object) & - ((updater: Function, object: Object) => Object); - update( - path: string[] | string, - updater: Function - ): (object: Object) => Object; - update(path: string[] | string, updater: Function, object: Object): Object; - updateWith( - customizer: Function - ): (( - path: string[] | string - ) => ((updater: Function) => (object: Object) => Object) & - ((updater: Function, object: Object) => Object)) & - (( - path: string[] | string, - updater: Function - ) => (object: Object) => Object) & - ((path: string[] | string, updater: Function, object: Object) => Object); - updateWith( - customizer: Function, - path: string[] | string - ): ((updater: Function) => (object: Object) => Object) & - ((updater: Function, object: Object) => Object); - updateWith( - customizer: Function, - path: string[] | string, - updater: Function - ): (object: Object) => Object; - updateWith( - customizer: Function, - path: string[] | string, - 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: Array): (object: Object) => Object; - bindAll(methodNames: Array, object: Object): Object; - cond(pairs: NestedArray): Function; - constant(value: T): () => T; - always(value: T): () => T; - 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; - defaultTo(defaultValue: T2): (value: T1) => T2; - defaultTo(defaultValue: T2, value: T1): T2; - flow: ($ComposeReverse & (funcs: Array) => Function); - pipe: ($ComposeReverse & (funcs: Array) => Function); - flowRight: ($Compose & (funcs: Array) => Function); - compose: ($Compose & (funcs: Array) => Function); - compose(funcs: Array): Function; - identity(value: T): T; - iteratee(func: any): Function; - matches(source: Object): (object: Object) => boolean; - matches(source: Object, object: Object): boolean; - matchesProperty(path: Array | string): (srcValue: any) => Function; - matchesProperty(path: Array | string, srcValue: any): Function; - propEq(path: Array | string): (srcValue: any) => Function; - propEq(path: Array | string, srcValue: any): Function; - pathEq(path: Array | string): (srcValue: any) => Function; - pathEq(path: Array | string, srcValue: any): Function; - method(path: Array | string): 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: Array): void; - nthArg(n: number): Function; - over(iteratees: Array): Function; - juxt(iteratees: Array): Function; - overEvery(predicates: Array): Function; - allPass(predicates: Array): Function; - overSome(predicates: Array): Function; - anyPass(predicates: Array): Function; - property( - path: Array | string - ): (object: Object | Array) => any; - property(path: Array | string, object: Object | Array): any; - propertyOf(object: Object): (path: Array | string) => Function; - propertyOf(object: Object, path: Array | string): 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/mocha_v2.4.x.js b/flow-typed/npm/mocha_v2.4.x.js deleted file mode 100644 index 6c52d24..0000000 --- a/flow-typed/npm/mocha_v2.4.x.js +++ /dev/null @@ -1,25 +0,0 @@ -// flow-typed signature: ee3fbf2649f3a8e2106603751f8fe5ea -// flow-typed version: da30fe6876/mocha_v2.4.x/flow_>=v0.25.x - -type TestFunction = (done: () => void) => void | Promise; - -declare var describe: { - (name: string, spec: () => void): void, - only(description: string, spec: () => void): void, - skip(description: string, spec: () => void): void, - timeout(ms: number): void -}; - -declare var context: typeof describe; - -declare var it: { - (name: string, spec?: TestFunction): void, - only(description: string, spec: TestFunction): void, - skip(description: string, spec: TestFunction): void, - timeout(ms: number): void -}; - -declare function before(method: TestFunction): void; -declare function beforeEach(method: TestFunction): void; -declare function after(method: TestFunction): void; -declare function afterEach(method: TestFunction): void; diff --git a/flow-typed/npm/moment_v2.3.x.js b/flow-typed/npm/moment_v2.3.x.js deleted file mode 100644 index f48f138..0000000 --- a/flow-typed/npm/moment_v2.3.x.js +++ /dev/null @@ -1,331 +0,0 @@ -// flow-typed signature: 8c8d15d869ea4f62297d1620fad146e9 -// flow-typed version: d643daffb3/moment_v2.3.x/flow_>=v0.63.x - -type moment$MomentOptions = { - y?: number | string, - year?: number | string, - years?: number | string, - M?: number | string, - month?: number | string, - months?: number | string, - d?: number | string, - day?: number | string, - days?: number | string, - date?: number | string, - h?: number | string, - hour?: number | string, - hours?: number | string, - m?: number | string, - minute?: number | string, - minutes?: number | string, - s?: number | string, - second?: number | string, - seconds?: number | string, - ms?: number | string, - millisecond?: number | string, - milliseconds?: number | string -}; - -type moment$MomentObject = { - years: number, - months: number, - date: number, - hours: number, - minutes: number, - seconds: number, - milliseconds: number -}; - -type moment$MomentCreationData = { - input: string, - format: string, - locale: Object, - isUTC: boolean, - strict: boolean -}; - -type moment$CalendarFormat = string | ((moment: moment$Moment) => string); - -type moment$CalendarFormats = { - sameDay?: moment$CalendarFormat, - nextDay?: moment$CalendarFormat, - nextWeek?: moment$CalendarFormat, - lastDay?: moment$CalendarFormat, - lastWeek?: moment$CalendarFormat, - sameElse?: moment$CalendarFormat -}; - -declare class moment$LocaleData { - months(moment: moment$Moment): string, - monthsShort(moment: moment$Moment): string, - monthsParse(month: string): number, - weekdays(moment: moment$Moment): string, - weekdaysShort(moment: moment$Moment): string, - weekdaysMin(moment: moment$Moment): string, - weekdaysParse(weekDay: string): number, - longDateFormat(dateFormat: string): string, - isPM(date: string): boolean, - meridiem(hours: number, minutes: number, isLower: boolean): string, - calendar( - key: - | "sameDay" - | "nextDay" - | "lastDay" - | "nextWeek" - | "prevWeek" - | "sameElse", - moment: moment$Moment - ): string, - relativeTime( - number: number, - withoutSuffix: boolean, - key: "s" | "m" | "mm" | "h" | "hh" | "d" | "dd" | "M" | "MM" | "y" | "yy", - isFuture: boolean - ): string, - pastFuture(diff: any, relTime: string): string, - ordinal(number: number): string, - preparse(str: string): any, - postformat(str: string): any, - week(moment: moment$Moment): string, - invalidDate(): string, - firstDayOfWeek(): number, - firstDayOfYear(): number -} -declare class moment$MomentDuration { - humanize(suffix?: boolean): string, - milliseconds(): number, - asMilliseconds(): number, - seconds(): number, - asSeconds(): number, - minutes(): number, - asMinutes(): number, - hours(): number, - asHours(): number, - days(): number, - asDays(): number, - months(): number, - asWeeks(): number, - weeks(): number, - asMonths(): number, - years(): number, - asYears(): number, - add(value: number | moment$MomentDuration | Object, unit?: string): this, - subtract(value: number | moment$MomentDuration | Object, unit?: string): this, - as(unit: string): number, - get(unit: string): number, - toJSON(): string, - toISOString(): string, - isValid(): boolean -} -declare class moment$Moment { - static ISO_8601: string, - static ( - string?: string, - format?: string | Array, - strict?: boolean - ): moment$Moment, - static ( - string?: string, - format?: string | Array, - locale?: string, - strict?: boolean - ): moment$Moment, - static ( - initDate: ?Object | number | Date | Array | moment$Moment | string - ): moment$Moment, - static unix(seconds: number): moment$Moment, - static utc(): moment$Moment, - static utc(number: number | Array): moment$Moment, - static utc( - str: string, - str2?: string | Array, - str3?: string - ): moment$Moment, - static utc(moment: moment$Moment): moment$Moment, - static utc(date: Date): moment$Moment, - static parseZone(): moment$Moment, - static parseZone(rawDate: string): moment$Moment, - static parseZone( - rawDate: string, - format: string | Array - ): moment$Moment, - static parseZone( - rawDate: string, - format: string, - strict: boolean - ): moment$Moment, - static parseZone( - rawDate: string, - format: string, - locale: string, - strict: boolean - ): moment$Moment, - isValid(): boolean, - invalidAt(): 0 | 1 | 2 | 3 | 4 | 5 | 6, - creationData(): moment$MomentCreationData, - millisecond(number: number): this, - milliseconds(number: number): this, - millisecond(): number, - milliseconds(): number, - second(number: number): this, - seconds(number: number): this, - second(): number, - seconds(): number, - minute(number: number): this, - minutes(number: number): this, - minute(): number, - minutes(): number, - hour(number: number): this, - hours(number: number): this, - hour(): number, - hours(): number, - date(number: number): this, - dates(number: number): this, - date(): number, - dates(): number, - day(day: number | string): this, - days(day: number | string): this, - day(): number, - days(): number, - weekday(number: number): this, - weekday(): number, - isoWeekday(number: number): this, - isoWeekday(): number, - dayOfYear(number: number): this, - dayOfYear(): number, - week(number: number): this, - weeks(number: number): this, - week(): number, - weeks(): number, - isoWeek(number: number): this, - isoWeeks(number: number): this, - isoWeek(): number, - isoWeeks(): number, - month(number: number): this, - months(number: number): this, - month(): number, - months(): number, - quarter(number: number): this, - quarter(): number, - year(number: number): this, - years(number: number): this, - year(): number, - years(): number, - weekYear(number: number): this, - weekYear(): number, - isoWeekYear(number: number): this, - isoWeekYear(): number, - weeksInYear(): number, - isoWeeksInYear(): number, - get(string: string): number, - set(unit: string, value: number): this, - set(options: { [unit: string]: number }): this, - static max(...dates: Array): moment$Moment, - static max(dates: Array): moment$Moment, - static min(...dates: Array): moment$Moment, - static min(dates: Array): moment$Moment, - add( - value: number | moment$MomentDuration | moment$Moment | Object, - unit?: string - ): this, - subtract( - value: number | moment$MomentDuration | moment$Moment | string | Object, - unit?: string - ): this, - startOf(unit: string): this, - endOf(unit: string): this, - local(): this, - utc(): this, - utcOffset( - offset: number | string, - keepLocalTime?: boolean, - keepMinutes?: boolean - ): this, - utcOffset(): number, - format(format?: string): string, - fromNow(removeSuffix?: boolean): string, - from( - value: moment$Moment | string | number | Date | Array, - removePrefix?: boolean - ): string, - toNow(removePrefix?: boolean): string, - to( - value: moment$Moment | string | number | Date | Array, - removePrefix?: boolean - ): string, - calendar(refTime?: any, formats?: moment$CalendarFormats): string, - diff( - date: moment$Moment | string | number | Date | Array, - format?: string, - floating?: boolean - ): number, - valueOf(): number, - unix(): number, - daysInMonth(): number, - toDate(): Date, - toArray(): Array, - toJSON(): string, - toISOString( - keepOffset?: boolean - ): string, - toObject(): moment$MomentObject, - isBefore( - date?: moment$Moment | string | number | Date | Array, - units?: ?string - ): boolean, - isSame( - date?: moment$Moment | string | number | Date | Array, - units?: ?string - ): boolean, - isAfter( - date?: moment$Moment | string | number | Date | Array, - units?: ?string - ): boolean, - isSameOrBefore( - date?: moment$Moment | string | number | Date | Array, - units?: ?string - ): boolean, - isSameOrAfter( - date?: moment$Moment | string | number | Date | Array, - units?: ?string - ): boolean, - isBetween( - fromDate: moment$Moment | string | number | Date | Array, - toDate?: ?moment$Moment | string | number | Date | Array, - granularity?: ?string, - inclusion?: ?string - ): boolean, - isDST(): boolean, - isDSTShifted(): boolean, - isLeapYear(): boolean, - clone(): moment$Moment, - static isMoment(obj: any): boolean, - static isDate(obj: any): boolean, - static locale(locale: string, localeData?: Object): string, - static updateLocale(locale: string, localeData?: ?Object): void, - static locale(locales: Array): string, - locale(locale: string, customization?: Object | null): moment$Moment, - locale(): string, - static months(): Array, - static monthsShort(): Array, - static weekdays(): Array, - static weekdaysShort(): Array, - static weekdaysMin(): Array, - static months(): string, - static monthsShort(): string, - static weekdays(): string, - static weekdaysShort(): string, - static weekdaysMin(): string, - static localeData(key?: string): moment$LocaleData, - static duration( - value: number | Object | string, - unit?: string - ): moment$MomentDuration, - static isDuration(obj: any): boolean, - static normalizeUnits(unit: string): string, - static invalid(object: any): moment$Moment -} - -declare module "moment" { - declare module.exports: Class; -} diff --git a/flow-typed/npm/moment_vx.x.x.js b/flow-typed/npm/moment_vx.x.x.js deleted file mode 100644 index 43e1dde..0000000 --- a/flow-typed/npm/moment_vx.x.x.js +++ /dev/null @@ -1,2538 +0,0 @@ -// flow-typed signature: 01911bc35e359b0eb15c510ea2e9faa5 -// flow-typed version: <>/moment_v^2.20.1/flow_v0.61.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'moment' - * - * 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 'moment' { - 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 'moment/ender' { - declare module.exports: any; -} - -declare module 'moment/locale/af' { - declare module.exports: any; -} - -declare module 'moment/locale/ar-dz' { - declare module.exports: any; -} - -declare module 'moment/locale/ar-kw' { - declare module.exports: any; -} - -declare module 'moment/locale/ar-ly' { - declare module.exports: any; -} - -declare module 'moment/locale/ar-ma' { - declare module.exports: any; -} - -declare module 'moment/locale/ar-sa' { - declare module.exports: any; -} - -declare module 'moment/locale/ar-tn' { - declare module.exports: any; -} - -declare module 'moment/locale/ar' { - declare module.exports: any; -} - -declare module 'moment/locale/az' { - declare module.exports: any; -} - -declare module 'moment/locale/be' { - declare module.exports: any; -} - -declare module 'moment/locale/bg' { - declare module.exports: any; -} - -declare module 'moment/locale/bm' { - declare module.exports: any; -} - -declare module 'moment/locale/bn' { - declare module.exports: any; -} - -declare module 'moment/locale/bo' { - declare module.exports: any; -} - -declare module 'moment/locale/br' { - declare module.exports: any; -} - -declare module 'moment/locale/bs' { - declare module.exports: any; -} - -declare module 'moment/locale/ca' { - declare module.exports: any; -} - -declare module 'moment/locale/cs' { - declare module.exports: any; -} - -declare module 'moment/locale/cv' { - declare module.exports: any; -} - -declare module 'moment/locale/cy' { - declare module.exports: any; -} - -declare module 'moment/locale/da' { - declare module.exports: any; -} - -declare module 'moment/locale/de-at' { - declare module.exports: any; -} - -declare module 'moment/locale/de-ch' { - declare module.exports: any; -} - -declare module 'moment/locale/de' { - declare module.exports: any; -} - -declare module 'moment/locale/dv' { - declare module.exports: any; -} - -declare module 'moment/locale/el' { - declare module.exports: any; -} - -declare module 'moment/locale/en-au' { - declare module.exports: any; -} - -declare module 'moment/locale/en-ca' { - declare module.exports: any; -} - -declare module 'moment/locale/en-gb' { - declare module.exports: any; -} - -declare module 'moment/locale/en-ie' { - declare module.exports: any; -} - -declare module 'moment/locale/en-il' { - declare module.exports: any; -} - -declare module 'moment/locale/en-nz' { - declare module.exports: any; -} - -declare module 'moment/locale/eo' { - declare module.exports: any; -} - -declare module 'moment/locale/es-do' { - declare module.exports: any; -} - -declare module 'moment/locale/es-us' { - declare module.exports: any; -} - -declare module 'moment/locale/es' { - declare module.exports: any; -} - -declare module 'moment/locale/et' { - declare module.exports: any; -} - -declare module 'moment/locale/eu' { - declare module.exports: any; -} - -declare module 'moment/locale/fa' { - declare module.exports: any; -} - -declare module 'moment/locale/fi' { - declare module.exports: any; -} - -declare module 'moment/locale/fo' { - declare module.exports: any; -} - -declare module 'moment/locale/fr-ca' { - declare module.exports: any; -} - -declare module 'moment/locale/fr-ch' { - declare module.exports: any; -} - -declare module 'moment/locale/fr' { - declare module.exports: any; -} - -declare module 'moment/locale/fy' { - declare module.exports: any; -} - -declare module 'moment/locale/gd' { - declare module.exports: any; -} - -declare module 'moment/locale/gl' { - declare module.exports: any; -} - -declare module 'moment/locale/gom-latn' { - declare module.exports: any; -} - -declare module 'moment/locale/gu' { - declare module.exports: any; -} - -declare module 'moment/locale/he' { - declare module.exports: any; -} - -declare module 'moment/locale/hi' { - declare module.exports: any; -} - -declare module 'moment/locale/hr' { - declare module.exports: any; -} - -declare module 'moment/locale/hu' { - declare module.exports: any; -} - -declare module 'moment/locale/hy-am' { - declare module.exports: any; -} - -declare module 'moment/locale/id' { - declare module.exports: any; -} - -declare module 'moment/locale/is' { - declare module.exports: any; -} - -declare module 'moment/locale/it' { - declare module.exports: any; -} - -declare module 'moment/locale/ja' { - declare module.exports: any; -} - -declare module 'moment/locale/jv' { - declare module.exports: any; -} - -declare module 'moment/locale/ka' { - declare module.exports: any; -} - -declare module 'moment/locale/kk' { - declare module.exports: any; -} - -declare module 'moment/locale/km' { - declare module.exports: any; -} - -declare module 'moment/locale/kn' { - declare module.exports: any; -} - -declare module 'moment/locale/ko' { - declare module.exports: any; -} - -declare module 'moment/locale/ky' { - declare module.exports: any; -} - -declare module 'moment/locale/lb' { - declare module.exports: any; -} - -declare module 'moment/locale/lo' { - declare module.exports: any; -} - -declare module 'moment/locale/lt' { - declare module.exports: any; -} - -declare module 'moment/locale/lv' { - declare module.exports: any; -} - -declare module 'moment/locale/me' { - declare module.exports: any; -} - -declare module 'moment/locale/mi' { - declare module.exports: any; -} - -declare module 'moment/locale/mk' { - declare module.exports: any; -} - -declare module 'moment/locale/ml' { - declare module.exports: any; -} - -declare module 'moment/locale/mn' { - declare module.exports: any; -} - -declare module 'moment/locale/mr' { - declare module.exports: any; -} - -declare module 'moment/locale/ms-my' { - declare module.exports: any; -} - -declare module 'moment/locale/ms' { - declare module.exports: any; -} - -declare module 'moment/locale/mt' { - declare module.exports: any; -} - -declare module 'moment/locale/my' { - declare module.exports: any; -} - -declare module 'moment/locale/nb' { - declare module.exports: any; -} - -declare module 'moment/locale/ne' { - declare module.exports: any; -} - -declare module 'moment/locale/nl-be' { - declare module.exports: any; -} - -declare module 'moment/locale/nl' { - declare module.exports: any; -} - -declare module 'moment/locale/nn' { - declare module.exports: any; -} - -declare module 'moment/locale/pa-in' { - declare module.exports: any; -} - -declare module 'moment/locale/pl' { - declare module.exports: any; -} - -declare module 'moment/locale/pt-br' { - declare module.exports: any; -} - -declare module 'moment/locale/pt' { - declare module.exports: any; -} - -declare module 'moment/locale/ro' { - declare module.exports: any; -} - -declare module 'moment/locale/ru' { - declare module.exports: any; -} - -declare module 'moment/locale/sd' { - declare module.exports: any; -} - -declare module 'moment/locale/se' { - declare module.exports: any; -} - -declare module 'moment/locale/si' { - declare module.exports: any; -} - -declare module 'moment/locale/sk' { - declare module.exports: any; -} - -declare module 'moment/locale/sl' { - declare module.exports: any; -} - -declare module 'moment/locale/sq' { - declare module.exports: any; -} - -declare module 'moment/locale/sr-cyrl' { - declare module.exports: any; -} - -declare module 'moment/locale/sr' { - declare module.exports: any; -} - -declare module 'moment/locale/ss' { - declare module.exports: any; -} - -declare module 'moment/locale/sv' { - declare module.exports: any; -} - -declare module 'moment/locale/sw' { - declare module.exports: any; -} - -declare module 'moment/locale/ta' { - declare module.exports: any; -} - -declare module 'moment/locale/te' { - declare module.exports: any; -} - -declare module 'moment/locale/tet' { - declare module.exports: any; -} - -declare module 'moment/locale/tg' { - declare module.exports: any; -} - -declare module 'moment/locale/th' { - declare module.exports: any; -} - -declare module 'moment/locale/tl-ph' { - declare module.exports: any; -} - -declare module 'moment/locale/tlh' { - declare module.exports: any; -} - -declare module 'moment/locale/tr' { - declare module.exports: any; -} - -declare module 'moment/locale/tzl' { - declare module.exports: any; -} - -declare module 'moment/locale/tzm-latn' { - declare module.exports: any; -} - -declare module 'moment/locale/tzm' { - declare module.exports: any; -} - -declare module 'moment/locale/ug-cn' { - declare module.exports: any; -} - -declare module 'moment/locale/uk' { - declare module.exports: any; -} - -declare module 'moment/locale/ur' { - declare module.exports: any; -} - -declare module 'moment/locale/uz-latn' { - declare module.exports: any; -} - -declare module 'moment/locale/uz' { - declare module.exports: any; -} - -declare module 'moment/locale/vi' { - declare module.exports: any; -} - -declare module 'moment/locale/x-pseudo' { - declare module.exports: any; -} - -declare module 'moment/locale/yo' { - declare module.exports: any; -} - -declare module 'moment/locale/zh-cn' { - declare module.exports: any; -} - -declare module 'moment/locale/zh-hk' { - declare module.exports: any; -} - -declare module 'moment/locale/zh-tw' { - declare module.exports: any; -} - -declare module 'moment/min/locales' { - declare module.exports: any; -} - -declare module 'moment/min/locales.min' { - declare module.exports: any; -} - -declare module 'moment/min/moment-with-locales' { - declare module.exports: any; -} - -declare module 'moment/min/moment-with-locales.min' { - declare module.exports: any; -} - -declare module 'moment/min/moment.min' { - declare module.exports: any; -} - -declare module 'moment/moment' { - declare module.exports: any; -} - -declare module 'moment/package' { - declare module.exports: any; -} - -declare module 'moment/src/lib/create/check-overflow' { - declare module.exports: any; -} - -declare module 'moment/src/lib/create/date-from-array' { - declare module.exports: any; -} - -declare module 'moment/src/lib/create/from-anything' { - declare module.exports: any; -} - -declare module 'moment/src/lib/create/from-array' { - declare module.exports: any; -} - -declare module 'moment/src/lib/create/from-object' { - declare module.exports: any; -} - -declare module 'moment/src/lib/create/from-string-and-array' { - declare module.exports: any; -} - -declare module 'moment/src/lib/create/from-string-and-format' { - declare module.exports: any; -} - -declare module 'moment/src/lib/create/from-string' { - declare module.exports: any; -} - -declare module 'moment/src/lib/create/local' { - declare module.exports: any; -} - -declare module 'moment/src/lib/create/parsing-flags' { - declare module.exports: any; -} - -declare module 'moment/src/lib/create/utc' { - declare module.exports: any; -} - -declare module 'moment/src/lib/create/valid' { - declare module.exports: any; -} - -declare module 'moment/src/lib/duration/abs' { - declare module.exports: any; -} - -declare module 'moment/src/lib/duration/add-subtract' { - declare module.exports: any; -} - -declare module 'moment/src/lib/duration/as' { - declare module.exports: any; -} - -declare module 'moment/src/lib/duration/bubble' { - declare module.exports: any; -} - -declare module 'moment/src/lib/duration/clone' { - declare module.exports: any; -} - -declare module 'moment/src/lib/duration/constructor' { - declare module.exports: any; -} - -declare module 'moment/src/lib/duration/create' { - declare module.exports: any; -} - -declare module 'moment/src/lib/duration/duration' { - declare module.exports: any; -} - -declare module 'moment/src/lib/duration/get' { - declare module.exports: any; -} - -declare module 'moment/src/lib/duration/humanize' { - declare module.exports: any; -} - -declare module 'moment/src/lib/duration/iso-string' { - declare module.exports: any; -} - -declare module 'moment/src/lib/duration/prototype' { - declare module.exports: any; -} - -declare module 'moment/src/lib/duration/valid' { - declare module.exports: any; -} - -declare module 'moment/src/lib/format/format' { - declare module.exports: any; -} - -declare module 'moment/src/lib/locale/base-config' { - declare module.exports: any; -} - -declare module 'moment/src/lib/locale/calendar' { - declare module.exports: any; -} - -declare module 'moment/src/lib/locale/constructor' { - declare module.exports: any; -} - -declare module 'moment/src/lib/locale/en' { - declare module.exports: any; -} - -declare module 'moment/src/lib/locale/formats' { - declare module.exports: any; -} - -declare module 'moment/src/lib/locale/invalid' { - declare module.exports: any; -} - -declare module 'moment/src/lib/locale/lists' { - declare module.exports: any; -} - -declare module 'moment/src/lib/locale/locale' { - declare module.exports: any; -} - -declare module 'moment/src/lib/locale/locales' { - declare module.exports: any; -} - -declare module 'moment/src/lib/locale/ordinal' { - declare module.exports: any; -} - -declare module 'moment/src/lib/locale/pre-post-format' { - declare module.exports: any; -} - -declare module 'moment/src/lib/locale/prototype' { - declare module.exports: any; -} - -declare module 'moment/src/lib/locale/relative' { - declare module.exports: any; -} - -declare module 'moment/src/lib/locale/set' { - declare module.exports: any; -} - -declare module 'moment/src/lib/moment/add-subtract' { - declare module.exports: any; -} - -declare module 'moment/src/lib/moment/calendar' { - declare module.exports: any; -} - -declare module 'moment/src/lib/moment/clone' { - declare module.exports: any; -} - -declare module 'moment/src/lib/moment/compare' { - declare module.exports: any; -} - -declare module 'moment/src/lib/moment/constructor' { - declare module.exports: any; -} - -declare module 'moment/src/lib/moment/creation-data' { - declare module.exports: any; -} - -declare module 'moment/src/lib/moment/diff' { - declare module.exports: any; -} - -declare module 'moment/src/lib/moment/format' { - declare module.exports: any; -} - -declare module 'moment/src/lib/moment/from' { - declare module.exports: any; -} - -declare module 'moment/src/lib/moment/get-set' { - declare module.exports: any; -} - -declare module 'moment/src/lib/moment/locale' { - declare module.exports: any; -} - -declare module 'moment/src/lib/moment/min-max' { - declare module.exports: any; -} - -declare module 'moment/src/lib/moment/moment' { - declare module.exports: any; -} - -declare module 'moment/src/lib/moment/now' { - declare module.exports: any; -} - -declare module 'moment/src/lib/moment/prototype' { - declare module.exports: any; -} - -declare module 'moment/src/lib/moment/start-end-of' { - declare module.exports: any; -} - -declare module 'moment/src/lib/moment/to-type' { - declare module.exports: any; -} - -declare module 'moment/src/lib/moment/to' { - declare module.exports: any; -} - -declare module 'moment/src/lib/moment/valid' { - declare module.exports: any; -} - -declare module 'moment/src/lib/parse/regex' { - declare module.exports: any; -} - -declare module 'moment/src/lib/parse/token' { - declare module.exports: any; -} - -declare module 'moment/src/lib/units/aliases' { - declare module.exports: any; -} - -declare module 'moment/src/lib/units/constants' { - declare module.exports: any; -} - -declare module 'moment/src/lib/units/day-of-month' { - declare module.exports: any; -} - -declare module 'moment/src/lib/units/day-of-week' { - declare module.exports: any; -} - -declare module 'moment/src/lib/units/day-of-year' { - declare module.exports: any; -} - -declare module 'moment/src/lib/units/hour' { - declare module.exports: any; -} - -declare module 'moment/src/lib/units/millisecond' { - declare module.exports: any; -} - -declare module 'moment/src/lib/units/minute' { - declare module.exports: any; -} - -declare module 'moment/src/lib/units/month' { - declare module.exports: any; -} - -declare module 'moment/src/lib/units/offset' { - declare module.exports: any; -} - -declare module 'moment/src/lib/units/priorities' { - declare module.exports: any; -} - -declare module 'moment/src/lib/units/quarter' { - declare module.exports: any; -} - -declare module 'moment/src/lib/units/second' { - declare module.exports: any; -} - -declare module 'moment/src/lib/units/timestamp' { - declare module.exports: any; -} - -declare module 'moment/src/lib/units/timezone' { - declare module.exports: any; -} - -declare module 'moment/src/lib/units/units' { - declare module.exports: any; -} - -declare module 'moment/src/lib/units/week-calendar-utils' { - declare module.exports: any; -} - -declare module 'moment/src/lib/units/week-year' { - declare module.exports: any; -} - -declare module 'moment/src/lib/units/week' { - declare module.exports: any; -} - -declare module 'moment/src/lib/units/year' { - declare module.exports: any; -} - -declare module 'moment/src/lib/utils/abs-ceil' { - declare module.exports: any; -} - -declare module 'moment/src/lib/utils/abs-floor' { - declare module.exports: any; -} - -declare module 'moment/src/lib/utils/abs-round' { - declare module.exports: any; -} - -declare module 'moment/src/lib/utils/compare-arrays' { - declare module.exports: any; -} - -declare module 'moment/src/lib/utils/defaults' { - declare module.exports: any; -} - -declare module 'moment/src/lib/utils/deprecate' { - declare module.exports: any; -} - -declare module 'moment/src/lib/utils/extend' { - declare module.exports: any; -} - -declare module 'moment/src/lib/utils/has-own-prop' { - declare module.exports: any; -} - -declare module 'moment/src/lib/utils/hooks' { - declare module.exports: any; -} - -declare module 'moment/src/lib/utils/index-of' { - declare module.exports: any; -} - -declare module 'moment/src/lib/utils/is-array' { - declare module.exports: any; -} - -declare module 'moment/src/lib/utils/is-date' { - declare module.exports: any; -} - -declare module 'moment/src/lib/utils/is-function' { - declare module.exports: any; -} - -declare module 'moment/src/lib/utils/is-number' { - declare module.exports: any; -} - -declare module 'moment/src/lib/utils/is-object-empty' { - declare module.exports: any; -} - -declare module 'moment/src/lib/utils/is-object' { - declare module.exports: any; -} - -declare module 'moment/src/lib/utils/is-undefined' { - declare module.exports: any; -} - -declare module 'moment/src/lib/utils/keys' { - declare module.exports: any; -} - -declare module 'moment/src/lib/utils/map' { - declare module.exports: any; -} - -declare module 'moment/src/lib/utils/mod' { - declare module.exports: any; -} - -declare module 'moment/src/lib/utils/some' { - declare module.exports: any; -} - -declare module 'moment/src/lib/utils/to-int' { - declare module.exports: any; -} - -declare module 'moment/src/lib/utils/zero-fill' { - declare module.exports: any; -} - -declare module 'moment/src/locale/af' { - declare module.exports: any; -} - -declare module 'moment/src/locale/ar-dz' { - declare module.exports: any; -} - -declare module 'moment/src/locale/ar-kw' { - declare module.exports: any; -} - -declare module 'moment/src/locale/ar-ly' { - declare module.exports: any; -} - -declare module 'moment/src/locale/ar-ma' { - declare module.exports: any; -} - -declare module 'moment/src/locale/ar-sa' { - declare module.exports: any; -} - -declare module 'moment/src/locale/ar-tn' { - declare module.exports: any; -} - -declare module 'moment/src/locale/ar' { - declare module.exports: any; -} - -declare module 'moment/src/locale/az' { - declare module.exports: any; -} - -declare module 'moment/src/locale/be' { - declare module.exports: any; -} - -declare module 'moment/src/locale/bg' { - declare module.exports: any; -} - -declare module 'moment/src/locale/bm' { - declare module.exports: any; -} - -declare module 'moment/src/locale/bn' { - declare module.exports: any; -} - -declare module 'moment/src/locale/bo' { - declare module.exports: any; -} - -declare module 'moment/src/locale/br' { - declare module.exports: any; -} - -declare module 'moment/src/locale/bs' { - declare module.exports: any; -} - -declare module 'moment/src/locale/ca' { - declare module.exports: any; -} - -declare module 'moment/src/locale/cs' { - declare module.exports: any; -} - -declare module 'moment/src/locale/cv' { - declare module.exports: any; -} - -declare module 'moment/src/locale/cy' { - declare module.exports: any; -} - -declare module 'moment/src/locale/da' { - declare module.exports: any; -} - -declare module 'moment/src/locale/de-at' { - declare module.exports: any; -} - -declare module 'moment/src/locale/de-ch' { - declare module.exports: any; -} - -declare module 'moment/src/locale/de' { - declare module.exports: any; -} - -declare module 'moment/src/locale/dv' { - declare module.exports: any; -} - -declare module 'moment/src/locale/el' { - declare module.exports: any; -} - -declare module 'moment/src/locale/en-au' { - declare module.exports: any; -} - -declare module 'moment/src/locale/en-ca' { - declare module.exports: any; -} - -declare module 'moment/src/locale/en-gb' { - declare module.exports: any; -} - -declare module 'moment/src/locale/en-ie' { - declare module.exports: any; -} - -declare module 'moment/src/locale/en-il' { - declare module.exports: any; -} - -declare module 'moment/src/locale/en-nz' { - declare module.exports: any; -} - -declare module 'moment/src/locale/eo' { - declare module.exports: any; -} - -declare module 'moment/src/locale/es-do' { - declare module.exports: any; -} - -declare module 'moment/src/locale/es-us' { - declare module.exports: any; -} - -declare module 'moment/src/locale/es' { - declare module.exports: any; -} - -declare module 'moment/src/locale/et' { - declare module.exports: any; -} - -declare module 'moment/src/locale/eu' { - declare module.exports: any; -} - -declare module 'moment/src/locale/fa' { - declare module.exports: any; -} - -declare module 'moment/src/locale/fi' { - declare module.exports: any; -} - -declare module 'moment/src/locale/fo' { - declare module.exports: any; -} - -declare module 'moment/src/locale/fr-ca' { - declare module.exports: any; -} - -declare module 'moment/src/locale/fr-ch' { - declare module.exports: any; -} - -declare module 'moment/src/locale/fr' { - declare module.exports: any; -} - -declare module 'moment/src/locale/fy' { - declare module.exports: any; -} - -declare module 'moment/src/locale/gd' { - declare module.exports: any; -} - -declare module 'moment/src/locale/gl' { - declare module.exports: any; -} - -declare module 'moment/src/locale/gom-latn' { - declare module.exports: any; -} - -declare module 'moment/src/locale/gu' { - declare module.exports: any; -} - -declare module 'moment/src/locale/he' { - declare module.exports: any; -} - -declare module 'moment/src/locale/hi' { - declare module.exports: any; -} - -declare module 'moment/src/locale/hr' { - declare module.exports: any; -} - -declare module 'moment/src/locale/hu' { - declare module.exports: any; -} - -declare module 'moment/src/locale/hy-am' { - declare module.exports: any; -} - -declare module 'moment/src/locale/id' { - declare module.exports: any; -} - -declare module 'moment/src/locale/is' { - declare module.exports: any; -} - -declare module 'moment/src/locale/it' { - declare module.exports: any; -} - -declare module 'moment/src/locale/ja' { - declare module.exports: any; -} - -declare module 'moment/src/locale/jv' { - declare module.exports: any; -} - -declare module 'moment/src/locale/ka' { - declare module.exports: any; -} - -declare module 'moment/src/locale/kk' { - declare module.exports: any; -} - -declare module 'moment/src/locale/km' { - declare module.exports: any; -} - -declare module 'moment/src/locale/kn' { - declare module.exports: any; -} - -declare module 'moment/src/locale/ko' { - declare module.exports: any; -} - -declare module 'moment/src/locale/ky' { - declare module.exports: any; -} - -declare module 'moment/src/locale/lb' { - declare module.exports: any; -} - -declare module 'moment/src/locale/lo' { - declare module.exports: any; -} - -declare module 'moment/src/locale/lt' { - declare module.exports: any; -} - -declare module 'moment/src/locale/lv' { - declare module.exports: any; -} - -declare module 'moment/src/locale/me' { - declare module.exports: any; -} - -declare module 'moment/src/locale/mi' { - declare module.exports: any; -} - -declare module 'moment/src/locale/mk' { - declare module.exports: any; -} - -declare module 'moment/src/locale/ml' { - declare module.exports: any; -} - -declare module 'moment/src/locale/mn' { - declare module.exports: any; -} - -declare module 'moment/src/locale/mr' { - declare module.exports: any; -} - -declare module 'moment/src/locale/ms-my' { - declare module.exports: any; -} - -declare module 'moment/src/locale/ms' { - declare module.exports: any; -} - -declare module 'moment/src/locale/mt' { - declare module.exports: any; -} - -declare module 'moment/src/locale/my' { - declare module.exports: any; -} - -declare module 'moment/src/locale/nb' { - declare module.exports: any; -} - -declare module 'moment/src/locale/ne' { - declare module.exports: any; -} - -declare module 'moment/src/locale/nl-be' { - declare module.exports: any; -} - -declare module 'moment/src/locale/nl' { - declare module.exports: any; -} - -declare module 'moment/src/locale/nn' { - declare module.exports: any; -} - -declare module 'moment/src/locale/pa-in' { - declare module.exports: any; -} - -declare module 'moment/src/locale/pl' { - declare module.exports: any; -} - -declare module 'moment/src/locale/pt-br' { - declare module.exports: any; -} - -declare module 'moment/src/locale/pt' { - declare module.exports: any; -} - -declare module 'moment/src/locale/ro' { - declare module.exports: any; -} - -declare module 'moment/src/locale/ru' { - declare module.exports: any; -} - -declare module 'moment/src/locale/sd' { - declare module.exports: any; -} - -declare module 'moment/src/locale/se' { - declare module.exports: any; -} - -declare module 'moment/src/locale/si' { - declare module.exports: any; -} - -declare module 'moment/src/locale/sk' { - declare module.exports: any; -} - -declare module 'moment/src/locale/sl' { - declare module.exports: any; -} - -declare module 'moment/src/locale/sq' { - declare module.exports: any; -} - -declare module 'moment/src/locale/sr-cyrl' { - declare module.exports: any; -} - -declare module 'moment/src/locale/sr' { - declare module.exports: any; -} - -declare module 'moment/src/locale/ss' { - declare module.exports: any; -} - -declare module 'moment/src/locale/sv' { - declare module.exports: any; -} - -declare module 'moment/src/locale/sw' { - declare module.exports: any; -} - -declare module 'moment/src/locale/ta' { - declare module.exports: any; -} - -declare module 'moment/src/locale/te' { - declare module.exports: any; -} - -declare module 'moment/src/locale/tet' { - declare module.exports: any; -} - -declare module 'moment/src/locale/tg' { - declare module.exports: any; -} - -declare module 'moment/src/locale/th' { - declare module.exports: any; -} - -declare module 'moment/src/locale/tl-ph' { - declare module.exports: any; -} - -declare module 'moment/src/locale/tlh' { - declare module.exports: any; -} - -declare module 'moment/src/locale/tr' { - declare module.exports: any; -} - -declare module 'moment/src/locale/tzl' { - declare module.exports: any; -} - -declare module 'moment/src/locale/tzm-latn' { - declare module.exports: any; -} - -declare module 'moment/src/locale/tzm' { - declare module.exports: any; -} - -declare module 'moment/src/locale/ug-cn' { - declare module.exports: any; -} - -declare module 'moment/src/locale/uk' { - declare module.exports: any; -} - -declare module 'moment/src/locale/ur' { - declare module.exports: any; -} - -declare module 'moment/src/locale/uz-latn' { - declare module.exports: any; -} - -declare module 'moment/src/locale/uz' { - declare module.exports: any; -} - -declare module 'moment/src/locale/vi' { - declare module.exports: any; -} - -declare module 'moment/src/locale/x-pseudo' { - declare module.exports: any; -} - -declare module 'moment/src/locale/yo' { - declare module.exports: any; -} - -declare module 'moment/src/locale/zh-cn' { - declare module.exports: any; -} - -declare module 'moment/src/locale/zh-hk' { - declare module.exports: any; -} - -declare module 'moment/src/locale/zh-tw' { - declare module.exports: any; -} - -declare module 'moment/src/moment' { - declare module.exports: any; -} - -// Filename aliases -declare module 'moment/ender.js' { - declare module.exports: $Exports<'moment/ender'>; -} -declare module 'moment/locale/af.js' { - declare module.exports: $Exports<'moment/locale/af'>; -} -declare module 'moment/locale/ar-dz.js' { - declare module.exports: $Exports<'moment/locale/ar-dz'>; -} -declare module 'moment/locale/ar-kw.js' { - declare module.exports: $Exports<'moment/locale/ar-kw'>; -} -declare module 'moment/locale/ar-ly.js' { - declare module.exports: $Exports<'moment/locale/ar-ly'>; -} -declare module 'moment/locale/ar-ma.js' { - declare module.exports: $Exports<'moment/locale/ar-ma'>; -} -declare module 'moment/locale/ar-sa.js' { - declare module.exports: $Exports<'moment/locale/ar-sa'>; -} -declare module 'moment/locale/ar-tn.js' { - declare module.exports: $Exports<'moment/locale/ar-tn'>; -} -declare module 'moment/locale/ar.js' { - declare module.exports: $Exports<'moment/locale/ar'>; -} -declare module 'moment/locale/az.js' { - declare module.exports: $Exports<'moment/locale/az'>; -} -declare module 'moment/locale/be.js' { - declare module.exports: $Exports<'moment/locale/be'>; -} -declare module 'moment/locale/bg.js' { - declare module.exports: $Exports<'moment/locale/bg'>; -} -declare module 'moment/locale/bm.js' { - declare module.exports: $Exports<'moment/locale/bm'>; -} -declare module 'moment/locale/bn.js' { - declare module.exports: $Exports<'moment/locale/bn'>; -} -declare module 'moment/locale/bo.js' { - declare module.exports: $Exports<'moment/locale/bo'>; -} -declare module 'moment/locale/br.js' { - declare module.exports: $Exports<'moment/locale/br'>; -} -declare module 'moment/locale/bs.js' { - declare module.exports: $Exports<'moment/locale/bs'>; -} -declare module 'moment/locale/ca.js' { - declare module.exports: $Exports<'moment/locale/ca'>; -} -declare module 'moment/locale/cs.js' { - declare module.exports: $Exports<'moment/locale/cs'>; -} -declare module 'moment/locale/cv.js' { - declare module.exports: $Exports<'moment/locale/cv'>; -} -declare module 'moment/locale/cy.js' { - declare module.exports: $Exports<'moment/locale/cy'>; -} -declare module 'moment/locale/da.js' { - declare module.exports: $Exports<'moment/locale/da'>; -} -declare module 'moment/locale/de-at.js' { - declare module.exports: $Exports<'moment/locale/de-at'>; -} -declare module 'moment/locale/de-ch.js' { - declare module.exports: $Exports<'moment/locale/de-ch'>; -} -declare module 'moment/locale/de.js' { - declare module.exports: $Exports<'moment/locale/de'>; -} -declare module 'moment/locale/dv.js' { - declare module.exports: $Exports<'moment/locale/dv'>; -} -declare module 'moment/locale/el.js' { - declare module.exports: $Exports<'moment/locale/el'>; -} -declare module 'moment/locale/en-au.js' { - declare module.exports: $Exports<'moment/locale/en-au'>; -} -declare module 'moment/locale/en-ca.js' { - declare module.exports: $Exports<'moment/locale/en-ca'>; -} -declare module 'moment/locale/en-gb.js' { - declare module.exports: $Exports<'moment/locale/en-gb'>; -} -declare module 'moment/locale/en-ie.js' { - declare module.exports: $Exports<'moment/locale/en-ie'>; -} -declare module 'moment/locale/en-il.js' { - declare module.exports: $Exports<'moment/locale/en-il'>; -} -declare module 'moment/locale/en-nz.js' { - declare module.exports: $Exports<'moment/locale/en-nz'>; -} -declare module 'moment/locale/eo.js' { - declare module.exports: $Exports<'moment/locale/eo'>; -} -declare module 'moment/locale/es-do.js' { - declare module.exports: $Exports<'moment/locale/es-do'>; -} -declare module 'moment/locale/es-us.js' { - declare module.exports: $Exports<'moment/locale/es-us'>; -} -declare module 'moment/locale/es.js' { - declare module.exports: $Exports<'moment/locale/es'>; -} -declare module 'moment/locale/et.js' { - declare module.exports: $Exports<'moment/locale/et'>; -} -declare module 'moment/locale/eu.js' { - declare module.exports: $Exports<'moment/locale/eu'>; -} -declare module 'moment/locale/fa.js' { - declare module.exports: $Exports<'moment/locale/fa'>; -} -declare module 'moment/locale/fi.js' { - declare module.exports: $Exports<'moment/locale/fi'>; -} -declare module 'moment/locale/fo.js' { - declare module.exports: $Exports<'moment/locale/fo'>; -} -declare module 'moment/locale/fr-ca.js' { - declare module.exports: $Exports<'moment/locale/fr-ca'>; -} -declare module 'moment/locale/fr-ch.js' { - declare module.exports: $Exports<'moment/locale/fr-ch'>; -} -declare module 'moment/locale/fr.js' { - declare module.exports: $Exports<'moment/locale/fr'>; -} -declare module 'moment/locale/fy.js' { - declare module.exports: $Exports<'moment/locale/fy'>; -} -declare module 'moment/locale/gd.js' { - declare module.exports: $Exports<'moment/locale/gd'>; -} -declare module 'moment/locale/gl.js' { - declare module.exports: $Exports<'moment/locale/gl'>; -} -declare module 'moment/locale/gom-latn.js' { - declare module.exports: $Exports<'moment/locale/gom-latn'>; -} -declare module 'moment/locale/gu.js' { - declare module.exports: $Exports<'moment/locale/gu'>; -} -declare module 'moment/locale/he.js' { - declare module.exports: $Exports<'moment/locale/he'>; -} -declare module 'moment/locale/hi.js' { - declare module.exports: $Exports<'moment/locale/hi'>; -} -declare module 'moment/locale/hr.js' { - declare module.exports: $Exports<'moment/locale/hr'>; -} -declare module 'moment/locale/hu.js' { - declare module.exports: $Exports<'moment/locale/hu'>; -} -declare module 'moment/locale/hy-am.js' { - declare module.exports: $Exports<'moment/locale/hy-am'>; -} -declare module 'moment/locale/id.js' { - declare module.exports: $Exports<'moment/locale/id'>; -} -declare module 'moment/locale/is.js' { - declare module.exports: $Exports<'moment/locale/is'>; -} -declare module 'moment/locale/it.js' { - declare module.exports: $Exports<'moment/locale/it'>; -} -declare module 'moment/locale/ja.js' { - declare module.exports: $Exports<'moment/locale/ja'>; -} -declare module 'moment/locale/jv.js' { - declare module.exports: $Exports<'moment/locale/jv'>; -} -declare module 'moment/locale/ka.js' { - declare module.exports: $Exports<'moment/locale/ka'>; -} -declare module 'moment/locale/kk.js' { - declare module.exports: $Exports<'moment/locale/kk'>; -} -declare module 'moment/locale/km.js' { - declare module.exports: $Exports<'moment/locale/km'>; -} -declare module 'moment/locale/kn.js' { - declare module.exports: $Exports<'moment/locale/kn'>; -} -declare module 'moment/locale/ko.js' { - declare module.exports: $Exports<'moment/locale/ko'>; -} -declare module 'moment/locale/ky.js' { - declare module.exports: $Exports<'moment/locale/ky'>; -} -declare module 'moment/locale/lb.js' { - declare module.exports: $Exports<'moment/locale/lb'>; -} -declare module 'moment/locale/lo.js' { - declare module.exports: $Exports<'moment/locale/lo'>; -} -declare module 'moment/locale/lt.js' { - declare module.exports: $Exports<'moment/locale/lt'>; -} -declare module 'moment/locale/lv.js' { - declare module.exports: $Exports<'moment/locale/lv'>; -} -declare module 'moment/locale/me.js' { - declare module.exports: $Exports<'moment/locale/me'>; -} -declare module 'moment/locale/mi.js' { - declare module.exports: $Exports<'moment/locale/mi'>; -} -declare module 'moment/locale/mk.js' { - declare module.exports: $Exports<'moment/locale/mk'>; -} -declare module 'moment/locale/ml.js' { - declare module.exports: $Exports<'moment/locale/ml'>; -} -declare module 'moment/locale/mn.js' { - declare module.exports: $Exports<'moment/locale/mn'>; -} -declare module 'moment/locale/mr.js' { - declare module.exports: $Exports<'moment/locale/mr'>; -} -declare module 'moment/locale/ms-my.js' { - declare module.exports: $Exports<'moment/locale/ms-my'>; -} -declare module 'moment/locale/ms.js' { - declare module.exports: $Exports<'moment/locale/ms'>; -} -declare module 'moment/locale/mt.js' { - declare module.exports: $Exports<'moment/locale/mt'>; -} -declare module 'moment/locale/my.js' { - declare module.exports: $Exports<'moment/locale/my'>; -} -declare module 'moment/locale/nb.js' { - declare module.exports: $Exports<'moment/locale/nb'>; -} -declare module 'moment/locale/ne.js' { - declare module.exports: $Exports<'moment/locale/ne'>; -} -declare module 'moment/locale/nl-be.js' { - declare module.exports: $Exports<'moment/locale/nl-be'>; -} -declare module 'moment/locale/nl.js' { - declare module.exports: $Exports<'moment/locale/nl'>; -} -declare module 'moment/locale/nn.js' { - declare module.exports: $Exports<'moment/locale/nn'>; -} -declare module 'moment/locale/pa-in.js' { - declare module.exports: $Exports<'moment/locale/pa-in'>; -} -declare module 'moment/locale/pl.js' { - declare module.exports: $Exports<'moment/locale/pl'>; -} -declare module 'moment/locale/pt-br.js' { - declare module.exports: $Exports<'moment/locale/pt-br'>; -} -declare module 'moment/locale/pt.js' { - declare module.exports: $Exports<'moment/locale/pt'>; -} -declare module 'moment/locale/ro.js' { - declare module.exports: $Exports<'moment/locale/ro'>; -} -declare module 'moment/locale/ru.js' { - declare module.exports: $Exports<'moment/locale/ru'>; -} -declare module 'moment/locale/sd.js' { - declare module.exports: $Exports<'moment/locale/sd'>; -} -declare module 'moment/locale/se.js' { - declare module.exports: $Exports<'moment/locale/se'>; -} -declare module 'moment/locale/si.js' { - declare module.exports: $Exports<'moment/locale/si'>; -} -declare module 'moment/locale/sk.js' { - declare module.exports: $Exports<'moment/locale/sk'>; -} -declare module 'moment/locale/sl.js' { - declare module.exports: $Exports<'moment/locale/sl'>; -} -declare module 'moment/locale/sq.js' { - declare module.exports: $Exports<'moment/locale/sq'>; -} -declare module 'moment/locale/sr-cyrl.js' { - declare module.exports: $Exports<'moment/locale/sr-cyrl'>; -} -declare module 'moment/locale/sr.js' { - declare module.exports: $Exports<'moment/locale/sr'>; -} -declare module 'moment/locale/ss.js' { - declare module.exports: $Exports<'moment/locale/ss'>; -} -declare module 'moment/locale/sv.js' { - declare module.exports: $Exports<'moment/locale/sv'>; -} -declare module 'moment/locale/sw.js' { - declare module.exports: $Exports<'moment/locale/sw'>; -} -declare module 'moment/locale/ta.js' { - declare module.exports: $Exports<'moment/locale/ta'>; -} -declare module 'moment/locale/te.js' { - declare module.exports: $Exports<'moment/locale/te'>; -} -declare module 'moment/locale/tet.js' { - declare module.exports: $Exports<'moment/locale/tet'>; -} -declare module 'moment/locale/tg.js' { - declare module.exports: $Exports<'moment/locale/tg'>; -} -declare module 'moment/locale/th.js' { - declare module.exports: $Exports<'moment/locale/th'>; -} -declare module 'moment/locale/tl-ph.js' { - declare module.exports: $Exports<'moment/locale/tl-ph'>; -} -declare module 'moment/locale/tlh.js' { - declare module.exports: $Exports<'moment/locale/tlh'>; -} -declare module 'moment/locale/tr.js' { - declare module.exports: $Exports<'moment/locale/tr'>; -} -declare module 'moment/locale/tzl.js' { - declare module.exports: $Exports<'moment/locale/tzl'>; -} -declare module 'moment/locale/tzm-latn.js' { - declare module.exports: $Exports<'moment/locale/tzm-latn'>; -} -declare module 'moment/locale/tzm.js' { - declare module.exports: $Exports<'moment/locale/tzm'>; -} -declare module 'moment/locale/ug-cn.js' { - declare module.exports: $Exports<'moment/locale/ug-cn'>; -} -declare module 'moment/locale/uk.js' { - declare module.exports: $Exports<'moment/locale/uk'>; -} -declare module 'moment/locale/ur.js' { - declare module.exports: $Exports<'moment/locale/ur'>; -} -declare module 'moment/locale/uz-latn.js' { - declare module.exports: $Exports<'moment/locale/uz-latn'>; -} -declare module 'moment/locale/uz.js' { - declare module.exports: $Exports<'moment/locale/uz'>; -} -declare module 'moment/locale/vi.js' { - declare module.exports: $Exports<'moment/locale/vi'>; -} -declare module 'moment/locale/x-pseudo.js' { - declare module.exports: $Exports<'moment/locale/x-pseudo'>; -} -declare module 'moment/locale/yo.js' { - declare module.exports: $Exports<'moment/locale/yo'>; -} -declare module 'moment/locale/zh-cn.js' { - declare module.exports: $Exports<'moment/locale/zh-cn'>; -} -declare module 'moment/locale/zh-hk.js' { - declare module.exports: $Exports<'moment/locale/zh-hk'>; -} -declare module 'moment/locale/zh-tw.js' { - declare module.exports: $Exports<'moment/locale/zh-tw'>; -} -declare module 'moment/min/locales.js' { - declare module.exports: $Exports<'moment/min/locales'>; -} -declare module 'moment/min/locales.min.js' { - declare module.exports: $Exports<'moment/min/locales.min'>; -} -declare module 'moment/min/moment-with-locales.js' { - declare module.exports: $Exports<'moment/min/moment-with-locales'>; -} -declare module 'moment/min/moment-with-locales.min.js' { - declare module.exports: $Exports<'moment/min/moment-with-locales.min'>; -} -declare module 'moment/min/moment.min.js' { - declare module.exports: $Exports<'moment/min/moment.min'>; -} -declare module 'moment/moment.js' { - declare module.exports: $Exports<'moment/moment'>; -} -declare module 'moment/package.js' { - declare module.exports: $Exports<'moment/package'>; -} -declare module 'moment/src/lib/create/check-overflow.js' { - declare module.exports: $Exports<'moment/src/lib/create/check-overflow'>; -} -declare module 'moment/src/lib/create/date-from-array.js' { - declare module.exports: $Exports<'moment/src/lib/create/date-from-array'>; -} -declare module 'moment/src/lib/create/from-anything.js' { - declare module.exports: $Exports<'moment/src/lib/create/from-anything'>; -} -declare module 'moment/src/lib/create/from-array.js' { - declare module.exports: $Exports<'moment/src/lib/create/from-array'>; -} -declare module 'moment/src/lib/create/from-object.js' { - declare module.exports: $Exports<'moment/src/lib/create/from-object'>; -} -declare module 'moment/src/lib/create/from-string-and-array.js' { - declare module.exports: $Exports<'moment/src/lib/create/from-string-and-array'>; -} -declare module 'moment/src/lib/create/from-string-and-format.js' { - declare module.exports: $Exports<'moment/src/lib/create/from-string-and-format'>; -} -declare module 'moment/src/lib/create/from-string.js' { - declare module.exports: $Exports<'moment/src/lib/create/from-string'>; -} -declare module 'moment/src/lib/create/local.js' { - declare module.exports: $Exports<'moment/src/lib/create/local'>; -} -declare module 'moment/src/lib/create/parsing-flags.js' { - declare module.exports: $Exports<'moment/src/lib/create/parsing-flags'>; -} -declare module 'moment/src/lib/create/utc.js' { - declare module.exports: $Exports<'moment/src/lib/create/utc'>; -} -declare module 'moment/src/lib/create/valid.js' { - declare module.exports: $Exports<'moment/src/lib/create/valid'>; -} -declare module 'moment/src/lib/duration/abs.js' { - declare module.exports: $Exports<'moment/src/lib/duration/abs'>; -} -declare module 'moment/src/lib/duration/add-subtract.js' { - declare module.exports: $Exports<'moment/src/lib/duration/add-subtract'>; -} -declare module 'moment/src/lib/duration/as.js' { - declare module.exports: $Exports<'moment/src/lib/duration/as'>; -} -declare module 'moment/src/lib/duration/bubble.js' { - declare module.exports: $Exports<'moment/src/lib/duration/bubble'>; -} -declare module 'moment/src/lib/duration/clone.js' { - declare module.exports: $Exports<'moment/src/lib/duration/clone'>; -} -declare module 'moment/src/lib/duration/constructor.js' { - declare module.exports: $Exports<'moment/src/lib/duration/constructor'>; -} -declare module 'moment/src/lib/duration/create.js' { - declare module.exports: $Exports<'moment/src/lib/duration/create'>; -} -declare module 'moment/src/lib/duration/duration.js' { - declare module.exports: $Exports<'moment/src/lib/duration/duration'>; -} -declare module 'moment/src/lib/duration/get.js' { - declare module.exports: $Exports<'moment/src/lib/duration/get'>; -} -declare module 'moment/src/lib/duration/humanize.js' { - declare module.exports: $Exports<'moment/src/lib/duration/humanize'>; -} -declare module 'moment/src/lib/duration/iso-string.js' { - declare module.exports: $Exports<'moment/src/lib/duration/iso-string'>; -} -declare module 'moment/src/lib/duration/prototype.js' { - declare module.exports: $Exports<'moment/src/lib/duration/prototype'>; -} -declare module 'moment/src/lib/duration/valid.js' { - declare module.exports: $Exports<'moment/src/lib/duration/valid'>; -} -declare module 'moment/src/lib/format/format.js' { - declare module.exports: $Exports<'moment/src/lib/format/format'>; -} -declare module 'moment/src/lib/locale/base-config.js' { - declare module.exports: $Exports<'moment/src/lib/locale/base-config'>; -} -declare module 'moment/src/lib/locale/calendar.js' { - declare module.exports: $Exports<'moment/src/lib/locale/calendar'>; -} -declare module 'moment/src/lib/locale/constructor.js' { - declare module.exports: $Exports<'moment/src/lib/locale/constructor'>; -} -declare module 'moment/src/lib/locale/en.js' { - declare module.exports: $Exports<'moment/src/lib/locale/en'>; -} -declare module 'moment/src/lib/locale/formats.js' { - declare module.exports: $Exports<'moment/src/lib/locale/formats'>; -} -declare module 'moment/src/lib/locale/invalid.js' { - declare module.exports: $Exports<'moment/src/lib/locale/invalid'>; -} -declare module 'moment/src/lib/locale/lists.js' { - declare module.exports: $Exports<'moment/src/lib/locale/lists'>; -} -declare module 'moment/src/lib/locale/locale.js' { - declare module.exports: $Exports<'moment/src/lib/locale/locale'>; -} -declare module 'moment/src/lib/locale/locales.js' { - declare module.exports: $Exports<'moment/src/lib/locale/locales'>; -} -declare module 'moment/src/lib/locale/ordinal.js' { - declare module.exports: $Exports<'moment/src/lib/locale/ordinal'>; -} -declare module 'moment/src/lib/locale/pre-post-format.js' { - declare module.exports: $Exports<'moment/src/lib/locale/pre-post-format'>; -} -declare module 'moment/src/lib/locale/prototype.js' { - declare module.exports: $Exports<'moment/src/lib/locale/prototype'>; -} -declare module 'moment/src/lib/locale/relative.js' { - declare module.exports: $Exports<'moment/src/lib/locale/relative'>; -} -declare module 'moment/src/lib/locale/set.js' { - declare module.exports: $Exports<'moment/src/lib/locale/set'>; -} -declare module 'moment/src/lib/moment/add-subtract.js' { - declare module.exports: $Exports<'moment/src/lib/moment/add-subtract'>; -} -declare module 'moment/src/lib/moment/calendar.js' { - declare module.exports: $Exports<'moment/src/lib/moment/calendar'>; -} -declare module 'moment/src/lib/moment/clone.js' { - declare module.exports: $Exports<'moment/src/lib/moment/clone'>; -} -declare module 'moment/src/lib/moment/compare.js' { - declare module.exports: $Exports<'moment/src/lib/moment/compare'>; -} -declare module 'moment/src/lib/moment/constructor.js' { - declare module.exports: $Exports<'moment/src/lib/moment/constructor'>; -} -declare module 'moment/src/lib/moment/creation-data.js' { - declare module.exports: $Exports<'moment/src/lib/moment/creation-data'>; -} -declare module 'moment/src/lib/moment/diff.js' { - declare module.exports: $Exports<'moment/src/lib/moment/diff'>; -} -declare module 'moment/src/lib/moment/format.js' { - declare module.exports: $Exports<'moment/src/lib/moment/format'>; -} -declare module 'moment/src/lib/moment/from.js' { - declare module.exports: $Exports<'moment/src/lib/moment/from'>; -} -declare module 'moment/src/lib/moment/get-set.js' { - declare module.exports: $Exports<'moment/src/lib/moment/get-set'>; -} -declare module 'moment/src/lib/moment/locale.js' { - declare module.exports: $Exports<'moment/src/lib/moment/locale'>; -} -declare module 'moment/src/lib/moment/min-max.js' { - declare module.exports: $Exports<'moment/src/lib/moment/min-max'>; -} -declare module 'moment/src/lib/moment/moment.js' { - declare module.exports: $Exports<'moment/src/lib/moment/moment'>; -} -declare module 'moment/src/lib/moment/now.js' { - declare module.exports: $Exports<'moment/src/lib/moment/now'>; -} -declare module 'moment/src/lib/moment/prototype.js' { - declare module.exports: $Exports<'moment/src/lib/moment/prototype'>; -} -declare module 'moment/src/lib/moment/start-end-of.js' { - declare module.exports: $Exports<'moment/src/lib/moment/start-end-of'>; -} -declare module 'moment/src/lib/moment/to-type.js' { - declare module.exports: $Exports<'moment/src/lib/moment/to-type'>; -} -declare module 'moment/src/lib/moment/to.js' { - declare module.exports: $Exports<'moment/src/lib/moment/to'>; -} -declare module 'moment/src/lib/moment/valid.js' { - declare module.exports: $Exports<'moment/src/lib/moment/valid'>; -} -declare module 'moment/src/lib/parse/regex.js' { - declare module.exports: $Exports<'moment/src/lib/parse/regex'>; -} -declare module 'moment/src/lib/parse/token.js' { - declare module.exports: $Exports<'moment/src/lib/parse/token'>; -} -declare module 'moment/src/lib/units/aliases.js' { - declare module.exports: $Exports<'moment/src/lib/units/aliases'>; -} -declare module 'moment/src/lib/units/constants.js' { - declare module.exports: $Exports<'moment/src/lib/units/constants'>; -} -declare module 'moment/src/lib/units/day-of-month.js' { - declare module.exports: $Exports<'moment/src/lib/units/day-of-month'>; -} -declare module 'moment/src/lib/units/day-of-week.js' { - declare module.exports: $Exports<'moment/src/lib/units/day-of-week'>; -} -declare module 'moment/src/lib/units/day-of-year.js' { - declare module.exports: $Exports<'moment/src/lib/units/day-of-year'>; -} -declare module 'moment/src/lib/units/hour.js' { - declare module.exports: $Exports<'moment/src/lib/units/hour'>; -} -declare module 'moment/src/lib/units/millisecond.js' { - declare module.exports: $Exports<'moment/src/lib/units/millisecond'>; -} -declare module 'moment/src/lib/units/minute.js' { - declare module.exports: $Exports<'moment/src/lib/units/minute'>; -} -declare module 'moment/src/lib/units/month.js' { - declare module.exports: $Exports<'moment/src/lib/units/month'>; -} -declare module 'moment/src/lib/units/offset.js' { - declare module.exports: $Exports<'moment/src/lib/units/offset'>; -} -declare module 'moment/src/lib/units/priorities.js' { - declare module.exports: $Exports<'moment/src/lib/units/priorities'>; -} -declare module 'moment/src/lib/units/quarter.js' { - declare module.exports: $Exports<'moment/src/lib/units/quarter'>; -} -declare module 'moment/src/lib/units/second.js' { - declare module.exports: $Exports<'moment/src/lib/units/second'>; -} -declare module 'moment/src/lib/units/timestamp.js' { - declare module.exports: $Exports<'moment/src/lib/units/timestamp'>; -} -declare module 'moment/src/lib/units/timezone.js' { - declare module.exports: $Exports<'moment/src/lib/units/timezone'>; -} -declare module 'moment/src/lib/units/units.js' { - declare module.exports: $Exports<'moment/src/lib/units/units'>; -} -declare module 'moment/src/lib/units/week-calendar-utils.js' { - declare module.exports: $Exports<'moment/src/lib/units/week-calendar-utils'>; -} -declare module 'moment/src/lib/units/week-year.js' { - declare module.exports: $Exports<'moment/src/lib/units/week-year'>; -} -declare module 'moment/src/lib/units/week.js' { - declare module.exports: $Exports<'moment/src/lib/units/week'>; -} -declare module 'moment/src/lib/units/year.js' { - declare module.exports: $Exports<'moment/src/lib/units/year'>; -} -declare module 'moment/src/lib/utils/abs-ceil.js' { - declare module.exports: $Exports<'moment/src/lib/utils/abs-ceil'>; -} -declare module 'moment/src/lib/utils/abs-floor.js' { - declare module.exports: $Exports<'moment/src/lib/utils/abs-floor'>; -} -declare module 'moment/src/lib/utils/abs-round.js' { - declare module.exports: $Exports<'moment/src/lib/utils/abs-round'>; -} -declare module 'moment/src/lib/utils/compare-arrays.js' { - declare module.exports: $Exports<'moment/src/lib/utils/compare-arrays'>; -} -declare module 'moment/src/lib/utils/defaults.js' { - declare module.exports: $Exports<'moment/src/lib/utils/defaults'>; -} -declare module 'moment/src/lib/utils/deprecate.js' { - declare module.exports: $Exports<'moment/src/lib/utils/deprecate'>; -} -declare module 'moment/src/lib/utils/extend.js' { - declare module.exports: $Exports<'moment/src/lib/utils/extend'>; -} -declare module 'moment/src/lib/utils/has-own-prop.js' { - declare module.exports: $Exports<'moment/src/lib/utils/has-own-prop'>; -} -declare module 'moment/src/lib/utils/hooks.js' { - declare module.exports: $Exports<'moment/src/lib/utils/hooks'>; -} -declare module 'moment/src/lib/utils/index-of.js' { - declare module.exports: $Exports<'moment/src/lib/utils/index-of'>; -} -declare module 'moment/src/lib/utils/is-array.js' { - declare module.exports: $Exports<'moment/src/lib/utils/is-array'>; -} -declare module 'moment/src/lib/utils/is-date.js' { - declare module.exports: $Exports<'moment/src/lib/utils/is-date'>; -} -declare module 'moment/src/lib/utils/is-function.js' { - declare module.exports: $Exports<'moment/src/lib/utils/is-function'>; -} -declare module 'moment/src/lib/utils/is-number.js' { - declare module.exports: $Exports<'moment/src/lib/utils/is-number'>; -} -declare module 'moment/src/lib/utils/is-object-empty.js' { - declare module.exports: $Exports<'moment/src/lib/utils/is-object-empty'>; -} -declare module 'moment/src/lib/utils/is-object.js' { - declare module.exports: $Exports<'moment/src/lib/utils/is-object'>; -} -declare module 'moment/src/lib/utils/is-undefined.js' { - declare module.exports: $Exports<'moment/src/lib/utils/is-undefined'>; -} -declare module 'moment/src/lib/utils/keys.js' { - declare module.exports: $Exports<'moment/src/lib/utils/keys'>; -} -declare module 'moment/src/lib/utils/map.js' { - declare module.exports: $Exports<'moment/src/lib/utils/map'>; -} -declare module 'moment/src/lib/utils/mod.js' { - declare module.exports: $Exports<'moment/src/lib/utils/mod'>; -} -declare module 'moment/src/lib/utils/some.js' { - declare module.exports: $Exports<'moment/src/lib/utils/some'>; -} -declare module 'moment/src/lib/utils/to-int.js' { - declare module.exports: $Exports<'moment/src/lib/utils/to-int'>; -} -declare module 'moment/src/lib/utils/zero-fill.js' { - declare module.exports: $Exports<'moment/src/lib/utils/zero-fill'>; -} -declare module 'moment/src/locale/af.js' { - declare module.exports: $Exports<'moment/src/locale/af'>; -} -declare module 'moment/src/locale/ar-dz.js' { - declare module.exports: $Exports<'moment/src/locale/ar-dz'>; -} -declare module 'moment/src/locale/ar-kw.js' { - declare module.exports: $Exports<'moment/src/locale/ar-kw'>; -} -declare module 'moment/src/locale/ar-ly.js' { - declare module.exports: $Exports<'moment/src/locale/ar-ly'>; -} -declare module 'moment/src/locale/ar-ma.js' { - declare module.exports: $Exports<'moment/src/locale/ar-ma'>; -} -declare module 'moment/src/locale/ar-sa.js' { - declare module.exports: $Exports<'moment/src/locale/ar-sa'>; -} -declare module 'moment/src/locale/ar-tn.js' { - declare module.exports: $Exports<'moment/src/locale/ar-tn'>; -} -declare module 'moment/src/locale/ar.js' { - declare module.exports: $Exports<'moment/src/locale/ar'>; -} -declare module 'moment/src/locale/az.js' { - declare module.exports: $Exports<'moment/src/locale/az'>; -} -declare module 'moment/src/locale/be.js' { - declare module.exports: $Exports<'moment/src/locale/be'>; -} -declare module 'moment/src/locale/bg.js' { - declare module.exports: $Exports<'moment/src/locale/bg'>; -} -declare module 'moment/src/locale/bm.js' { - declare module.exports: $Exports<'moment/src/locale/bm'>; -} -declare module 'moment/src/locale/bn.js' { - declare module.exports: $Exports<'moment/src/locale/bn'>; -} -declare module 'moment/src/locale/bo.js' { - declare module.exports: $Exports<'moment/src/locale/bo'>; -} -declare module 'moment/src/locale/br.js' { - declare module.exports: $Exports<'moment/src/locale/br'>; -} -declare module 'moment/src/locale/bs.js' { - declare module.exports: $Exports<'moment/src/locale/bs'>; -} -declare module 'moment/src/locale/ca.js' { - declare module.exports: $Exports<'moment/src/locale/ca'>; -} -declare module 'moment/src/locale/cs.js' { - declare module.exports: $Exports<'moment/src/locale/cs'>; -} -declare module 'moment/src/locale/cv.js' { - declare module.exports: $Exports<'moment/src/locale/cv'>; -} -declare module 'moment/src/locale/cy.js' { - declare module.exports: $Exports<'moment/src/locale/cy'>; -} -declare module 'moment/src/locale/da.js' { - declare module.exports: $Exports<'moment/src/locale/da'>; -} -declare module 'moment/src/locale/de-at.js' { - declare module.exports: $Exports<'moment/src/locale/de-at'>; -} -declare module 'moment/src/locale/de-ch.js' { - declare module.exports: $Exports<'moment/src/locale/de-ch'>; -} -declare module 'moment/src/locale/de.js' { - declare module.exports: $Exports<'moment/src/locale/de'>; -} -declare module 'moment/src/locale/dv.js' { - declare module.exports: $Exports<'moment/src/locale/dv'>; -} -declare module 'moment/src/locale/el.js' { - declare module.exports: $Exports<'moment/src/locale/el'>; -} -declare module 'moment/src/locale/en-au.js' { - declare module.exports: $Exports<'moment/src/locale/en-au'>; -} -declare module 'moment/src/locale/en-ca.js' { - declare module.exports: $Exports<'moment/src/locale/en-ca'>; -} -declare module 'moment/src/locale/en-gb.js' { - declare module.exports: $Exports<'moment/src/locale/en-gb'>; -} -declare module 'moment/src/locale/en-ie.js' { - declare module.exports: $Exports<'moment/src/locale/en-ie'>; -} -declare module 'moment/src/locale/en-il.js' { - declare module.exports: $Exports<'moment/src/locale/en-il'>; -} -declare module 'moment/src/locale/en-nz.js' { - declare module.exports: $Exports<'moment/src/locale/en-nz'>; -} -declare module 'moment/src/locale/eo.js' { - declare module.exports: $Exports<'moment/src/locale/eo'>; -} -declare module 'moment/src/locale/es-do.js' { - declare module.exports: $Exports<'moment/src/locale/es-do'>; -} -declare module 'moment/src/locale/es-us.js' { - declare module.exports: $Exports<'moment/src/locale/es-us'>; -} -declare module 'moment/src/locale/es.js' { - declare module.exports: $Exports<'moment/src/locale/es'>; -} -declare module 'moment/src/locale/et.js' { - declare module.exports: $Exports<'moment/src/locale/et'>; -} -declare module 'moment/src/locale/eu.js' { - declare module.exports: $Exports<'moment/src/locale/eu'>; -} -declare module 'moment/src/locale/fa.js' { - declare module.exports: $Exports<'moment/src/locale/fa'>; -} -declare module 'moment/src/locale/fi.js' { - declare module.exports: $Exports<'moment/src/locale/fi'>; -} -declare module 'moment/src/locale/fo.js' { - declare module.exports: $Exports<'moment/src/locale/fo'>; -} -declare module 'moment/src/locale/fr-ca.js' { - declare module.exports: $Exports<'moment/src/locale/fr-ca'>; -} -declare module 'moment/src/locale/fr-ch.js' { - declare module.exports: $Exports<'moment/src/locale/fr-ch'>; -} -declare module 'moment/src/locale/fr.js' { - declare module.exports: $Exports<'moment/src/locale/fr'>; -} -declare module 'moment/src/locale/fy.js' { - declare module.exports: $Exports<'moment/src/locale/fy'>; -} -declare module 'moment/src/locale/gd.js' { - declare module.exports: $Exports<'moment/src/locale/gd'>; -} -declare module 'moment/src/locale/gl.js' { - declare module.exports: $Exports<'moment/src/locale/gl'>; -} -declare module 'moment/src/locale/gom-latn.js' { - declare module.exports: $Exports<'moment/src/locale/gom-latn'>; -} -declare module 'moment/src/locale/gu.js' { - declare module.exports: $Exports<'moment/src/locale/gu'>; -} -declare module 'moment/src/locale/he.js' { - declare module.exports: $Exports<'moment/src/locale/he'>; -} -declare module 'moment/src/locale/hi.js' { - declare module.exports: $Exports<'moment/src/locale/hi'>; -} -declare module 'moment/src/locale/hr.js' { - declare module.exports: $Exports<'moment/src/locale/hr'>; -} -declare module 'moment/src/locale/hu.js' { - declare module.exports: $Exports<'moment/src/locale/hu'>; -} -declare module 'moment/src/locale/hy-am.js' { - declare module.exports: $Exports<'moment/src/locale/hy-am'>; -} -declare module 'moment/src/locale/id.js' { - declare module.exports: $Exports<'moment/src/locale/id'>; -} -declare module 'moment/src/locale/is.js' { - declare module.exports: $Exports<'moment/src/locale/is'>; -} -declare module 'moment/src/locale/it.js' { - declare module.exports: $Exports<'moment/src/locale/it'>; -} -declare module 'moment/src/locale/ja.js' { - declare module.exports: $Exports<'moment/src/locale/ja'>; -} -declare module 'moment/src/locale/jv.js' { - declare module.exports: $Exports<'moment/src/locale/jv'>; -} -declare module 'moment/src/locale/ka.js' { - declare module.exports: $Exports<'moment/src/locale/ka'>; -} -declare module 'moment/src/locale/kk.js' { - declare module.exports: $Exports<'moment/src/locale/kk'>; -} -declare module 'moment/src/locale/km.js' { - declare module.exports: $Exports<'moment/src/locale/km'>; -} -declare module 'moment/src/locale/kn.js' { - declare module.exports: $Exports<'moment/src/locale/kn'>; -} -declare module 'moment/src/locale/ko.js' { - declare module.exports: $Exports<'moment/src/locale/ko'>; -} -declare module 'moment/src/locale/ky.js' { - declare module.exports: $Exports<'moment/src/locale/ky'>; -} -declare module 'moment/src/locale/lb.js' { - declare module.exports: $Exports<'moment/src/locale/lb'>; -} -declare module 'moment/src/locale/lo.js' { - declare module.exports: $Exports<'moment/src/locale/lo'>; -} -declare module 'moment/src/locale/lt.js' { - declare module.exports: $Exports<'moment/src/locale/lt'>; -} -declare module 'moment/src/locale/lv.js' { - declare module.exports: $Exports<'moment/src/locale/lv'>; -} -declare module 'moment/src/locale/me.js' { - declare module.exports: $Exports<'moment/src/locale/me'>; -} -declare module 'moment/src/locale/mi.js' { - declare module.exports: $Exports<'moment/src/locale/mi'>; -} -declare module 'moment/src/locale/mk.js' { - declare module.exports: $Exports<'moment/src/locale/mk'>; -} -declare module 'moment/src/locale/ml.js' { - declare module.exports: $Exports<'moment/src/locale/ml'>; -} -declare module 'moment/src/locale/mn.js' { - declare module.exports: $Exports<'moment/src/locale/mn'>; -} -declare module 'moment/src/locale/mr.js' { - declare module.exports: $Exports<'moment/src/locale/mr'>; -} -declare module 'moment/src/locale/ms-my.js' { - declare module.exports: $Exports<'moment/src/locale/ms-my'>; -} -declare module 'moment/src/locale/ms.js' { - declare module.exports: $Exports<'moment/src/locale/ms'>; -} -declare module 'moment/src/locale/mt.js' { - declare module.exports: $Exports<'moment/src/locale/mt'>; -} -declare module 'moment/src/locale/my.js' { - declare module.exports: $Exports<'moment/src/locale/my'>; -} -declare module 'moment/src/locale/nb.js' { - declare module.exports: $Exports<'moment/src/locale/nb'>; -} -declare module 'moment/src/locale/ne.js' { - declare module.exports: $Exports<'moment/src/locale/ne'>; -} -declare module 'moment/src/locale/nl-be.js' { - declare module.exports: $Exports<'moment/src/locale/nl-be'>; -} -declare module 'moment/src/locale/nl.js' { - declare module.exports: $Exports<'moment/src/locale/nl'>; -} -declare module 'moment/src/locale/nn.js' { - declare module.exports: $Exports<'moment/src/locale/nn'>; -} -declare module 'moment/src/locale/pa-in.js' { - declare module.exports: $Exports<'moment/src/locale/pa-in'>; -} -declare module 'moment/src/locale/pl.js' { - declare module.exports: $Exports<'moment/src/locale/pl'>; -} -declare module 'moment/src/locale/pt-br.js' { - declare module.exports: $Exports<'moment/src/locale/pt-br'>; -} -declare module 'moment/src/locale/pt.js' { - declare module.exports: $Exports<'moment/src/locale/pt'>; -} -declare module 'moment/src/locale/ro.js' { - declare module.exports: $Exports<'moment/src/locale/ro'>; -} -declare module 'moment/src/locale/ru.js' { - declare module.exports: $Exports<'moment/src/locale/ru'>; -} -declare module 'moment/src/locale/sd.js' { - declare module.exports: $Exports<'moment/src/locale/sd'>; -} -declare module 'moment/src/locale/se.js' { - declare module.exports: $Exports<'moment/src/locale/se'>; -} -declare module 'moment/src/locale/si.js' { - declare module.exports: $Exports<'moment/src/locale/si'>; -} -declare module 'moment/src/locale/sk.js' { - declare module.exports: $Exports<'moment/src/locale/sk'>; -} -declare module 'moment/src/locale/sl.js' { - declare module.exports: $Exports<'moment/src/locale/sl'>; -} -declare module 'moment/src/locale/sq.js' { - declare module.exports: $Exports<'moment/src/locale/sq'>; -} -declare module 'moment/src/locale/sr-cyrl.js' { - declare module.exports: $Exports<'moment/src/locale/sr-cyrl'>; -} -declare module 'moment/src/locale/sr.js' { - declare module.exports: $Exports<'moment/src/locale/sr'>; -} -declare module 'moment/src/locale/ss.js' { - declare module.exports: $Exports<'moment/src/locale/ss'>; -} -declare module 'moment/src/locale/sv.js' { - declare module.exports: $Exports<'moment/src/locale/sv'>; -} -declare module 'moment/src/locale/sw.js' { - declare module.exports: $Exports<'moment/src/locale/sw'>; -} -declare module 'moment/src/locale/ta.js' { - declare module.exports: $Exports<'moment/src/locale/ta'>; -} -declare module 'moment/src/locale/te.js' { - declare module.exports: $Exports<'moment/src/locale/te'>; -} -declare module 'moment/src/locale/tet.js' { - declare module.exports: $Exports<'moment/src/locale/tet'>; -} -declare module 'moment/src/locale/tg.js' { - declare module.exports: $Exports<'moment/src/locale/tg'>; -} -declare module 'moment/src/locale/th.js' { - declare module.exports: $Exports<'moment/src/locale/th'>; -} -declare module 'moment/src/locale/tl-ph.js' { - declare module.exports: $Exports<'moment/src/locale/tl-ph'>; -} -declare module 'moment/src/locale/tlh.js' { - declare module.exports: $Exports<'moment/src/locale/tlh'>; -} -declare module 'moment/src/locale/tr.js' { - declare module.exports: $Exports<'moment/src/locale/tr'>; -} -declare module 'moment/src/locale/tzl.js' { - declare module.exports: $Exports<'moment/src/locale/tzl'>; -} -declare module 'moment/src/locale/tzm-latn.js' { - declare module.exports: $Exports<'moment/src/locale/tzm-latn'>; -} -declare module 'moment/src/locale/tzm.js' { - declare module.exports: $Exports<'moment/src/locale/tzm'>; -} -declare module 'moment/src/locale/ug-cn.js' { - declare module.exports: $Exports<'moment/src/locale/ug-cn'>; -} -declare module 'moment/src/locale/uk.js' { - declare module.exports: $Exports<'moment/src/locale/uk'>; -} -declare module 'moment/src/locale/ur.js' { - declare module.exports: $Exports<'moment/src/locale/ur'>; -} -declare module 'moment/src/locale/uz-latn.js' { - declare module.exports: $Exports<'moment/src/locale/uz-latn'>; -} -declare module 'moment/src/locale/uz.js' { - declare module.exports: $Exports<'moment/src/locale/uz'>; -} -declare module 'moment/src/locale/vi.js' { - declare module.exports: $Exports<'moment/src/locale/vi'>; -} -declare module 'moment/src/locale/x-pseudo.js' { - declare module.exports: $Exports<'moment/src/locale/x-pseudo'>; -} -declare module 'moment/src/locale/yo.js' { - declare module.exports: $Exports<'moment/src/locale/yo'>; -} -declare module 'moment/src/locale/zh-cn.js' { - declare module.exports: $Exports<'moment/src/locale/zh-cn'>; -} -declare module 'moment/src/locale/zh-hk.js' { - declare module.exports: $Exports<'moment/src/locale/zh-hk'>; -} -declare module 'moment/src/locale/zh-tw.js' { - declare module.exports: $Exports<'moment/src/locale/zh-tw'>; -} -declare module 'moment/src/moment.js' { - declare module.exports: $Exports<'moment/src/moment'>; -} diff --git a/flow-typed/npm/npm_vx.x.x.js b/flow-typed/npm/npm_vx.x.x.js deleted file mode 100644 index 3b6d700..0000000 --- a/flow-typed/npm/npm_vx.x.x.js +++ /dev/null @@ -1,1432 +0,0 @@ -// flow-typed signature: 56ad3e75c2f2dacd04942625acc8b374 -// flow-typed version: <>/npm_v^6.2.0/flow_v0.77.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'npm' - * - * 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 'npm' { - 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 'npm/bin/npm-cli' { - declare module.exports: any; -} - -declare module 'npm/bin/npx-cli' { - declare module.exports: any; -} - -declare module 'npm/html/static/toc' { - declare module.exports: any; -} - -declare module 'npm/lib/access' { - declare module.exports: any; -} - -declare module 'npm/lib/adduser' { - declare module.exports: any; -} - -declare module 'npm/lib/audit' { - declare module.exports: any; -} - -declare module 'npm/lib/auth/legacy' { - declare module.exports: any; -} - -declare module 'npm/lib/auth/oauth' { - declare module.exports: any; -} - -declare module 'npm/lib/auth/saml' { - declare module.exports: any; -} - -declare module 'npm/lib/auth/sso' { - declare module.exports: any; -} - -declare module 'npm/lib/bin' { - declare module.exports: any; -} - -declare module 'npm/lib/bugs' { - declare module.exports: any; -} - -declare module 'npm/lib/build' { - declare module.exports: any; -} - -declare module 'npm/lib/cache' { - declare module.exports: any; -} - -declare module 'npm/lib/ci' { - declare module.exports: any; -} - -declare module 'npm/lib/completion' { - declare module.exports: any; -} - -declare module 'npm/lib/config' { - declare module.exports: any; -} - -declare module 'npm/lib/config/bin-links' { - declare module.exports: any; -} - -declare module 'npm/lib/config/clear-credentials-by-uri' { - declare module.exports: any; -} - -declare module 'npm/lib/config/cmd-list' { - declare module.exports: any; -} - -declare module 'npm/lib/config/core' { - declare module.exports: any; -} - -declare module 'npm/lib/config/defaults' { - declare module.exports: any; -} - -declare module 'npm/lib/config/fetch-opts' { - declare module.exports: any; -} - -declare module 'npm/lib/config/gentle-fs' { - declare module.exports: any; -} - -declare module 'npm/lib/config/get-credentials-by-uri' { - declare module.exports: any; -} - -declare module 'npm/lib/config/lifecycle' { - declare module.exports: any; -} - -declare module 'npm/lib/config/load-cafile' { - declare module.exports: any; -} - -declare module 'npm/lib/config/load-prefix' { - declare module.exports: any; -} - -declare module 'npm/lib/config/load-uid' { - declare module.exports: any; -} - -declare module 'npm/lib/config/nerf-dart' { - declare module.exports: any; -} - -declare module 'npm/lib/config/pacote' { - declare module.exports: any; -} - -declare module 'npm/lib/config/reg-client' { - declare module.exports: any; -} - -declare module 'npm/lib/config/set-credentials-by-uri' { - declare module.exports: any; -} - -declare module 'npm/lib/config/set-user' { - declare module.exports: any; -} - -declare module 'npm/lib/dedupe' { - declare module.exports: any; -} - -declare module 'npm/lib/deprecate' { - declare module.exports: any; -} - -declare module 'npm/lib/dist-tag' { - declare module.exports: any; -} - -declare module 'npm/lib/docs' { - declare module.exports: any; -} - -declare module 'npm/lib/doctor' { - declare module.exports: any; -} - -declare module 'npm/lib/doctor/check-files-permission' { - declare module.exports: any; -} - -declare module 'npm/lib/doctor/check-ping' { - declare module.exports: any; -} - -declare module 'npm/lib/doctor/get-git-path' { - declare module.exports: any; -} - -declare module 'npm/lib/doctor/get-latest-nodejs-version' { - declare module.exports: any; -} - -declare module 'npm/lib/doctor/get-latest-npm-version' { - declare module.exports: any; -} - -declare module 'npm/lib/doctor/verify-cached-files' { - declare module.exports: any; -} - -declare module 'npm/lib/edit' { - declare module.exports: any; -} - -declare module 'npm/lib/explore' { - declare module.exports: any; -} - -declare module 'npm/lib/fetch-package-metadata' { - declare module.exports: any; -} - -declare module 'npm/lib/get' { - declare module.exports: any; -} - -declare module 'npm/lib/help-search' { - declare module.exports: any; -} - -declare module 'npm/lib/help' { - declare module.exports: any; -} - -declare module 'npm/lib/hook' { - declare module.exports: any; -} - -declare module 'npm/lib/init' { - declare module.exports: any; -} - -declare module 'npm/lib/install-ci-test' { - declare module.exports: any; -} - -declare module 'npm/lib/install-test' { - declare module.exports: any; -} - -declare module 'npm/lib/install' { - declare module.exports: any; -} - -declare module 'npm/lib/install/access-error' { - declare module.exports: any; -} - -declare module 'npm/lib/install/action/build' { - declare module.exports: any; -} - -declare module 'npm/lib/install/action/extract-worker' { - declare module.exports: any; -} - -declare module 'npm/lib/install/action/extract' { - declare module.exports: any; -} - -declare module 'npm/lib/install/action/fetch' { - declare module.exports: any; -} - -declare module 'npm/lib/install/action/finalize' { - declare module.exports: any; -} - -declare module 'npm/lib/install/action/global-install' { - declare module.exports: any; -} - -declare module 'npm/lib/install/action/global-link' { - declare module.exports: any; -} - -declare module 'npm/lib/install/action/install' { - declare module.exports: any; -} - -declare module 'npm/lib/install/action/move' { - declare module.exports: any; -} - -declare module 'npm/lib/install/action/postinstall' { - declare module.exports: any; -} - -declare module 'npm/lib/install/action/preinstall' { - declare module.exports: any; -} - -declare module 'npm/lib/install/action/prepare' { - declare module.exports: any; -} - -declare module 'npm/lib/install/action/refresh-package-json' { - declare module.exports: any; -} - -declare module 'npm/lib/install/action/remove' { - declare module.exports: any; -} - -declare module 'npm/lib/install/action/unbuild' { - declare module.exports: any; -} - -declare module 'npm/lib/install/actions' { - declare module.exports: any; -} - -declare module 'npm/lib/install/and-add-parent-to-errors' { - declare module.exports: any; -} - -declare module 'npm/lib/install/and-finish-tracker' { - declare module.exports: any; -} - -declare module 'npm/lib/install/and-ignore-errors' { - declare module.exports: any; -} - -declare module 'npm/lib/install/audit' { - declare module.exports: any; -} - -declare module 'npm/lib/install/check-permissions' { - declare module.exports: any; -} - -declare module 'npm/lib/install/copy-tree' { - declare module.exports: any; -} - -declare module 'npm/lib/install/decompose-actions' { - declare module.exports: any; -} - -declare module 'npm/lib/install/deps' { - declare module.exports: any; -} - -declare module 'npm/lib/install/diff-trees' { - declare module.exports: any; -} - -declare module 'npm/lib/install/exists' { - declare module.exports: any; -} - -declare module 'npm/lib/install/flatten-tree' { - declare module.exports: any; -} - -declare module 'npm/lib/install/get-requested' { - declare module.exports: any; -} - -declare module 'npm/lib/install/has-modern-meta' { - declare module.exports: any; -} - -declare module 'npm/lib/install/inflate-bundled' { - declare module.exports: any; -} - -declare module 'npm/lib/install/inflate-shrinkwrap' { - declare module.exports: any; -} - -declare module 'npm/lib/install/is-dev-dep' { - declare module.exports: any; -} - -declare module 'npm/lib/install/is-extraneous' { - declare module.exports: any; -} - -declare module 'npm/lib/install/is-fs-access-available' { - declare module.exports: any; -} - -declare module 'npm/lib/install/is-only-dev' { - declare module.exports: any; -} - -declare module 'npm/lib/install/is-only-optional' { - declare module.exports: any; -} - -declare module 'npm/lib/install/is-opt-dep' { - declare module.exports: any; -} - -declare module 'npm/lib/install/is-prod-dep' { - declare module.exports: any; -} - -declare module 'npm/lib/install/module-staging-path' { - declare module.exports: any; -} - -declare module 'npm/lib/install/mutate-into-logical-tree' { - declare module.exports: any; -} - -declare module 'npm/lib/install/node' { - declare module.exports: any; -} - -declare module 'npm/lib/install/read-shrinkwrap' { - declare module.exports: any; -} - -declare module 'npm/lib/install/realize-shrinkwrap-specifier' { - declare module.exports: any; -} - -declare module 'npm/lib/install/report-optional-failure' { - declare module.exports: any; -} - -declare module 'npm/lib/install/save' { - declare module.exports: any; -} - -declare module 'npm/lib/install/update-package-json' { - declare module.exports: any; -} - -declare module 'npm/lib/install/validate-args' { - declare module.exports: any; -} - -declare module 'npm/lib/install/validate-tree' { - declare module.exports: any; -} - -declare module 'npm/lib/install/writable' { - declare module.exports: any; -} - -declare module 'npm/lib/link' { - declare module.exports: any; -} - -declare module 'npm/lib/logout' { - declare module.exports: any; -} - -declare module 'npm/lib/ls' { - declare module.exports: any; -} - -declare module 'npm/lib/npm' { - declare module.exports: any; -} - -declare module 'npm/lib/outdated' { - declare module.exports: any; -} - -declare module 'npm/lib/owner' { - declare module.exports: any; -} - -declare module 'npm/lib/pack' { - declare module.exports: any; -} - -declare module 'npm/lib/ping' { - declare module.exports: any; -} - -declare module 'npm/lib/prefix' { - declare module.exports: any; -} - -declare module 'npm/lib/profile' { - declare module.exports: any; -} - -declare module 'npm/lib/prune' { - declare module.exports: any; -} - -declare module 'npm/lib/publish' { - declare module.exports: any; -} - -declare module 'npm/lib/rebuild' { - declare module.exports: any; -} - -declare module 'npm/lib/repo' { - declare module.exports: any; -} - -declare module 'npm/lib/restart' { - declare module.exports: any; -} - -declare module 'npm/lib/root' { - declare module.exports: any; -} - -declare module 'npm/lib/run-script' { - declare module.exports: any; -} - -declare module 'npm/lib/search' { - declare module.exports: any; -} - -declare module 'npm/lib/search/all-package-metadata' { - declare module.exports: any; -} - -declare module 'npm/lib/search/all-package-search' { - declare module.exports: any; -} - -declare module 'npm/lib/search/esearch' { - declare module.exports: any; -} - -declare module 'npm/lib/search/format-package-stream' { - declare module.exports: any; -} - -declare module 'npm/lib/search/package-filter' { - declare module.exports: any; -} - -declare module 'npm/lib/set' { - declare module.exports: any; -} - -declare module 'npm/lib/shrinkwrap' { - declare module.exports: any; -} - -declare module 'npm/lib/star' { - declare module.exports: any; -} - -declare module 'npm/lib/stars' { - declare module.exports: any; -} - -declare module 'npm/lib/start' { - declare module.exports: any; -} - -declare module 'npm/lib/stop' { - declare module.exports: any; -} - -declare module 'npm/lib/substack' { - declare module.exports: any; -} - -declare module 'npm/lib/team' { - declare module.exports: any; -} - -declare module 'npm/lib/test' { - declare module.exports: any; -} - -declare module 'npm/lib/token' { - declare module.exports: any; -} - -declare module 'npm/lib/unbuild' { - declare module.exports: any; -} - -declare module 'npm/lib/uninstall' { - declare module.exports: any; -} - -declare module 'npm/lib/unpublish' { - declare module.exports: any; -} - -declare module 'npm/lib/update' { - declare module.exports: any; -} - -declare module 'npm/lib/utils/ansi-trim' { - declare module.exports: any; -} - -declare module 'npm/lib/utils/child-path' { - declare module.exports: any; -} - -declare module 'npm/lib/utils/completion/file-completion' { - declare module.exports: any; -} - -declare module 'npm/lib/utils/completion/installed-deep' { - declare module.exports: any; -} - -declare module 'npm/lib/utils/completion/installed-shallow' { - declare module.exports: any; -} - -declare module 'npm/lib/utils/correct-mkdir' { - declare module.exports: any; -} - -declare module 'npm/lib/utils/deep-sort-object' { - declare module.exports: any; -} - -declare module 'npm/lib/utils/depr-check' { - declare module.exports: any; -} - -declare module 'npm/lib/utils/did-you-mean' { - declare module.exports: any; -} - -declare module 'npm/lib/utils/error-handler' { - declare module.exports: any; -} - -declare module 'npm/lib/utils/error-message' { - declare module.exports: any; -} - -declare module 'npm/lib/utils/escape-arg' { - declare module.exports: any; -} - -declare module 'npm/lib/utils/escape-exec-path' { - declare module.exports: any; -} - -declare module 'npm/lib/utils/gently-rm' { - declare module.exports: any; -} - -declare module 'npm/lib/utils/get-publish-config' { - declare module.exports: any; -} - -declare module 'npm/lib/utils/git' { - declare module.exports: any; -} - -declare module 'npm/lib/utils/gunzip-maybe' { - declare module.exports: any; -} - -declare module 'npm/lib/utils/is-registry' { - declare module.exports: any; -} - -declare module 'npm/lib/utils/is-windows-bash' { - declare module.exports: any; -} - -declare module 'npm/lib/utils/is-windows-shell' { - declare module.exports: any; -} - -declare module 'npm/lib/utils/is-windows' { - declare module.exports: any; -} - -declare module 'npm/lib/utils/lifecycle-cmd' { - declare module.exports: any; -} - -declare module 'npm/lib/utils/lifecycle' { - declare module.exports: any; -} - -declare module 'npm/lib/utils/link' { - declare module.exports: any; -} - -declare module 'npm/lib/utils/locker' { - declare module.exports: any; -} - -declare module 'npm/lib/utils/map-to-registry' { - declare module.exports: any; -} - -declare module 'npm/lib/utils/metrics-launch' { - declare module.exports: any; -} - -declare module 'npm/lib/utils/metrics' { - declare module.exports: any; -} - -declare module 'npm/lib/utils/module-name' { - declare module.exports: any; -} - -declare module 'npm/lib/utils/move' { - declare module.exports: any; -} - -declare module 'npm/lib/utils/no-progress-while-running' { - declare module.exports: any; -} - -declare module 'npm/lib/utils/open-url' { - declare module.exports: any; -} - -declare module 'npm/lib/utils/output' { - declare module.exports: any; -} - -declare module 'npm/lib/utils/package-id' { - declare module.exports: any; -} - -declare module 'npm/lib/utils/parse-json' { - declare module.exports: any; -} - -declare module 'npm/lib/utils/perf' { - declare module.exports: any; -} - -declare module 'npm/lib/utils/pick-manifest-from-registry-metadata' { - declare module.exports: any; -} - -declare module 'npm/lib/utils/pulse-till-done' { - declare module.exports: any; -} - -declare module 'npm/lib/utils/read-local-package' { - declare module.exports: any; -} - -declare module 'npm/lib/utils/read-user-info' { - declare module.exports: any; -} - -declare module 'npm/lib/utils/save-stack' { - declare module.exports: any; -} - -declare module 'npm/lib/utils/spawn' { - declare module.exports: any; -} - -declare module 'npm/lib/utils/stringify-package' { - declare module.exports: any; -} - -declare module 'npm/lib/utils/temp-filename' { - declare module.exports: any; -} - -declare module 'npm/lib/utils/umask' { - declare module.exports: any; -} - -declare module 'npm/lib/utils/unix-format-path' { - declare module.exports: any; -} - -declare module 'npm/lib/utils/unsupported' { - declare module.exports: any; -} - -declare module 'npm/lib/utils/usage' { - declare module.exports: any; -} - -declare module 'npm/lib/utils/warn-deprecated' { - declare module.exports: any; -} - -declare module 'npm/lib/version' { - declare module.exports: any; -} - -declare module 'npm/lib/view' { - declare module.exports: any; -} - -declare module 'npm/lib/visnup' { - declare module.exports: any; -} - -declare module 'npm/lib/whoami' { - declare module.exports: any; -} - -declare module 'npm/lib/xmas' { - declare module.exports: any; -} - -declare module 'npm/scripts/changelog' { - declare module.exports: any; -} - -declare module 'npm/scripts/gen-dev-ignores' { - declare module.exports: any; -} - -declare module 'npm/scripts/index-build' { - declare module.exports: any; -} - -declare module 'npm/scripts/publish-tag' { - declare module.exports: any; -} - -// Filename aliases -declare module 'npm/bin/npm-cli.js' { - declare module.exports: $Exports<'npm/bin/npm-cli'>; -} -declare module 'npm/bin/npx-cli.js' { - declare module.exports: $Exports<'npm/bin/npx-cli'>; -} -declare module 'npm/html/static/toc.js' { - declare module.exports: $Exports<'npm/html/static/toc'>; -} -declare module 'npm/lib/access.js' { - declare module.exports: $Exports<'npm/lib/access'>; -} -declare module 'npm/lib/adduser.js' { - declare module.exports: $Exports<'npm/lib/adduser'>; -} -declare module 'npm/lib/audit.js' { - declare module.exports: $Exports<'npm/lib/audit'>; -} -declare module 'npm/lib/auth/legacy.js' { - declare module.exports: $Exports<'npm/lib/auth/legacy'>; -} -declare module 'npm/lib/auth/oauth.js' { - declare module.exports: $Exports<'npm/lib/auth/oauth'>; -} -declare module 'npm/lib/auth/saml.js' { - declare module.exports: $Exports<'npm/lib/auth/saml'>; -} -declare module 'npm/lib/auth/sso.js' { - declare module.exports: $Exports<'npm/lib/auth/sso'>; -} -declare module 'npm/lib/bin.js' { - declare module.exports: $Exports<'npm/lib/bin'>; -} -declare module 'npm/lib/bugs.js' { - declare module.exports: $Exports<'npm/lib/bugs'>; -} -declare module 'npm/lib/build.js' { - declare module.exports: $Exports<'npm/lib/build'>; -} -declare module 'npm/lib/cache.js' { - declare module.exports: $Exports<'npm/lib/cache'>; -} -declare module 'npm/lib/ci.js' { - declare module.exports: $Exports<'npm/lib/ci'>; -} -declare module 'npm/lib/completion.js' { - declare module.exports: $Exports<'npm/lib/completion'>; -} -declare module 'npm/lib/config.js' { - declare module.exports: $Exports<'npm/lib/config'>; -} -declare module 'npm/lib/config/bin-links.js' { - declare module.exports: $Exports<'npm/lib/config/bin-links'>; -} -declare module 'npm/lib/config/clear-credentials-by-uri.js' { - declare module.exports: $Exports<'npm/lib/config/clear-credentials-by-uri'>; -} -declare module 'npm/lib/config/cmd-list.js' { - declare module.exports: $Exports<'npm/lib/config/cmd-list'>; -} -declare module 'npm/lib/config/core.js' { - declare module.exports: $Exports<'npm/lib/config/core'>; -} -declare module 'npm/lib/config/defaults.js' { - declare module.exports: $Exports<'npm/lib/config/defaults'>; -} -declare module 'npm/lib/config/fetch-opts.js' { - declare module.exports: $Exports<'npm/lib/config/fetch-opts'>; -} -declare module 'npm/lib/config/gentle-fs.js' { - declare module.exports: $Exports<'npm/lib/config/gentle-fs'>; -} -declare module 'npm/lib/config/get-credentials-by-uri.js' { - declare module.exports: $Exports<'npm/lib/config/get-credentials-by-uri'>; -} -declare module 'npm/lib/config/lifecycle.js' { - declare module.exports: $Exports<'npm/lib/config/lifecycle'>; -} -declare module 'npm/lib/config/load-cafile.js' { - declare module.exports: $Exports<'npm/lib/config/load-cafile'>; -} -declare module 'npm/lib/config/load-prefix.js' { - declare module.exports: $Exports<'npm/lib/config/load-prefix'>; -} -declare module 'npm/lib/config/load-uid.js' { - declare module.exports: $Exports<'npm/lib/config/load-uid'>; -} -declare module 'npm/lib/config/nerf-dart.js' { - declare module.exports: $Exports<'npm/lib/config/nerf-dart'>; -} -declare module 'npm/lib/config/pacote.js' { - declare module.exports: $Exports<'npm/lib/config/pacote'>; -} -declare module 'npm/lib/config/reg-client.js' { - declare module.exports: $Exports<'npm/lib/config/reg-client'>; -} -declare module 'npm/lib/config/set-credentials-by-uri.js' { - declare module.exports: $Exports<'npm/lib/config/set-credentials-by-uri'>; -} -declare module 'npm/lib/config/set-user.js' { - declare module.exports: $Exports<'npm/lib/config/set-user'>; -} -declare module 'npm/lib/dedupe.js' { - declare module.exports: $Exports<'npm/lib/dedupe'>; -} -declare module 'npm/lib/deprecate.js' { - declare module.exports: $Exports<'npm/lib/deprecate'>; -} -declare module 'npm/lib/dist-tag.js' { - declare module.exports: $Exports<'npm/lib/dist-tag'>; -} -declare module 'npm/lib/docs.js' { - declare module.exports: $Exports<'npm/lib/docs'>; -} -declare module 'npm/lib/doctor.js' { - declare module.exports: $Exports<'npm/lib/doctor'>; -} -declare module 'npm/lib/doctor/check-files-permission.js' { - declare module.exports: $Exports<'npm/lib/doctor/check-files-permission'>; -} -declare module 'npm/lib/doctor/check-ping.js' { - declare module.exports: $Exports<'npm/lib/doctor/check-ping'>; -} -declare module 'npm/lib/doctor/get-git-path.js' { - declare module.exports: $Exports<'npm/lib/doctor/get-git-path'>; -} -declare module 'npm/lib/doctor/get-latest-nodejs-version.js' { - declare module.exports: $Exports<'npm/lib/doctor/get-latest-nodejs-version'>; -} -declare module 'npm/lib/doctor/get-latest-npm-version.js' { - declare module.exports: $Exports<'npm/lib/doctor/get-latest-npm-version'>; -} -declare module 'npm/lib/doctor/verify-cached-files.js' { - declare module.exports: $Exports<'npm/lib/doctor/verify-cached-files'>; -} -declare module 'npm/lib/edit.js' { - declare module.exports: $Exports<'npm/lib/edit'>; -} -declare module 'npm/lib/explore.js' { - declare module.exports: $Exports<'npm/lib/explore'>; -} -declare module 'npm/lib/fetch-package-metadata.js' { - declare module.exports: $Exports<'npm/lib/fetch-package-metadata'>; -} -declare module 'npm/lib/get.js' { - declare module.exports: $Exports<'npm/lib/get'>; -} -declare module 'npm/lib/help-search.js' { - declare module.exports: $Exports<'npm/lib/help-search'>; -} -declare module 'npm/lib/help.js' { - declare module.exports: $Exports<'npm/lib/help'>; -} -declare module 'npm/lib/hook.js' { - declare module.exports: $Exports<'npm/lib/hook'>; -} -declare module 'npm/lib/init.js' { - declare module.exports: $Exports<'npm/lib/init'>; -} -declare module 'npm/lib/install-ci-test.js' { - declare module.exports: $Exports<'npm/lib/install-ci-test'>; -} -declare module 'npm/lib/install-test.js' { - declare module.exports: $Exports<'npm/lib/install-test'>; -} -declare module 'npm/lib/install.js' { - declare module.exports: $Exports<'npm/lib/install'>; -} -declare module 'npm/lib/install/access-error.js' { - declare module.exports: $Exports<'npm/lib/install/access-error'>; -} -declare module 'npm/lib/install/action/build.js' { - declare module.exports: $Exports<'npm/lib/install/action/build'>; -} -declare module 'npm/lib/install/action/extract-worker.js' { - declare module.exports: $Exports<'npm/lib/install/action/extract-worker'>; -} -declare module 'npm/lib/install/action/extract.js' { - declare module.exports: $Exports<'npm/lib/install/action/extract'>; -} -declare module 'npm/lib/install/action/fetch.js' { - declare module.exports: $Exports<'npm/lib/install/action/fetch'>; -} -declare module 'npm/lib/install/action/finalize.js' { - declare module.exports: $Exports<'npm/lib/install/action/finalize'>; -} -declare module 'npm/lib/install/action/global-install.js' { - declare module.exports: $Exports<'npm/lib/install/action/global-install'>; -} -declare module 'npm/lib/install/action/global-link.js' { - declare module.exports: $Exports<'npm/lib/install/action/global-link'>; -} -declare module 'npm/lib/install/action/install.js' { - declare module.exports: $Exports<'npm/lib/install/action/install'>; -} -declare module 'npm/lib/install/action/move.js' { - declare module.exports: $Exports<'npm/lib/install/action/move'>; -} -declare module 'npm/lib/install/action/postinstall.js' { - declare module.exports: $Exports<'npm/lib/install/action/postinstall'>; -} -declare module 'npm/lib/install/action/preinstall.js' { - declare module.exports: $Exports<'npm/lib/install/action/preinstall'>; -} -declare module 'npm/lib/install/action/prepare.js' { - declare module.exports: $Exports<'npm/lib/install/action/prepare'>; -} -declare module 'npm/lib/install/action/refresh-package-json.js' { - declare module.exports: $Exports<'npm/lib/install/action/refresh-package-json'>; -} -declare module 'npm/lib/install/action/remove.js' { - declare module.exports: $Exports<'npm/lib/install/action/remove'>; -} -declare module 'npm/lib/install/action/unbuild.js' { - declare module.exports: $Exports<'npm/lib/install/action/unbuild'>; -} -declare module 'npm/lib/install/actions.js' { - declare module.exports: $Exports<'npm/lib/install/actions'>; -} -declare module 'npm/lib/install/and-add-parent-to-errors.js' { - declare module.exports: $Exports<'npm/lib/install/and-add-parent-to-errors'>; -} -declare module 'npm/lib/install/and-finish-tracker.js' { - declare module.exports: $Exports<'npm/lib/install/and-finish-tracker'>; -} -declare module 'npm/lib/install/and-ignore-errors.js' { - declare module.exports: $Exports<'npm/lib/install/and-ignore-errors'>; -} -declare module 'npm/lib/install/audit.js' { - declare module.exports: $Exports<'npm/lib/install/audit'>; -} -declare module 'npm/lib/install/check-permissions.js' { - declare module.exports: $Exports<'npm/lib/install/check-permissions'>; -} -declare module 'npm/lib/install/copy-tree.js' { - declare module.exports: $Exports<'npm/lib/install/copy-tree'>; -} -declare module 'npm/lib/install/decompose-actions.js' { - declare module.exports: $Exports<'npm/lib/install/decompose-actions'>; -} -declare module 'npm/lib/install/deps.js' { - declare module.exports: $Exports<'npm/lib/install/deps'>; -} -declare module 'npm/lib/install/diff-trees.js' { - declare module.exports: $Exports<'npm/lib/install/diff-trees'>; -} -declare module 'npm/lib/install/exists.js' { - declare module.exports: $Exports<'npm/lib/install/exists'>; -} -declare module 'npm/lib/install/flatten-tree.js' { - declare module.exports: $Exports<'npm/lib/install/flatten-tree'>; -} -declare module 'npm/lib/install/get-requested.js' { - declare module.exports: $Exports<'npm/lib/install/get-requested'>; -} -declare module 'npm/lib/install/has-modern-meta.js' { - declare module.exports: $Exports<'npm/lib/install/has-modern-meta'>; -} -declare module 'npm/lib/install/inflate-bundled.js' { - declare module.exports: $Exports<'npm/lib/install/inflate-bundled'>; -} -declare module 'npm/lib/install/inflate-shrinkwrap.js' { - declare module.exports: $Exports<'npm/lib/install/inflate-shrinkwrap'>; -} -declare module 'npm/lib/install/is-dev-dep.js' { - declare module.exports: $Exports<'npm/lib/install/is-dev-dep'>; -} -declare module 'npm/lib/install/is-extraneous.js' { - declare module.exports: $Exports<'npm/lib/install/is-extraneous'>; -} -declare module 'npm/lib/install/is-fs-access-available.js' { - declare module.exports: $Exports<'npm/lib/install/is-fs-access-available'>; -} -declare module 'npm/lib/install/is-only-dev.js' { - declare module.exports: $Exports<'npm/lib/install/is-only-dev'>; -} -declare module 'npm/lib/install/is-only-optional.js' { - declare module.exports: $Exports<'npm/lib/install/is-only-optional'>; -} -declare module 'npm/lib/install/is-opt-dep.js' { - declare module.exports: $Exports<'npm/lib/install/is-opt-dep'>; -} -declare module 'npm/lib/install/is-prod-dep.js' { - declare module.exports: $Exports<'npm/lib/install/is-prod-dep'>; -} -declare module 'npm/lib/install/module-staging-path.js' { - declare module.exports: $Exports<'npm/lib/install/module-staging-path'>; -} -declare module 'npm/lib/install/mutate-into-logical-tree.js' { - declare module.exports: $Exports<'npm/lib/install/mutate-into-logical-tree'>; -} -declare module 'npm/lib/install/node.js' { - declare module.exports: $Exports<'npm/lib/install/node'>; -} -declare module 'npm/lib/install/read-shrinkwrap.js' { - declare module.exports: $Exports<'npm/lib/install/read-shrinkwrap'>; -} -declare module 'npm/lib/install/realize-shrinkwrap-specifier.js' { - declare module.exports: $Exports<'npm/lib/install/realize-shrinkwrap-specifier'>; -} -declare module 'npm/lib/install/report-optional-failure.js' { - declare module.exports: $Exports<'npm/lib/install/report-optional-failure'>; -} -declare module 'npm/lib/install/save.js' { - declare module.exports: $Exports<'npm/lib/install/save'>; -} -declare module 'npm/lib/install/update-package-json.js' { - declare module.exports: $Exports<'npm/lib/install/update-package-json'>; -} -declare module 'npm/lib/install/validate-args.js' { - declare module.exports: $Exports<'npm/lib/install/validate-args'>; -} -declare module 'npm/lib/install/validate-tree.js' { - declare module.exports: $Exports<'npm/lib/install/validate-tree'>; -} -declare module 'npm/lib/install/writable.js' { - declare module.exports: $Exports<'npm/lib/install/writable'>; -} -declare module 'npm/lib/link.js' { - declare module.exports: $Exports<'npm/lib/link'>; -} -declare module 'npm/lib/logout.js' { - declare module.exports: $Exports<'npm/lib/logout'>; -} -declare module 'npm/lib/ls.js' { - declare module.exports: $Exports<'npm/lib/ls'>; -} -declare module 'npm/lib/npm.js' { - declare module.exports: $Exports<'npm/lib/npm'>; -} -declare module 'npm/lib/outdated.js' { - declare module.exports: $Exports<'npm/lib/outdated'>; -} -declare module 'npm/lib/owner.js' { - declare module.exports: $Exports<'npm/lib/owner'>; -} -declare module 'npm/lib/pack.js' { - declare module.exports: $Exports<'npm/lib/pack'>; -} -declare module 'npm/lib/ping.js' { - declare module.exports: $Exports<'npm/lib/ping'>; -} -declare module 'npm/lib/prefix.js' { - declare module.exports: $Exports<'npm/lib/prefix'>; -} -declare module 'npm/lib/profile.js' { - declare module.exports: $Exports<'npm/lib/profile'>; -} -declare module 'npm/lib/prune.js' { - declare module.exports: $Exports<'npm/lib/prune'>; -} -declare module 'npm/lib/publish.js' { - declare module.exports: $Exports<'npm/lib/publish'>; -} -declare module 'npm/lib/rebuild.js' { - declare module.exports: $Exports<'npm/lib/rebuild'>; -} -declare module 'npm/lib/repo.js' { - declare module.exports: $Exports<'npm/lib/repo'>; -} -declare module 'npm/lib/restart.js' { - declare module.exports: $Exports<'npm/lib/restart'>; -} -declare module 'npm/lib/root.js' { - declare module.exports: $Exports<'npm/lib/root'>; -} -declare module 'npm/lib/run-script.js' { - declare module.exports: $Exports<'npm/lib/run-script'>; -} -declare module 'npm/lib/search.js' { - declare module.exports: $Exports<'npm/lib/search'>; -} -declare module 'npm/lib/search/all-package-metadata.js' { - declare module.exports: $Exports<'npm/lib/search/all-package-metadata'>; -} -declare module 'npm/lib/search/all-package-search.js' { - declare module.exports: $Exports<'npm/lib/search/all-package-search'>; -} -declare module 'npm/lib/search/esearch.js' { - declare module.exports: $Exports<'npm/lib/search/esearch'>; -} -declare module 'npm/lib/search/format-package-stream.js' { - declare module.exports: $Exports<'npm/lib/search/format-package-stream'>; -} -declare module 'npm/lib/search/package-filter.js' { - declare module.exports: $Exports<'npm/lib/search/package-filter'>; -} -declare module 'npm/lib/set.js' { - declare module.exports: $Exports<'npm/lib/set'>; -} -declare module 'npm/lib/shrinkwrap.js' { - declare module.exports: $Exports<'npm/lib/shrinkwrap'>; -} -declare module 'npm/lib/star.js' { - declare module.exports: $Exports<'npm/lib/star'>; -} -declare module 'npm/lib/stars.js' { - declare module.exports: $Exports<'npm/lib/stars'>; -} -declare module 'npm/lib/start.js' { - declare module.exports: $Exports<'npm/lib/start'>; -} -declare module 'npm/lib/stop.js' { - declare module.exports: $Exports<'npm/lib/stop'>; -} -declare module 'npm/lib/substack.js' { - declare module.exports: $Exports<'npm/lib/substack'>; -} -declare module 'npm/lib/team.js' { - declare module.exports: $Exports<'npm/lib/team'>; -} -declare module 'npm/lib/test.js' { - declare module.exports: $Exports<'npm/lib/test'>; -} -declare module 'npm/lib/token.js' { - declare module.exports: $Exports<'npm/lib/token'>; -} -declare module 'npm/lib/unbuild.js' { - declare module.exports: $Exports<'npm/lib/unbuild'>; -} -declare module 'npm/lib/uninstall.js' { - declare module.exports: $Exports<'npm/lib/uninstall'>; -} -declare module 'npm/lib/unpublish.js' { - declare module.exports: $Exports<'npm/lib/unpublish'>; -} -declare module 'npm/lib/update.js' { - declare module.exports: $Exports<'npm/lib/update'>; -} -declare module 'npm/lib/utils/ansi-trim.js' { - declare module.exports: $Exports<'npm/lib/utils/ansi-trim'>; -} -declare module 'npm/lib/utils/child-path.js' { - declare module.exports: $Exports<'npm/lib/utils/child-path'>; -} -declare module 'npm/lib/utils/completion/file-completion.js' { - declare module.exports: $Exports<'npm/lib/utils/completion/file-completion'>; -} -declare module 'npm/lib/utils/completion/installed-deep.js' { - declare module.exports: $Exports<'npm/lib/utils/completion/installed-deep'>; -} -declare module 'npm/lib/utils/completion/installed-shallow.js' { - declare module.exports: $Exports<'npm/lib/utils/completion/installed-shallow'>; -} -declare module 'npm/lib/utils/correct-mkdir.js' { - declare module.exports: $Exports<'npm/lib/utils/correct-mkdir'>; -} -declare module 'npm/lib/utils/deep-sort-object.js' { - declare module.exports: $Exports<'npm/lib/utils/deep-sort-object'>; -} -declare module 'npm/lib/utils/depr-check.js' { - declare module.exports: $Exports<'npm/lib/utils/depr-check'>; -} -declare module 'npm/lib/utils/did-you-mean.js' { - declare module.exports: $Exports<'npm/lib/utils/did-you-mean'>; -} -declare module 'npm/lib/utils/error-handler.js' { - declare module.exports: $Exports<'npm/lib/utils/error-handler'>; -} -declare module 'npm/lib/utils/error-message.js' { - declare module.exports: $Exports<'npm/lib/utils/error-message'>; -} -declare module 'npm/lib/utils/escape-arg.js' { - declare module.exports: $Exports<'npm/lib/utils/escape-arg'>; -} -declare module 'npm/lib/utils/escape-exec-path.js' { - declare module.exports: $Exports<'npm/lib/utils/escape-exec-path'>; -} -declare module 'npm/lib/utils/gently-rm.js' { - declare module.exports: $Exports<'npm/lib/utils/gently-rm'>; -} -declare module 'npm/lib/utils/get-publish-config.js' { - declare module.exports: $Exports<'npm/lib/utils/get-publish-config'>; -} -declare module 'npm/lib/utils/git.js' { - declare module.exports: $Exports<'npm/lib/utils/git'>; -} -declare module 'npm/lib/utils/gunzip-maybe.js' { - declare module.exports: $Exports<'npm/lib/utils/gunzip-maybe'>; -} -declare module 'npm/lib/utils/is-registry.js' { - declare module.exports: $Exports<'npm/lib/utils/is-registry'>; -} -declare module 'npm/lib/utils/is-windows-bash.js' { - declare module.exports: $Exports<'npm/lib/utils/is-windows-bash'>; -} -declare module 'npm/lib/utils/is-windows-shell.js' { - declare module.exports: $Exports<'npm/lib/utils/is-windows-shell'>; -} -declare module 'npm/lib/utils/is-windows.js' { - declare module.exports: $Exports<'npm/lib/utils/is-windows'>; -} -declare module 'npm/lib/utils/lifecycle-cmd.js' { - declare module.exports: $Exports<'npm/lib/utils/lifecycle-cmd'>; -} -declare module 'npm/lib/utils/lifecycle.js' { - declare module.exports: $Exports<'npm/lib/utils/lifecycle'>; -} -declare module 'npm/lib/utils/link.js' { - declare module.exports: $Exports<'npm/lib/utils/link'>; -} -declare module 'npm/lib/utils/locker.js' { - declare module.exports: $Exports<'npm/lib/utils/locker'>; -} -declare module 'npm/lib/utils/map-to-registry.js' { - declare module.exports: $Exports<'npm/lib/utils/map-to-registry'>; -} -declare module 'npm/lib/utils/metrics-launch.js' { - declare module.exports: $Exports<'npm/lib/utils/metrics-launch'>; -} -declare module 'npm/lib/utils/metrics.js' { - declare module.exports: $Exports<'npm/lib/utils/metrics'>; -} -declare module 'npm/lib/utils/module-name.js' { - declare module.exports: $Exports<'npm/lib/utils/module-name'>; -} -declare module 'npm/lib/utils/move.js' { - declare module.exports: $Exports<'npm/lib/utils/move'>; -} -declare module 'npm/lib/utils/no-progress-while-running.js' { - declare module.exports: $Exports<'npm/lib/utils/no-progress-while-running'>; -} -declare module 'npm/lib/utils/open-url.js' { - declare module.exports: $Exports<'npm/lib/utils/open-url'>; -} -declare module 'npm/lib/utils/output.js' { - declare module.exports: $Exports<'npm/lib/utils/output'>; -} -declare module 'npm/lib/utils/package-id.js' { - declare module.exports: $Exports<'npm/lib/utils/package-id'>; -} -declare module 'npm/lib/utils/parse-json.js' { - declare module.exports: $Exports<'npm/lib/utils/parse-json'>; -} -declare module 'npm/lib/utils/perf.js' { - declare module.exports: $Exports<'npm/lib/utils/perf'>; -} -declare module 'npm/lib/utils/pick-manifest-from-registry-metadata.js' { - declare module.exports: $Exports<'npm/lib/utils/pick-manifest-from-registry-metadata'>; -} -declare module 'npm/lib/utils/pulse-till-done.js' { - declare module.exports: $Exports<'npm/lib/utils/pulse-till-done'>; -} -declare module 'npm/lib/utils/read-local-package.js' { - declare module.exports: $Exports<'npm/lib/utils/read-local-package'>; -} -declare module 'npm/lib/utils/read-user-info.js' { - declare module.exports: $Exports<'npm/lib/utils/read-user-info'>; -} -declare module 'npm/lib/utils/save-stack.js' { - declare module.exports: $Exports<'npm/lib/utils/save-stack'>; -} -declare module 'npm/lib/utils/spawn.js' { - declare module.exports: $Exports<'npm/lib/utils/spawn'>; -} -declare module 'npm/lib/utils/stringify-package.js' { - declare module.exports: $Exports<'npm/lib/utils/stringify-package'>; -} -declare module 'npm/lib/utils/temp-filename.js' { - declare module.exports: $Exports<'npm/lib/utils/temp-filename'>; -} -declare module 'npm/lib/utils/umask.js' { - declare module.exports: $Exports<'npm/lib/utils/umask'>; -} -declare module 'npm/lib/utils/unix-format-path.js' { - declare module.exports: $Exports<'npm/lib/utils/unix-format-path'>; -} -declare module 'npm/lib/utils/unsupported.js' { - declare module.exports: $Exports<'npm/lib/utils/unsupported'>; -} -declare module 'npm/lib/utils/usage.js' { - declare module.exports: $Exports<'npm/lib/utils/usage'>; -} -declare module 'npm/lib/utils/warn-deprecated.js' { - declare module.exports: $Exports<'npm/lib/utils/warn-deprecated'>; -} -declare module 'npm/lib/version.js' { - declare module.exports: $Exports<'npm/lib/version'>; -} -declare module 'npm/lib/view.js' { - declare module.exports: $Exports<'npm/lib/view'>; -} -declare module 'npm/lib/visnup.js' { - declare module.exports: $Exports<'npm/lib/visnup'>; -} -declare module 'npm/lib/whoami.js' { - declare module.exports: $Exports<'npm/lib/whoami'>; -} -declare module 'npm/lib/xmas.js' { - declare module.exports: $Exports<'npm/lib/xmas'>; -} -declare module 'npm/scripts/changelog.js' { - declare module.exports: $Exports<'npm/scripts/changelog'>; -} -declare module 'npm/scripts/gen-dev-ignores.js' { - declare module.exports: $Exports<'npm/scripts/gen-dev-ignores'>; -} -declare module 'npm/scripts/index-build.js' { - declare module.exports: $Exports<'npm/scripts/index-build'>; -} -declare module 'npm/scripts/publish-tag.js' { - declare module.exports: $Exports<'npm/scripts/publish-tag'>; -} diff --git a/flow-typed/npm/output-file-sync_vx.x.x.js b/flow-typed/npm/output-file-sync_vx.x.x.js deleted file mode 100644 index f304c3e..0000000 --- a/flow-typed/npm/output-file-sync_vx.x.x.js +++ /dev/null @@ -1,33 +0,0 @@ -// flow-typed signature: aa8f86399abd0bea6f9113c5babf823c -// flow-typed version: <>/output-file-sync_v^1.1.1/flow_v0.77.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'output-file-sync' - * - * 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 'output-file-sync' { - 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 'output-file-sync/index' { - declare module.exports: $Exports<'output-file-sync'>; -} -declare module 'output-file-sync/index.js' { - declare module.exports: $Exports<'output-file-sync'>; -} diff --git a/flow-typed/npm/postcss-loader_vx.x.x.js b/flow-typed/npm/postcss-loader_vx.x.x.js deleted file mode 100644 index ea36001..0000000 --- a/flow-typed/npm/postcss-loader_vx.x.x.js +++ /dev/null @@ -1,46 +0,0 @@ -// flow-typed signature: 72b54ec97de7ca18c258489c02fd7c41 -// flow-typed version: <>/postcss-loader_v^2.0.9/flow_v0.77.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'postcss-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 'postcss-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 'postcss-loader/lib/Error' { - declare module.exports: any; -} - -declare module 'postcss-loader/lib/index' { - declare module.exports: any; -} - -declare module 'postcss-loader/lib/options' { - declare module.exports: any; -} - -// Filename aliases -declare module 'postcss-loader/lib/Error.js' { - declare module.exports: $Exports<'postcss-loader/lib/Error'>; -} -declare module 'postcss-loader/lib/index.js' { - declare module.exports: $Exports<'postcss-loader/lib/index'>; -} -declare module 'postcss-loader/lib/options.js' { - declare module.exports: $Exports<'postcss-loader/lib/options'>; -} 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 ba9478b..0000000 --- a/flow-typed/npm/prop-types_v15.x.x.js +++ /dev/null @@ -1,35 +0,0 @@ -// flow-typed signature: d9a983bb1ac458a256c31c139047bdbb -// flow-typed version: 927687984d/prop-types_v15.x.x/flow_>=v0.41.x - -type $npm$propTypes$ReactPropsCheckType = ( - props: any, - propName: string, - componentName: string, - href?: string) => ?Error; - -declare module 'prop-types' { - declare var array: React$PropType$Primitive>; - declare var bool: React$PropType$Primitive; - declare var func: React$PropType$Primitive; - declare var number: React$PropType$Primitive; - declare var object: React$PropType$Primitive; - 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; /* TODO */ - declare var instanceOf: React$PropType$InstanceOf; - declare var node: React$PropType$Primitive; /* TODO */ - 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: $Subtype<{[_: $Keys]: $npm$propTypes$ReactPropsCheckType}>, - values: V, - location: string, - componentName: string, - getStack: ?(() => ?string) - ) : void; -} diff --git a/flow-typed/npm/react-chartist_vx.x.x.js b/flow-typed/npm/react-chartist_vx.x.x.js deleted file mode 100644 index 257abc2..0000000 --- a/flow-typed/npm/react-chartist_vx.x.x.js +++ /dev/null @@ -1,38 +0,0 @@ -// flow-typed signature: 9e14fdfa3f3cb28fffed927aeffbaee8 -// flow-typed version: <>/react-chartist_v^0.13.1/flow_v0.77.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'react-chartist' - * - * 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-chartist' { - 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-chartist/dist/index' { - declare module.exports: any; -} - -// Filename aliases -declare module 'react-chartist/dist/index.js' { - declare module.exports: $Exports<'react-chartist/dist/index'>; -} -declare module 'react-chartist/index' { - declare module.exports: $Exports<'react-chartist'>; -} -declare module 'react-chartist/index.js' { - declare module.exports: $Exports<'react-chartist'>; -} diff --git a/flow-typed/npm/react-hot-loader_vx.x.x.js b/flow-typed/npm/react-hot-loader_vx.x.x.js deleted file mode 100644 index f738b1b..0000000 --- a/flow-typed/npm/react-hot-loader_vx.x.x.js +++ /dev/null @@ -1,73 +0,0 @@ -// flow-typed signature: 9ea3f1d6722a35de1b3240d2988ffd68 -// flow-typed version: <>/react-hot-loader_v^4.0.0/flow_v0.77.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'react-hot-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-hot-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-hot-loader/babel' { - declare module.exports: any; -} - -declare module 'react-hot-loader/dist/babel.development' { - declare module.exports: any; -} - -declare module 'react-hot-loader/dist/babel.production.min' { - declare module.exports: any; -} - -declare module 'react-hot-loader/dist/react-hot-loader.development' { - declare module.exports: any; -} - -declare module 'react-hot-loader/dist/react-hot-loader.production.min' { - declare module.exports: any; -} - -declare module 'react-hot-loader/patch' { - declare module.exports: any; -} - -// Filename aliases -declare module 'react-hot-loader/babel.js' { - declare module.exports: $Exports<'react-hot-loader/babel'>; -} -declare module 'react-hot-loader/dist/babel.development.js' { - declare module.exports: $Exports<'react-hot-loader/dist/babel.development'>; -} -declare module 'react-hot-loader/dist/babel.production.min.js' { - declare module.exports: $Exports<'react-hot-loader/dist/babel.production.min'>; -} -declare module 'react-hot-loader/dist/react-hot-loader.development.js' { - declare module.exports: $Exports<'react-hot-loader/dist/react-hot-loader.development'>; -} -declare module 'react-hot-loader/dist/react-hot-loader.production.min.js' { - declare module.exports: $Exports<'react-hot-loader/dist/react-hot-loader.production.min'>; -} -declare module 'react-hot-loader/index' { - declare module.exports: $Exports<'react-hot-loader'>; -} -declare module 'react-hot-loader/index.js' { - declare module.exports: $Exports<'react-hot-loader'>; -} -declare module 'react-hot-loader/patch.js' { - declare module.exports: $Exports<'react-hot-loader/patch'>; -} diff --git a/flow-typed/npm/react-intl_v2.x.x.js b/flow-typed/npm/react-intl_v2.x.x.js deleted file mode 100644 index b1407ee..0000000 --- a/flow-typed/npm/react-intl_v2.x.x.js +++ /dev/null @@ -1,260 +0,0 @@ -// flow-typed signature: 64c4a99e632b3fb8d0a4fb57ab6d9ebb -// flow-typed version: e9421afdb2/react-intl_v2.x.x/flow_>=v0.63.x - -/** - * Original implementation of this file by @marudor at https://github.com/marudor/flowInterfaces - * Copied here based on intention to merge with flow-typed expressed here: - * https://github.com/marudor/flowInterfaces/issues/6 - */ -// Mostly from https://github.com/yahoo/react-intl/wiki/API#react-intl-api -declare module "react-intl" { - import type { Element, ChildrenArray } from "react"; - - declare type $npm$ReactIntl$LocaleData = { - locale: string, - [key: string]: any - }; - - declare type $npm$ReactIntl$MessageDescriptor = { - id: string, - description?: string, - defaultMessage?: string - }; - - declare type $npm$ReactIntl$IntlConfig = { - locale: string, - formats: Object, - messages: { [id: string]: string }, - - defaultLocale?: string, - defaultFormats?: Object - }; - - declare type $npm$ReactIntl$IntlProviderConfig = { - locale?: string, - formats?: Object, - messages?: { [id: string]: string }, - - defaultLocale?: string, - defaultFormats?: Object - }; - - declare type $npm$ReactIntl$IntlFormat = { - formatDate: (value: any, options?: Object) => string, - formatTime: (value: any, options?: Object) => string, - formatRelative: (value: any, options?: Object) => string, - formatNumber: (value: any, options?: Object) => string, - formatPlural: (value: any, options?: Object) => string, - formatMessage: ( - messageDescriptor: $npm$ReactIntl$MessageDescriptor, - values?: Object - ) => string, - formatHTMLMessage: ( - messageDescriptor: $npm$ReactIntl$MessageDescriptor, - values?: Object - ) => string - }; - - declare type $npm$ReactIntl$IntlShape = $npm$ReactIntl$IntlConfig & - $npm$ReactIntl$IntlFormat & { now: () => number }; - - declare type $npm$ReactIntl$DateTimeFormatOptions = { - localeMatcher?: "best fit" | "lookup", - formatMatcher?: "basic" | "best fit", - - timeZone?: string, - hour12?: boolean, - - weekday?: "narrow" | "short" | "long", - era?: "narrow" | "short" | "long", - year?: "numeric" | "2-digit", - month?: "numeric" | "2-digit" | "narrow" | "short" | "long", - day?: "numeric" | "2-digit", - hour?: "numeric" | "2-digit", - minute?: "numeric" | "2-digit", - second?: "numeric" | "2-digit", - timeZoneName?: "short" | "long" - }; - - declare type $npm$ReactIntl$RelativeFormatOptions = { - style?: "best fit" | "numeric", - units?: "second" | "minute" | "hour" | "day" | "month" | "year" - }; - - declare type $npm$ReactIntl$NumberFormatOptions = { - localeMatcher?: "best fit" | "lookup", - - style?: "decimal" | "currency" | "percent", - - currency?: string, - currencyDisplay?: "symbol" | "code" | "name", - - useGrouping?: boolean, - - minimumIntegerDigits?: number, - minimumFractionDigits?: number, - maximumFractionDigits?: number, - minimumSignificantDigits?: number, - maximumSignificantDigits?: number - }; - - declare type $npm$ReactIntl$PluralFormatOptions = { - style?: "cardinal" | "ordinal" - }; - - declare type $npm$ReactIntl$PluralCategoryString = - | "zero" - | "one" - | "two" - | "few" - | "many" - | "other"; - - declare type $npm$ReactIntl$DateParseable = number | string | Date; - // PropType checker - declare function intlShape( - props: Object, - propName: string, - componentName: string - ): void; - declare function addLocaleData( - data: $npm$ReactIntl$LocaleData | Array<$npm$ReactIntl$LocaleData> - ): void; - declare function defineMessages< - T: { [key: string]: $npm$ReactIntl$MessageDescriptor } - >( - messageDescriptors: T - ): T; - - declare type InjectIntlProvidedProps = { - intl: $npm$ReactIntl$IntlShape - } - - declare type InjectIntlVoidProps = { - intl: $npm$ReactIntl$IntlShape | void - } - - declare type ComponentWithDefaultProps = - | React$ComponentType - | React$StatelessFunctionalComponent - | ChildrenArray>; - - declare type InjectIntlOptions = { - intlPropName?: string, - withRef?: boolean - } - - declare class IntlInjectedComponent extends React$Component { - static WrappedComponent: Class>, - static defaultProps: TDefaultProps, - props: TOwnProps - } - - declare type IntlInjectedComponentClass = Class< - IntlInjectedComponent - >; - - declare function injectIntl>( - WrappedComponent: Component, - options?: InjectIntlOptions, - ): React$ComponentType< - $Diff, InjectIntlVoidProps> - >; - - declare function formatMessage( - messageDescriptor: $npm$ReactIntl$MessageDescriptor, - values?: Object - ): string; - declare function formatHTMLMessage( - messageDescriptor: $npm$ReactIntl$MessageDescriptor, - values?: Object - ): string; - declare function formatDate( - value: any, - options?: $npm$ReactIntl$DateTimeFormatOptions & { format: string } - ): string; - declare function formatTime( - value: any, - options?: $npm$ReactIntl$DateTimeFormatOptions & { format: string } - ): string; - declare function formatRelative( - value: any, - options?: $npm$ReactIntl$RelativeFormatOptions & { - format: string, - now: any - } - ): string; - declare function formatNumber( - value: any, - options?: $npm$ReactIntl$NumberFormatOptions & { format: string } - ): string; - declare function formatPlural( - value: any, - options?: $npm$ReactIntl$PluralFormatOptions - ): $npm$ReactIntl$PluralCategoryString; - - declare class FormattedMessage extends React$Component< - $npm$ReactIntl$MessageDescriptor & { - values?: Object, - tagName?: string, - children?: (...formattedMessage: Array) => React$Node - } - > {} - declare class FormattedHTMLMessage extends React$Component< - $npm$ReactIntl$DateTimeFormatOptions & { - values?: Object, - tagName?: string, - children?: (...formattedMessage: Array) => React$Node - } - > {} - declare class FormattedDate extends React$Component< - $npm$ReactIntl$DateTimeFormatOptions & { - value: $npm$ReactIntl$DateParseable, - format?: string, - children?: (formattedDate: string) => React$Node - } - > {} - declare class FormattedTime extends React$Component< - $npm$ReactIntl$DateTimeFormatOptions & { - value: $npm$ReactIntl$DateParseable, - format?: string, - children?: (formattedDate: string) => React$Node - } - > {} - declare class FormattedRelative extends React$Component< - $npm$ReactIntl$RelativeFormatOptions & { - value: $npm$ReactIntl$DateParseable, - format?: string, - updateInterval?: number, - initialNow?: $npm$ReactIntl$DateParseable, - children?: (formattedDate: string) => React$Node - } - > {} - declare class FormattedNumber extends React$Component< - $npm$ReactIntl$NumberFormatOptions & { - value: number | string, - format?: string, - children?: (formattedNumber: string) => React$Node - } - > {} - declare class FormattedPlural extends React$Component< - $npm$ReactIntl$PluralFormatOptions & { - value: number | string, - other: React$Node, - zero?: React$Node, - one?: React$Node, - two?: React$Node, - few?: React$Node, - many?: React$Node, - children?: (formattedPlural: React$Node) => React$Node - } - > {} - declare class IntlProvider extends React$Component< - $npm$ReactIntl$IntlProviderConfig & { - children?: React$Node, - initialNow?: $npm$ReactIntl$DateParseable - } - > {} - declare type IntlShape = $npm$ReactIntl$IntlShape; - declare type MessageDescriptor = $npm$ReactIntl$MessageDescriptor; -} diff --git a/flow-typed/npm/react-router_vx.x.x.js b/flow-typed/npm/react-router_vx.x.x.js deleted file mode 100644 index b01132a..0000000 --- a/flow-typed/npm/react-router_vx.x.x.js +++ /dev/null @@ -1,501 +0,0 @@ -// flow-typed signature: 552d621e2c718fce31463c4b24426065 -// flow-typed version: <>/react-router_v3.2.0/flow_v0.77.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'react-router' - * - * Fill this stub out by replacing all the `any` types. - * - * Once filled out, we encourage you to share your work with the - * community by sending a pull request to: - * https://github.com/flowtype/flow-typed - */ - -declare module 'react-router' { - declare module.exports: any; -} - -/** - * We include stubs for each file inside this npm package in case you need to - * require those files directly. Feel free to delete any files that aren't - * needed. - */ -declare module 'react-router/es/applyRouterMiddleware' { - declare module.exports: any; -} - -declare module 'react-router/es/AsyncUtils' { - declare module.exports: any; -} - -declare module 'react-router/es/browserHistory' { - declare module.exports: any; -} - -declare module 'react-router/es/computeChangedRoutes' { - declare module.exports: any; -} - -declare module 'react-router/es/ContextUtils' { - declare module.exports: any; -} - -declare module 'react-router/es/createMemoryHistory' { - declare module.exports: any; -} - -declare module 'react-router/es/createRouterHistory' { - declare module.exports: any; -} - -declare module 'react-router/es/createTransitionManager' { - declare module.exports: any; -} - -declare module 'react-router/es/getComponents' { - declare module.exports: any; -} - -declare module 'react-router/es/getRouteParams' { - declare module.exports: any; -} - -declare module 'react-router/es/hashHistory' { - declare module.exports: any; -} - -declare module 'react-router/es/index' { - declare module.exports: any; -} - -declare module 'react-router/es/IndexLink' { - declare module.exports: any; -} - -declare module 'react-router/es/IndexRedirect' { - declare module.exports: any; -} - -declare module 'react-router/es/IndexRoute' { - declare module.exports: any; -} - -declare module 'react-router/es/InternalPropTypes' { - declare module.exports: any; -} - -declare module 'react-router/es/isActive' { - declare module.exports: any; -} - -declare module 'react-router/es/Link' { - declare module.exports: any; -} - -declare module 'react-router/es/match' { - declare module.exports: any; -} - -declare module 'react-router/es/matchRoutes' { - declare module.exports: any; -} - -declare module 'react-router/es/PatternUtils' { - declare module.exports: any; -} - -declare module 'react-router/es/PromiseUtils' { - declare module.exports: any; -} - -declare module 'react-router/es/PropTypes' { - declare module.exports: any; -} - -declare module 'react-router/es/Redirect' { - declare module.exports: any; -} - -declare module 'react-router/es/Route' { - declare module.exports: any; -} - -declare module 'react-router/es/Router' { - declare module.exports: any; -} - -declare module 'react-router/es/RouterContext' { - declare module.exports: any; -} - -declare module 'react-router/es/RouterUtils' { - declare module.exports: any; -} - -declare module 'react-router/es/routerWarning' { - declare module.exports: any; -} - -declare module 'react-router/es/RouteUtils' { - declare module.exports: any; -} - -declare module 'react-router/es/TransitionUtils' { - declare module.exports: any; -} - -declare module 'react-router/es/useRouterHistory' { - declare module.exports: any; -} - -declare module 'react-router/es/withRouter' { - declare module.exports: any; -} - -declare module 'react-router/lib/applyRouterMiddleware' { - declare module.exports: any; -} - -declare module 'react-router/lib/AsyncUtils' { - declare module.exports: any; -} - -declare module 'react-router/lib/browserHistory' { - declare module.exports: any; -} - -declare module 'react-router/lib/computeChangedRoutes' { - declare module.exports: any; -} - -declare module 'react-router/lib/ContextUtils' { - declare module.exports: any; -} - -declare module 'react-router/lib/createMemoryHistory' { - declare module.exports: any; -} - -declare module 'react-router/lib/createRouterHistory' { - declare module.exports: any; -} - -declare module 'react-router/lib/createTransitionManager' { - declare module.exports: any; -} - -declare module 'react-router/lib/getComponents' { - declare module.exports: any; -} - -declare module 'react-router/lib/getRouteParams' { - declare module.exports: any; -} - -declare module 'react-router/lib/hashHistory' { - declare module.exports: any; -} - -declare module 'react-router/lib/index' { - declare module.exports: any; -} - -declare module 'react-router/lib/IndexLink' { - declare module.exports: any; -} - -declare module 'react-router/lib/IndexRedirect' { - declare module.exports: any; -} - -declare module 'react-router/lib/IndexRoute' { - declare module.exports: any; -} - -declare module 'react-router/lib/InternalPropTypes' { - declare module.exports: any; -} - -declare module 'react-router/lib/isActive' { - declare module.exports: any; -} - -declare module 'react-router/lib/Link' { - declare module.exports: any; -} - -declare module 'react-router/lib/match' { - declare module.exports: any; -} - -declare module 'react-router/lib/matchRoutes' { - declare module.exports: any; -} - -declare module 'react-router/lib/PatternUtils' { - declare module.exports: any; -} - -declare module 'react-router/lib/PromiseUtils' { - declare module.exports: any; -} - -declare module 'react-router/lib/PropTypes' { - declare module.exports: any; -} - -declare module 'react-router/lib/Redirect' { - declare module.exports: any; -} - -declare module 'react-router/lib/Route' { - declare module.exports: any; -} - -declare module 'react-router/lib/Router' { - declare module.exports: any; -} - -declare module 'react-router/lib/RouterContext' { - declare module.exports: any; -} - -declare module 'react-router/lib/RouterUtils' { - declare module.exports: any; -} - -declare module 'react-router/lib/routerWarning' { - declare module.exports: any; -} - -declare module 'react-router/lib/RouteUtils' { - declare module.exports: any; -} - -declare module 'react-router/lib/TransitionUtils' { - declare module.exports: any; -} - -declare module 'react-router/lib/useRouterHistory' { - declare module.exports: any; -} - -declare module 'react-router/lib/withRouter' { - declare module.exports: any; -} - -declare module 'react-router/umd/ReactRouter' { - declare module.exports: any; -} - -declare module 'react-router/umd/ReactRouter.min' { - declare module.exports: any; -} - -// Filename aliases -declare module 'react-router/es/applyRouterMiddleware.js' { - declare module.exports: $Exports<'react-router/es/applyRouterMiddleware'>; -} -declare module 'react-router/es/AsyncUtils.js' { - declare module.exports: $Exports<'react-router/es/AsyncUtils'>; -} -declare module 'react-router/es/browserHistory.js' { - declare module.exports: $Exports<'react-router/es/browserHistory'>; -} -declare module 'react-router/es/computeChangedRoutes.js' { - declare module.exports: $Exports<'react-router/es/computeChangedRoutes'>; -} -declare module 'react-router/es/ContextUtils.js' { - declare module.exports: $Exports<'react-router/es/ContextUtils'>; -} -declare module 'react-router/es/createMemoryHistory.js' { - declare module.exports: $Exports<'react-router/es/createMemoryHistory'>; -} -declare module 'react-router/es/createRouterHistory.js' { - declare module.exports: $Exports<'react-router/es/createRouterHistory'>; -} -declare module 'react-router/es/createTransitionManager.js' { - declare module.exports: $Exports<'react-router/es/createTransitionManager'>; -} -declare module 'react-router/es/getComponents.js' { - declare module.exports: $Exports<'react-router/es/getComponents'>; -} -declare module 'react-router/es/getRouteParams.js' { - declare module.exports: $Exports<'react-router/es/getRouteParams'>; -} -declare module 'react-router/es/hashHistory.js' { - declare module.exports: $Exports<'react-router/es/hashHistory'>; -} -declare module 'react-router/es/index.js' { - declare module.exports: $Exports<'react-router/es/index'>; -} -declare module 'react-router/es/IndexLink.js' { - declare module.exports: $Exports<'react-router/es/IndexLink'>; -} -declare module 'react-router/es/IndexRedirect.js' { - declare module.exports: $Exports<'react-router/es/IndexRedirect'>; -} -declare module 'react-router/es/IndexRoute.js' { - declare module.exports: $Exports<'react-router/es/IndexRoute'>; -} -declare module 'react-router/es/InternalPropTypes.js' { - declare module.exports: $Exports<'react-router/es/InternalPropTypes'>; -} -declare module 'react-router/es/isActive.js' { - declare module.exports: $Exports<'react-router/es/isActive'>; -} -declare module 'react-router/es/Link.js' { - declare module.exports: $Exports<'react-router/es/Link'>; -} -declare module 'react-router/es/match.js' { - declare module.exports: $Exports<'react-router/es/match'>; -} -declare module 'react-router/es/matchRoutes.js' { - declare module.exports: $Exports<'react-router/es/matchRoutes'>; -} -declare module 'react-router/es/PatternUtils.js' { - declare module.exports: $Exports<'react-router/es/PatternUtils'>; -} -declare module 'react-router/es/PromiseUtils.js' { - declare module.exports: $Exports<'react-router/es/PromiseUtils'>; -} -declare module 'react-router/es/PropTypes.js' { - declare module.exports: $Exports<'react-router/es/PropTypes'>; -} -declare module 'react-router/es/Redirect.js' { - declare module.exports: $Exports<'react-router/es/Redirect'>; -} -declare module 'react-router/es/Route.js' { - declare module.exports: $Exports<'react-router/es/Route'>; -} -declare module 'react-router/es/Router.js' { - declare module.exports: $Exports<'react-router/es/Router'>; -} -declare module 'react-router/es/RouterContext.js' { - declare module.exports: $Exports<'react-router/es/RouterContext'>; -} -declare module 'react-router/es/RouterUtils.js' { - declare module.exports: $Exports<'react-router/es/RouterUtils'>; -} -declare module 'react-router/es/routerWarning.js' { - declare module.exports: $Exports<'react-router/es/routerWarning'>; -} -declare module 'react-router/es/RouteUtils.js' { - declare module.exports: $Exports<'react-router/es/RouteUtils'>; -} -declare module 'react-router/es/TransitionUtils.js' { - declare module.exports: $Exports<'react-router/es/TransitionUtils'>; -} -declare module 'react-router/es/useRouterHistory.js' { - declare module.exports: $Exports<'react-router/es/useRouterHistory'>; -} -declare module 'react-router/es/withRouter.js' { - declare module.exports: $Exports<'react-router/es/withRouter'>; -} -declare module 'react-router/lib/applyRouterMiddleware.js' { - declare module.exports: $Exports<'react-router/lib/applyRouterMiddleware'>; -} -declare module 'react-router/lib/AsyncUtils.js' { - declare module.exports: $Exports<'react-router/lib/AsyncUtils'>; -} -declare module 'react-router/lib/browserHistory.js' { - declare module.exports: $Exports<'react-router/lib/browserHistory'>; -} -declare module 'react-router/lib/computeChangedRoutes.js' { - declare module.exports: $Exports<'react-router/lib/computeChangedRoutes'>; -} -declare module 'react-router/lib/ContextUtils.js' { - declare module.exports: $Exports<'react-router/lib/ContextUtils'>; -} -declare module 'react-router/lib/createMemoryHistory.js' { - declare module.exports: $Exports<'react-router/lib/createMemoryHistory'>; -} -declare module 'react-router/lib/createRouterHistory.js' { - declare module.exports: $Exports<'react-router/lib/createRouterHistory'>; -} -declare module 'react-router/lib/createTransitionManager.js' { - declare module.exports: $Exports<'react-router/lib/createTransitionManager'>; -} -declare module 'react-router/lib/getComponents.js' { - declare module.exports: $Exports<'react-router/lib/getComponents'>; -} -declare module 'react-router/lib/getRouteParams.js' { - declare module.exports: $Exports<'react-router/lib/getRouteParams'>; -} -declare module 'react-router/lib/hashHistory.js' { - declare module.exports: $Exports<'react-router/lib/hashHistory'>; -} -declare module 'react-router/lib/index.js' { - declare module.exports: $Exports<'react-router/lib/index'>; -} -declare module 'react-router/lib/IndexLink.js' { - declare module.exports: $Exports<'react-router/lib/IndexLink'>; -} -declare module 'react-router/lib/IndexRedirect.js' { - declare module.exports: $Exports<'react-router/lib/IndexRedirect'>; -} -declare module 'react-router/lib/IndexRoute.js' { - declare module.exports: $Exports<'react-router/lib/IndexRoute'>; -} -declare module 'react-router/lib/InternalPropTypes.js' { - declare module.exports: $Exports<'react-router/lib/InternalPropTypes'>; -} -declare module 'react-router/lib/isActive.js' { - declare module.exports: $Exports<'react-router/lib/isActive'>; -} -declare module 'react-router/lib/Link.js' { - declare module.exports: $Exports<'react-router/lib/Link'>; -} -declare module 'react-router/lib/match.js' { - declare module.exports: $Exports<'react-router/lib/match'>; -} -declare module 'react-router/lib/matchRoutes.js' { - declare module.exports: $Exports<'react-router/lib/matchRoutes'>; -} -declare module 'react-router/lib/PatternUtils.js' { - declare module.exports: $Exports<'react-router/lib/PatternUtils'>; -} -declare module 'react-router/lib/PromiseUtils.js' { - declare module.exports: $Exports<'react-router/lib/PromiseUtils'>; -} -declare module 'react-router/lib/PropTypes.js' { - declare module.exports: $Exports<'react-router/lib/PropTypes'>; -} -declare module 'react-router/lib/Redirect.js' { - declare module.exports: $Exports<'react-router/lib/Redirect'>; -} -declare module 'react-router/lib/Route.js' { - declare module.exports: $Exports<'react-router/lib/Route'>; -} -declare module 'react-router/lib/Router.js' { - declare module.exports: $Exports<'react-router/lib/Router'>; -} -declare module 'react-router/lib/RouterContext.js' { - declare module.exports: $Exports<'react-router/lib/RouterContext'>; -} -declare module 'react-router/lib/RouterUtils.js' { - declare module.exports: $Exports<'react-router/lib/RouterUtils'>; -} -declare module 'react-router/lib/routerWarning.js' { - declare module.exports: $Exports<'react-router/lib/routerWarning'>; -} -declare module 'react-router/lib/RouteUtils.js' { - declare module.exports: $Exports<'react-router/lib/RouteUtils'>; -} -declare module 'react-router/lib/TransitionUtils.js' { - declare module.exports: $Exports<'react-router/lib/TransitionUtils'>; -} -declare module 'react-router/lib/useRouterHistory.js' { - declare module.exports: $Exports<'react-router/lib/useRouterHistory'>; -} -declare module 'react-router/lib/withRouter.js' { - declare module.exports: $Exports<'react-router/lib/withRouter'>; -} -declare module 'react-router/umd/ReactRouter.js' { - declare module.exports: $Exports<'react-router/umd/ReactRouter'>; -} -declare module 'react-router/umd/ReactRouter.min.js' { - declare module.exports: $Exports<'react-router/umd/ReactRouter.min'>; -} diff --git a/flow-typed/npm/rimraf_v2.x.x.js b/flow-typed/npm/rimraf_v2.x.x.js deleted file mode 100644 index 13b8524..0000000 --- a/flow-typed/npm/rimraf_v2.x.x.js +++ /dev/null @@ -1,18 +0,0 @@ -// flow-typed signature: 1dff23447d5e18f5ac2b05aaec7cfb74 -// flow-typed version: a453e98ea2/rimraf_v2.x.x/flow_>=v0.25.0 - -declare module 'rimraf' { - declare type Options = { - maxBusyTries?: number, - emfileWait?: number, - glob?: boolean, - disableGlob?: boolean - }; - - declare type Callback = (err: ?Error, path: ?string) => void; - - declare module.exports: { - (f: string, opts?: Options | Callback, callback?: Callback): void; - sync(path: string, opts?: Options): void; - }; -} diff --git a/flow-typed/npm/rsuite-utils_vx.x.x.js b/flow-typed/npm/rsuite-utils_vx.x.x.js deleted file mode 100644 index a046c23..0000000 --- a/flow-typed/npm/rsuite-utils_vx.x.x.js +++ /dev/null @@ -1,501 +0,0 @@ -// flow-typed signature: b6c2fa5b676ac5a356e9cdcdb2359f5b -// flow-typed version: <>/rsuite-utils_v^1.0.0/flow_v0.77.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'rsuite-utils' - * - * 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 'rsuite-utils' { - 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 'rsuite-utils/lib/Animation/Collapse' { - declare module.exports: any; -} - -declare module 'rsuite-utils/lib/Animation/Fade' { - declare module.exports: any; -} - -declare module 'rsuite-utils/lib/Animation/index' { - declare module.exports: any; -} - -declare module 'rsuite-utils/lib/Animation/Transition' { - declare module.exports: any; -} - -declare module 'rsuite-utils/lib/index' { - declare module.exports: any; -} - -declare module 'rsuite-utils/lib/Overlay/BaseOverlay' { - declare module.exports: any; -} - -declare module 'rsuite-utils/lib/Overlay/index' { - declare module.exports: any; -} - -declare module 'rsuite-utils/lib/Overlay/LegacyPortal' { - declare module.exports: any; -} - -declare module 'rsuite-utils/lib/Overlay/Modal' { - declare module.exports: any; -} - -declare module 'rsuite-utils/lib/Overlay/ModalManager' { - declare module.exports: any; -} - -declare module 'rsuite-utils/lib/Overlay/Overlay' { - declare module.exports: any; -} - -declare module 'rsuite-utils/lib/Overlay/OverlayTrigger' { - declare module.exports: any; -} - -declare module 'rsuite-utils/lib/Overlay/Portal' { - declare module.exports: any; -} - -declare module 'rsuite-utils/lib/Overlay/Position' { - declare module.exports: any; -} - -declare module 'rsuite-utils/lib/Overlay/RefHolder' { - declare module.exports: any; -} - -declare module 'rsuite-utils/lib/Overlay/RootCloseWrapper' { - declare module.exports: any; -} - -declare module 'rsuite-utils/lib/Picker/constants' { - declare module.exports: any; -} - -declare module 'rsuite-utils/lib/Picker/index' { - declare module.exports: any; -} - -declare module 'rsuite-utils/lib/Picker/MenuWrapper' { - declare module.exports: any; -} - -declare module 'rsuite-utils/lib/Picker/SearchBar' { - declare module.exports: any; -} - -declare module 'rsuite-utils/lib/Picker/Toggle' { - declare module.exports: any; -} - -declare module 'rsuite-utils/lib/utils/createChainedFunction' { - declare module.exports: any; -} - -declare module 'rsuite-utils/lib/utils/filterNodesOfTree' { - declare module.exports: any; -} - -declare module 'rsuite-utils/lib/utils/findNodeOfTree' { - declare module.exports: any; -} - -declare module 'rsuite-utils/lib/utils/getDataGroupBy' { - declare module.exports: any; -} - -declare module 'rsuite-utils/lib/utils/getUnhandledProps' { - declare module.exports: any; -} - -declare module 'rsuite-utils/lib/utils/handleMouseOverOut' { - declare module.exports: any; -} - -declare module 'rsuite-utils/lib/utils/index' { - declare module.exports: any; -} - -declare module 'rsuite-utils/lib/utils/isNullOrUndefined' { - declare module.exports: any; -} - -declare module 'rsuite-utils/lib/utils/isOneOf' { - declare module.exports: any; -} - -declare module 'rsuite-utils/lib/utils/overlayPositionUtils' { - declare module.exports: any; -} - -declare module 'rsuite-utils/lib/utils/prefix' { - declare module.exports: any; -} - -declare module 'rsuite-utils/lib/utils/reactToString' { - declare module.exports: any; -} - -declare module 'rsuite-utils/lib/utils/TypeDefinition' { - declare module.exports: any; -} - -declare module 'rsuite-utils/src/Animation/Collapse' { - declare module.exports: any; -} - -declare module 'rsuite-utils/src/Animation/Fade' { - declare module.exports: any; -} - -declare module 'rsuite-utils/src/Animation/index' { - declare module.exports: any; -} - -declare module 'rsuite-utils/src/Animation/Transition' { - declare module.exports: any; -} - -declare module 'rsuite-utils/src/index' { - declare module.exports: any; -} - -declare module 'rsuite-utils/src/Overlay/BaseOverlay' { - declare module.exports: any; -} - -declare module 'rsuite-utils/src/Overlay/index' { - declare module.exports: any; -} - -declare module 'rsuite-utils/src/Overlay/LegacyPortal' { - declare module.exports: any; -} - -declare module 'rsuite-utils/src/Overlay/Modal' { - declare module.exports: any; -} - -declare module 'rsuite-utils/src/Overlay/ModalManager' { - declare module.exports: any; -} - -declare module 'rsuite-utils/src/Overlay/Overlay' { - declare module.exports: any; -} - -declare module 'rsuite-utils/src/Overlay/OverlayTrigger' { - declare module.exports: any; -} - -declare module 'rsuite-utils/src/Overlay/Portal' { - declare module.exports: any; -} - -declare module 'rsuite-utils/src/Overlay/Position' { - declare module.exports: any; -} - -declare module 'rsuite-utils/src/Overlay/RefHolder' { - declare module.exports: any; -} - -declare module 'rsuite-utils/src/Overlay/RootCloseWrapper' { - declare module.exports: any; -} - -declare module 'rsuite-utils/src/Picker/constants' { - declare module.exports: any; -} - -declare module 'rsuite-utils/src/Picker/index' { - declare module.exports: any; -} - -declare module 'rsuite-utils/src/Picker/MenuWrapper' { - declare module.exports: any; -} - -declare module 'rsuite-utils/src/Picker/SearchBar' { - declare module.exports: any; -} - -declare module 'rsuite-utils/src/Picker/Toggle' { - declare module.exports: any; -} - -declare module 'rsuite-utils/src/utils/createChainedFunction' { - declare module.exports: any; -} - -declare module 'rsuite-utils/src/utils/filterNodesOfTree' { - declare module.exports: any; -} - -declare module 'rsuite-utils/src/utils/findNodeOfTree' { - declare module.exports: any; -} - -declare module 'rsuite-utils/src/utils/getDataGroupBy' { - declare module.exports: any; -} - -declare module 'rsuite-utils/src/utils/getUnhandledProps' { - declare module.exports: any; -} - -declare module 'rsuite-utils/src/utils/handleMouseOverOut' { - declare module.exports: any; -} - -declare module 'rsuite-utils/src/utils/index' { - declare module.exports: any; -} - -declare module 'rsuite-utils/src/utils/isNullOrUndefined' { - declare module.exports: any; -} - -declare module 'rsuite-utils/src/utils/isOneOf' { - declare module.exports: any; -} - -declare module 'rsuite-utils/src/utils/overlayPositionUtils' { - declare module.exports: any; -} - -declare module 'rsuite-utils/src/utils/prefix' { - declare module.exports: any; -} - -declare module 'rsuite-utils/src/utils/reactToString' { - declare module.exports: any; -} - -declare module 'rsuite-utils/src/utils/TypeDefinition' { - declare module.exports: any; -} - -// Filename aliases -declare module 'rsuite-utils/lib/Animation/Collapse.js' { - declare module.exports: $Exports<'rsuite-utils/lib/Animation/Collapse'>; -} -declare module 'rsuite-utils/lib/Animation/Fade.js' { - declare module.exports: $Exports<'rsuite-utils/lib/Animation/Fade'>; -} -declare module 'rsuite-utils/lib/Animation/index.js' { - declare module.exports: $Exports<'rsuite-utils/lib/Animation/index'>; -} -declare module 'rsuite-utils/lib/Animation/Transition.js' { - declare module.exports: $Exports<'rsuite-utils/lib/Animation/Transition'>; -} -declare module 'rsuite-utils/lib/index.js' { - declare module.exports: $Exports<'rsuite-utils/lib/index'>; -} -declare module 'rsuite-utils/lib/Overlay/BaseOverlay.js' { - declare module.exports: $Exports<'rsuite-utils/lib/Overlay/BaseOverlay'>; -} -declare module 'rsuite-utils/lib/Overlay/index.js' { - declare module.exports: $Exports<'rsuite-utils/lib/Overlay/index'>; -} -declare module 'rsuite-utils/lib/Overlay/LegacyPortal.js' { - declare module.exports: $Exports<'rsuite-utils/lib/Overlay/LegacyPortal'>; -} -declare module 'rsuite-utils/lib/Overlay/Modal.js' { - declare module.exports: $Exports<'rsuite-utils/lib/Overlay/Modal'>; -} -declare module 'rsuite-utils/lib/Overlay/ModalManager.js' { - declare module.exports: $Exports<'rsuite-utils/lib/Overlay/ModalManager'>; -} -declare module 'rsuite-utils/lib/Overlay/Overlay.js' { - declare module.exports: $Exports<'rsuite-utils/lib/Overlay/Overlay'>; -} -declare module 'rsuite-utils/lib/Overlay/OverlayTrigger.js' { - declare module.exports: $Exports<'rsuite-utils/lib/Overlay/OverlayTrigger'>; -} -declare module 'rsuite-utils/lib/Overlay/Portal.js' { - declare module.exports: $Exports<'rsuite-utils/lib/Overlay/Portal'>; -} -declare module 'rsuite-utils/lib/Overlay/Position.js' { - declare module.exports: $Exports<'rsuite-utils/lib/Overlay/Position'>; -} -declare module 'rsuite-utils/lib/Overlay/RefHolder.js' { - declare module.exports: $Exports<'rsuite-utils/lib/Overlay/RefHolder'>; -} -declare module 'rsuite-utils/lib/Overlay/RootCloseWrapper.js' { - declare module.exports: $Exports<'rsuite-utils/lib/Overlay/RootCloseWrapper'>; -} -declare module 'rsuite-utils/lib/Picker/constants.js' { - declare module.exports: $Exports<'rsuite-utils/lib/Picker/constants'>; -} -declare module 'rsuite-utils/lib/Picker/index.js' { - declare module.exports: $Exports<'rsuite-utils/lib/Picker/index'>; -} -declare module 'rsuite-utils/lib/Picker/MenuWrapper.js' { - declare module.exports: $Exports<'rsuite-utils/lib/Picker/MenuWrapper'>; -} -declare module 'rsuite-utils/lib/Picker/SearchBar.js' { - declare module.exports: $Exports<'rsuite-utils/lib/Picker/SearchBar'>; -} -declare module 'rsuite-utils/lib/Picker/Toggle.js' { - declare module.exports: $Exports<'rsuite-utils/lib/Picker/Toggle'>; -} -declare module 'rsuite-utils/lib/utils/createChainedFunction.js' { - declare module.exports: $Exports<'rsuite-utils/lib/utils/createChainedFunction'>; -} -declare module 'rsuite-utils/lib/utils/filterNodesOfTree.js' { - declare module.exports: $Exports<'rsuite-utils/lib/utils/filterNodesOfTree'>; -} -declare module 'rsuite-utils/lib/utils/findNodeOfTree.js' { - declare module.exports: $Exports<'rsuite-utils/lib/utils/findNodeOfTree'>; -} -declare module 'rsuite-utils/lib/utils/getDataGroupBy.js' { - declare module.exports: $Exports<'rsuite-utils/lib/utils/getDataGroupBy'>; -} -declare module 'rsuite-utils/lib/utils/getUnhandledProps.js' { - declare module.exports: $Exports<'rsuite-utils/lib/utils/getUnhandledProps'>; -} -declare module 'rsuite-utils/lib/utils/handleMouseOverOut.js' { - declare module.exports: $Exports<'rsuite-utils/lib/utils/handleMouseOverOut'>; -} -declare module 'rsuite-utils/lib/utils/index.js' { - declare module.exports: $Exports<'rsuite-utils/lib/utils/index'>; -} -declare module 'rsuite-utils/lib/utils/isNullOrUndefined.js' { - declare module.exports: $Exports<'rsuite-utils/lib/utils/isNullOrUndefined'>; -} -declare module 'rsuite-utils/lib/utils/isOneOf.js' { - declare module.exports: $Exports<'rsuite-utils/lib/utils/isOneOf'>; -} -declare module 'rsuite-utils/lib/utils/overlayPositionUtils.js' { - declare module.exports: $Exports<'rsuite-utils/lib/utils/overlayPositionUtils'>; -} -declare module 'rsuite-utils/lib/utils/prefix.js' { - declare module.exports: $Exports<'rsuite-utils/lib/utils/prefix'>; -} -declare module 'rsuite-utils/lib/utils/reactToString.js' { - declare module.exports: $Exports<'rsuite-utils/lib/utils/reactToString'>; -} -declare module 'rsuite-utils/lib/utils/TypeDefinition.js' { - declare module.exports: $Exports<'rsuite-utils/lib/utils/TypeDefinition'>; -} -declare module 'rsuite-utils/src/Animation/Collapse.js' { - declare module.exports: $Exports<'rsuite-utils/src/Animation/Collapse'>; -} -declare module 'rsuite-utils/src/Animation/Fade.js' { - declare module.exports: $Exports<'rsuite-utils/src/Animation/Fade'>; -} -declare module 'rsuite-utils/src/Animation/index.js' { - declare module.exports: $Exports<'rsuite-utils/src/Animation/index'>; -} -declare module 'rsuite-utils/src/Animation/Transition.js' { - declare module.exports: $Exports<'rsuite-utils/src/Animation/Transition'>; -} -declare module 'rsuite-utils/src/index.js' { - declare module.exports: $Exports<'rsuite-utils/src/index'>; -} -declare module 'rsuite-utils/src/Overlay/BaseOverlay.js' { - declare module.exports: $Exports<'rsuite-utils/src/Overlay/BaseOverlay'>; -} -declare module 'rsuite-utils/src/Overlay/index.js' { - declare module.exports: $Exports<'rsuite-utils/src/Overlay/index'>; -} -declare module 'rsuite-utils/src/Overlay/LegacyPortal.js' { - declare module.exports: $Exports<'rsuite-utils/src/Overlay/LegacyPortal'>; -} -declare module 'rsuite-utils/src/Overlay/Modal.js' { - declare module.exports: $Exports<'rsuite-utils/src/Overlay/Modal'>; -} -declare module 'rsuite-utils/src/Overlay/ModalManager.js' { - declare module.exports: $Exports<'rsuite-utils/src/Overlay/ModalManager'>; -} -declare module 'rsuite-utils/src/Overlay/Overlay.js' { - declare module.exports: $Exports<'rsuite-utils/src/Overlay/Overlay'>; -} -declare module 'rsuite-utils/src/Overlay/OverlayTrigger.js' { - declare module.exports: $Exports<'rsuite-utils/src/Overlay/OverlayTrigger'>; -} -declare module 'rsuite-utils/src/Overlay/Portal.js' { - declare module.exports: $Exports<'rsuite-utils/src/Overlay/Portal'>; -} -declare module 'rsuite-utils/src/Overlay/Position.js' { - declare module.exports: $Exports<'rsuite-utils/src/Overlay/Position'>; -} -declare module 'rsuite-utils/src/Overlay/RefHolder.js' { - declare module.exports: $Exports<'rsuite-utils/src/Overlay/RefHolder'>; -} -declare module 'rsuite-utils/src/Overlay/RootCloseWrapper.js' { - declare module.exports: $Exports<'rsuite-utils/src/Overlay/RootCloseWrapper'>; -} -declare module 'rsuite-utils/src/Picker/constants.js' { - declare module.exports: $Exports<'rsuite-utils/src/Picker/constants'>; -} -declare module 'rsuite-utils/src/Picker/index.js' { - declare module.exports: $Exports<'rsuite-utils/src/Picker/index'>; -} -declare module 'rsuite-utils/src/Picker/MenuWrapper.js' { - declare module.exports: $Exports<'rsuite-utils/src/Picker/MenuWrapper'>; -} -declare module 'rsuite-utils/src/Picker/SearchBar.js' { - declare module.exports: $Exports<'rsuite-utils/src/Picker/SearchBar'>; -} -declare module 'rsuite-utils/src/Picker/Toggle.js' { - declare module.exports: $Exports<'rsuite-utils/src/Picker/Toggle'>; -} -declare module 'rsuite-utils/src/utils/createChainedFunction.js' { - declare module.exports: $Exports<'rsuite-utils/src/utils/createChainedFunction'>; -} -declare module 'rsuite-utils/src/utils/filterNodesOfTree.js' { - declare module.exports: $Exports<'rsuite-utils/src/utils/filterNodesOfTree'>; -} -declare module 'rsuite-utils/src/utils/findNodeOfTree.js' { - declare module.exports: $Exports<'rsuite-utils/src/utils/findNodeOfTree'>; -} -declare module 'rsuite-utils/src/utils/getDataGroupBy.js' { - declare module.exports: $Exports<'rsuite-utils/src/utils/getDataGroupBy'>; -} -declare module 'rsuite-utils/src/utils/getUnhandledProps.js' { - declare module.exports: $Exports<'rsuite-utils/src/utils/getUnhandledProps'>; -} -declare module 'rsuite-utils/src/utils/handleMouseOverOut.js' { - declare module.exports: $Exports<'rsuite-utils/src/utils/handleMouseOverOut'>; -} -declare module 'rsuite-utils/src/utils/index.js' { - declare module.exports: $Exports<'rsuite-utils/src/utils/index'>; -} -declare module 'rsuite-utils/src/utils/isNullOrUndefined.js' { - declare module.exports: $Exports<'rsuite-utils/src/utils/isNullOrUndefined'>; -} -declare module 'rsuite-utils/src/utils/isOneOf.js' { - declare module.exports: $Exports<'rsuite-utils/src/utils/isOneOf'>; -} -declare module 'rsuite-utils/src/utils/overlayPositionUtils.js' { - declare module.exports: $Exports<'rsuite-utils/src/utils/overlayPositionUtils'>; -} -declare module 'rsuite-utils/src/utils/prefix.js' { - declare module.exports: $Exports<'rsuite-utils/src/utils/prefix'>; -} -declare module 'rsuite-utils/src/utils/reactToString.js' { - declare module.exports: $Exports<'rsuite-utils/src/utils/reactToString'>; -} -declare module 'rsuite-utils/src/utils/TypeDefinition.js' { - declare module.exports: $Exports<'rsuite-utils/src/utils/TypeDefinition'>; -} diff --git a/flow-typed/npm/rsuite_v3.x.x.js b/flow-typed/npm/rsuite_v3.x.x.js deleted file mode 100644 index 314e68b..0000000 --- a/flow-typed/npm/rsuite_v3.x.x.js +++ /dev/null @@ -1,1737 +0,0 @@ -// flow-typed signature: e376a3d73614f40fb4260a02a1b63746 -// flow-typed version: 4939627303/rsuite_v3.x.x/flow_>=v0.53.x - -declare module "rsuite" { - - declare type moment$Moment = Object; - declare type Size = "lg" | "md" | "sm" | "xs"; - declare type Types = "success" | "warning" | "error" | "info"; - declare type PickerAppearanceType = "default" | "subtle"; - declare type SVGIcon = { viewBox: string, id: string }; - declare type Color = - | "red" - | "orange" - | "yellow" - | "green" - | "cyan" - | "blue" - | "violet"; - - declare type TriggerType = "click" | "hover"; - declare type WhisperTriggerType = "click" | "hover" | "focus" | "active"; - declare type DropdownTriggerType = "click" | "hover" | "contextMenu"; - declare type PlacementFourSides = "top" | "right" | "bottom" | "left"; - declare type PlacementEightPoints = - | "bottomLeft" - | "bottomRight" - | "topLeft" - | "topRight" - | "leftTop" - | "rightTop" - | "leftBottom" - | "rightBottom"; - - declare type PlacementAuto = - | "auto" - | "autoVertical" - | "autoVerticalLeft" - | "autoVerticalRight" - | "autoHorizontal" - | "autoHorizontalTop" - | "autoHorizontalBottom"; - - declare type Placement = PlacementEightPoints | PlacementAuto; - declare type ItemDataType = { - label: mixed, - value: mixed - }; - - declare type AnimationCallbackProps = { - onEnter?: () => void, - onEntering?: () => void, - onEntered?: () => void, - onExit?: () => void, - onExiting?: () => void, - onExited?: () => void - }; - - declare type SelectProps = { - menuStyle?: Object, - menuClassName?: string, - valueKey?: string, - labelKey?: string - }; - - declare type PickerProps = { - className?: string, - classPrefix?: string, - toggleComponentClass?: React$ElementType, - style?: Object, - container?: HTMLElement | (() => HTMLElement), - containerPadding?: number, - cleanable?: boolean, - open?: boolean, - defaultOpen?: boolean, - placement?: Placement, - block?: boolean, - disabled?: boolean, - placeholder?: string, - renderMenu?: (itemLabel: React$Node, item: Object) => React$Node, - onOpen?: () => void, - onClose?: () => void - } & AnimationCallbackProps; - - declare export class Cascader extends React$Component< - PickerProps & - SelectProps & { - appearance?: PickerAppearanceType, - childrenKey?: string, - data: Array, - renderExtraFooter?: () => React$Node, - value?: any, - defaultValue?: any, - onChange?: (value: any, event: SyntheticEvent<*>) => void, - onSelect?: ( - value: any, - activePaths: Array, - event: SyntheticEvent<*> - ) => void, - renderValue?: (activePaths?: Array) => React$Node, - renderMenuItem?: (itemLabel: React$Node, item: Object) => React$Node, - menuWidth?: number, - menuHeight?: number, - disabledItemValues?: Array - } - > {} - - declare export class CheckTreePicker extends React$Component< - PickerProps & - SelectProps & { - appearance?: PickerAppearanceType, - data: Array, - value?: Array, - height?: number, - inline?: boolean, - cascade?: boolean, - expandAll?: boolean, - searchable?: boolean, - childrenKey?: string, - defaultValue?: Array, - searchKeyword?: string, - defaultExpandAll?: boolean, - disabledItemValues?: Array, - disabledCheckboxValues?: Array, - onSearch?: (searchKeyword: string, event: SyntheticEvent<*>) => void, - onChange?: (values: any) => void, - onExpand?: (activeNode: any, labyer: number) => void, - onSelect?: (activeNode: any, layer: number, values: any) => void, - onScroll?: (event: SyntheticEvent<*>) => void, - renderValue?: ( - values: Array, - checkItems: Array, - placeholder: string | React$Node - ) => React$Node, - renderTreeNode?: (nodeData: Object) => React$Node, - renderTreeIcon?: (nodeData: Object) => React$Node, - renderExtraFooter?: () => React$Node - } - > {} - - declare export class TreePicker extends React$Component< - PickerProps & - SelectProps & { - appearance?: PickerAppearanceType, - data: Array, - open?: boolean, - value?: any, - height?: number, - inline?: boolean, - expandAll?: boolean, - searchable?: boolean, - childrenKey?: string, - defaultValue?: any, - searchKeyword?: string, - defaultExpandAll?: boolean, - disabledItemValues?: Array, - onSearch?: (searchKeyword: string, event: SyntheticEvent<*>) => void, - onChange?: (value: any) => void, - onExpand?: (activeNode: any, labyer: number) => void, - onSelect?: ( - activeNode: any, - layer: number, - event: SyntheticEvent<*> - ) => void, - renderValue?: ( - activeNode: Object, - placeholder: string | React$Node - ) => React$Node, - renderTreeNode?: (nodeData: Object) => React$Node, - renderTreeIcon?: (nodeData: Object) => React$Node, - renderExtraFooter?: () => React$Node - } - > {} - - declare export class Tree extends React$Component<{ - data: Array, - value?: any, - height?: number, - expandAll?: boolean, - valueKey?: string, - labelKey?: string, - childrenKey?: string, - defaultValue?: any, - defaultExpandAll?: boolean, - disabledItemValues?: Array, - onChange?: (value: any) => void, - onExpand?: (activeNode: any, labyer: number) => void, - onSelect?: ( - activeNode: any, - layer: number, - event: SyntheticEvent<*> - ) => void, - renderTreeNode?: (nodeData: Object) => React$Node, - renderTreeIcon?: (nodeData: Object) => React$Node - }> {} - - declare export class CheckTree extends React$Component<{ - data: Array, - value?: any, - height?: number, - expandAll?: boolean, - valueKey?: string, - labelKey?: string, - childrenKey?: string, - defaultValue?: any, - defaultExpandAll?: boolean, - disabledItemValues?: Array, - onChange?: (value: Array) => void, - onExpand?: (activeNode: any, labyer: number) => void, - onSelect?: ( - activeNode: any, - layer: number, - event: SyntheticEvent<*> - ) => void, - renderTreeNode?: (nodeData: Object) => React$Node, - renderTreeIcon?: (nodeData: Object) => React$Node - }> {} - - declare export class CheckPicker extends React$Component< - PickerProps & - SelectProps & { - appearance?: PickerAppearanceType, - data: Array, - disabledItemValues?: Array, - maxHeight?: number, - value?: Array, - defaultValue?: Array, - renderMenuItem?: (itemLabel: React$Node, item: Object) => React$Node, - renderMenuGroup?: (title: React$Node, item: Object) => React$Node, - renderValue?: (value: Array, items: Array) => React$Node, - renderExtraFooter?: () => React$Node, - onChange?: (value: Array, event: SyntheticEvent<*>) => void, - onSelect?: (value: any, item: Object, event: SyntheticEvent<*>) => void, - onGroupTitleClick?: (event: SyntheticEvent<*>) => void, - onSearch?: (searchKeyword: string, event: SyntheticEvent<*>) => void, - groupBy?: any, - searchable?: boolean - } - > {} - - declare export class DatePicker extends React$Component< - PickerProps & { - appearance?: PickerAppearanceType, - disabledDate?: (date?: moment$Moment) => boolean, - disabledHours?: (hour: number, date: moment$Moment) => boolean, - disabledMinutes?: (minute: number, date: moment$Moment) => boolean, - disabledSeconds?: (second: number, date: moment$Moment) => boolean, - hideHours?: (hour: number, date: moment$Moment) => boolean, - hideMinutes?: (minute: number, date: moment$Moment) => boolean, - hideSeconds?: (second: number, date: moment$Moment) => boolean, - ranges?: Array, - defaultValue?: moment$Moment, - value?: moment$Moment, - calendarDefaultDate?: moment$Moment, - format?: string, - inline?: boolean, - onChange?: (value: moment$Moment | null) => void, - onChangeCalendarDate?: ( - date: moment$Moment, - event?: SyntheticEvent<*> - ) => void, - onToggleMonthDropdown?: (toggle: boolean) => void, - onToggleTimeDropdown?: (toggle: boolean) => void, - onSelect?: (date: moment$Moment, event?: SyntheticEvent<*>) => void, - onPrevMonth?: (date: moment$Moment) => void, - onNextMonth?: (date: moment$Moment) => void, - onOk?: (date: moment$Moment, event: SyntheticEvent<*>) => void, - isoWeek?: boolean, - limitStartYear?: number, - limitEndYear?: number, - menuClassName?: string - } - > {} - - declare export class DateRangePicker extends React$Component< - PickerProps & { - appearance?: PickerAppearanceType, - disabledDate?: ( - date: moment$Moment, - selectValue: Array, - doneSelected: boolean, - type: string - ) => boolean, - ranges?: Array, - value?: Array, - defaultValue?: Array, - format?: string, - onChange?: (value: Array) => void, - onOk?: (value?: Array, event: SyntheticEvent<*>) => void, - hoverRange?: "week" | "month" | (() => void), - isoWeek?: boolean, - oneTap?: boolean, - limitStartYear?: number, - limitEndYear?: number, - menuClassName?: string, - onSelect?: (date: moment$Moment) => void - } - > {} - - declare export class InputPicker extends React$Component< - PickerProps & - SelectProps & { - data: Array, - cacheData?: Array, - disabledItemValues?: Array, - maxHeight?: number, - value?: any, - defaultValue?: any, - renderMenuItem?: (itemLabel: React$Node, item: Object) => React$Node, - renderMenuGroup?: (title: React$Node, item: Object) => React$Node, - renderValue?: (value: any, item: Object) => React$Node, - renderExtraFooter?: () => React$Node, - onChange?: (value: any, event: SyntheticEvent<*>) => void, - onSelect?: (value: any, item: Object, event: SyntheticEvent<*>) => void, - onGroupTitleClick?: (event: SyntheticEvent<*>) => void, - onSearch?: (searchKeyword: string, event: SyntheticEvent<*>) => void, - groupBy?: any, - searchable?: boolean, - creatable?: boolean - } - > {} - - declare export class TagPicker extends React$Component< - PickerProps & - SelectProps & { - data: Array, - cacheData?: Array, - disabledItemValues?: Array, - maxHeight?: number, - value?: Array, - defaultValue?: Array, - renderMenuItem?: (itemLabel: React$Node, item: Object) => React$Node, - renderMenuGroup?: (title: React$Node, item: Object) => React$Node, - renderValue?: (value: Array, item: Object) => React$Node, - renderExtraFooter?: () => React$Node, - onChange?: (value: Array, event: SyntheticEvent<*>) => void, - onSelect?: ( - value: Array, - item: Object, - event: SyntheticEvent<*> - ) => void, - onGroupTitleClick?: (event: SyntheticEvent<*>) => void, - onSearch?: (searchKeyword: string, event: SyntheticEvent<*>) => void, - groupBy?: any, - searchable?: boolean, - creatable?: boolean - } - > {} - - declare export class SelectPicker extends React$Component< - PickerProps & - SelectProps & { - appearance?: PickerAppearanceType, - data: Array, - disabledItemValues?: Array, - maxHeight?: number, - value?: any, - defaultValue?: any, - renderMenuItem?: (itemLabel: React$Node, item: Object) => React$Node, - renderMenuGroup?: (title: React$Node, item: Object) => React$Node, - renderValue?: (value: any, item: Object) => React$Node, - renderExtraFooter?: () => React$Node, - onChange?: (value: any, event: SyntheticEvent<*>) => void, - onSelect?: (value: any, item: Object, event: SyntheticEvent<*>) => void, - onGroupTitleClick?: (event: SyntheticEvent<*>) => void, - onSearch?: (searchKeyword: string, event: SyntheticEvent<*>) => void, - groupBy?: any, - searchable?: boolean - } - > {} - - declare export class AutoComplete extends React$Component<{ - data: Array, - disabled?: boolean, - onSelect?: (item: ItemDataType, event: SyntheticEvent<*>) => void, - onChange?: (value: string, event: SyntheticEvent<*>) => void, - classPrefix?: string, - value?: string, - defaultValue?: string, - className?: string, - menuClassName?: string, - placement?: Placement, - onFocus?: (event: SyntheticEvent<*>) => void, - onMenuFocus?: (focusItemValue: any, event: SyntheticEvent<*>) => void, - onBlur?: (event: SyntheticEvent<*>) => void, - onKeyDown?: (event: SyntheticEvent<*>) => void, - onOpen?: () => void, - onClose?: () => void, - renderItem?: (itemValue: string) => React$Node, - style?: Object, - open?: boolean, - selectOnEnter?: boolean - }> {} - - declare export class BreadcrumbItem extends React$Component<{ - active?: boolean, - className?: string, - style?: Object, - href?: string, - title?: React$ElementType, - target?: string, - classPrefix?: string, - componentClass?: React$ElementType - }> {} - - declare export class Breadcrumb extends React$Component<{ - separator?: React$Node, - componentClass?: React$ElementType, - children?: React$Node, - className?: string, - classPrefix?: string - }> { - static Item: Class; - } - - declare export class Button extends React$Component<{ - appearance?: "default" | "primary" | "link" | "subtle" | "ghost", - classPrefix?: string, - componentClass?: React$ElementType, - className?: string, - active?: boolean, - block?: boolean, - href?: string, - loading?: boolean, - disabled?: boolean, - children?: React$Node - }> {} - - declare export class ButtonGroup extends React$Component<{ - className?: string, - vertical?: boolean, - justified?: boolean, - block?: boolean, - classPrefix?: string, - children?: React$Element - }> {} - - declare export class ButtonToolbar extends React$Component<{ - className?: string, - classPrefix?: string - }> {} - - declare export class Checkbox extends React$Component<{ - title?: string, - className?: string, - inline?: boolean, - disabled?: boolean, - checked?: boolean, - defaultChecked?: boolean, - indeterminate?: boolean, - onChange?: ( - value: any, - checked: boolean, - event: SyntheticInputEvent - ) => void, - onClick?: (event: SyntheticEvent<*>) => void, - inputRef?: React$ElementRef<*>, - value?: any, - children?: React$Node, - classPrefix?: string, - tabIndex?: number - }> {} - - declare export class CheckboxGroup extends React$Component<{ - name?: string, - className?: string, - inline?: boolean, - value?: Array, - defaultValue?: Array, - onChange?: ( - value: Array, - event: SyntheticInputEvent - ) => void, - classPrefix?: string - }> {} - - declare export class Col extends React$Component<{ - className?: string, - classPrefix?: string, - xs?: number, - sm?: number, - md?: number, - lg?: number, - xsOffset?: number, - smOffset?: number, - mdOffset?: number, - lgOffset?: number, - xsPush?: number, - smPush?: number, - mdPush?: number, - lgPush?: number, - xsPull?: number, - smPull?: number, - mdPull?: number, - lgPull?: number, - xsHidden?: boolean, - smHidden?: boolean, - mdHidden?: boolean, - lgHidden?: boolean, - componentClass?: React$ElementType - }> {} - - declare export class Container extends React$Component<{ - className?: string, - classPrefix?: string - }> {} - - declare export class Content extends React$Component<{ - className?: string, - classPrefix?: string - }> {} - - declare export class ControlLabel extends React$Component<{ - className?: string, - htmlFor?: string, - classPrefix?: string, - srOnly?: boolean - }> {} - - declare export class Divider extends React$Component<{ - className?: string, - vertical?: boolean, - classPrefix?: string, - children?: React$Node, - componentClass?: React$ElementType - }> {} - - declare export class Drawer extends React$Component<{ - classPrefix?: string, - placement?: "top" | "right" | "bottom" | "left", - show?: boolean, - full?: boolean, - children?: React$Node, - className?: string - }> { - static Body: Class; - static Header: Class; - static Title: Class; - static Footer: Class; - static Dialog: Class; - } - - declare export class Dropdown extends React$Component<{ - activeKey?: any, - classPrefix?: string, - trigger?: DropdownTriggerType | Array, - placement?: PlacementEightPoints, - title?: React$Node, - disabled?: boolean, - icon?: React$Element, - onClose?: () => void, - onOpen?: () => void, - onToggle?: (open?: boolean) => void, - onSelect?: (eventKey: any, event: SyntheticEvent<*>) => void, - onMouseEnter?: (event: SyntheticEvent<*>) => void, - onMouseLeave?: (event: SyntheticEvent<*>) => void, - onContextMenu?: (event: SyntheticEvent<*>) => void, - onClick?: (event: SyntheticEvent<*>) => void, - menuStyle?: Object, - className?: string, - toggleClassName?: string, - renderTitle?: (children?: React$Node) => React$Node, - tabIndex?: number, - open?: boolean, - eventKey?: any, - componentClass?: React$ElementType, - toggleComponentClass?: React$ElementType, - noCaret?: boolean - }> { - static Item: Class; - static Menu: Class; - } - - declare export class DropdownMenu extends React$Component<{ - activeKey?: any, - className?: string, - icon?: React$Element, - classPrefix?: string, - pullLeft?: boolean, - onSelect?: Function, - title?: React$Node, - open?: boolean, - trigger?: TriggerType | Array, - eventKey?: any, - onToggle?: (eventKey: any, event: SyntheticEvent<*>) => void, - openKeys?: Array, - expanded?: boolean, - collapsible?: boolean - }> {} - - declare export class DropdownMenuItem extends React$Component<{ - activeKey?: any, - className?: string, - children?: React$Node, - icon?: React$Element, - classPrefix?: string, - pullLeft?: boolean, - onSelect?: Function, - title?: React$Node, - open?: boolean, - trigger?: TriggerType | Array, - eventKey?: any, - onToggle?: (eventKey: any, event: SyntheticEvent<*>) => void, - openKeys?: Array, - expanded?: boolean, - collapsible?: boolean - }> {} - - declare export class DorpdownToggle extends React$Component<{ - className?: string, - children?: React$Node, - icon?: React$Element, - renderTitle?: (children?: React$Node) => React$Node, - classPrefix?: string, - noCaret?: boolean, - componentClass?: React$ElementType - }> {} - - declare export class ErrorMessage extends React$Component<{ - htmlFor?: string, - show?: boolean, - classPrefix?: string, - children?: React$Node, - className?: string, - placement?: PlacementEightPoints - }> {} - - declare export class FlexboxGrid extends React$Component<{ - className?: string, - align?: "top" | "middle" | "bottom", - justify?: "start" | "end" | "center" | "space-around" | "space-between", - classPrefix?: string - }> { - static Item: Class; - } - - declare export class FlexboxGridItem extends React$Component<{ - className?: string, - colspan?: number, - order?: number, - classPrefix?: string - }> {} - - declare export class Footer extends React$Component<{ - className?: string, - classPrefix?: string - }> {} - - declare export class Form extends React$Component<{ - className?: string, - layout?: "horizontal" | "vertical" | "inline", - fluid?: boolean, - formValue?: Object, - formDefaultValue?: Object, - formError?: Object, - checkDelay?: number, - checkTrigger?: "change" | "blur" | "none", - onChange?: (formValue: Object, event: SyntheticEvent<*>) => void, - onError?: (formError: Object) => void, - onCheck?: (formError: Object) => void, - model?: typeof Schema, - classPrefix?: string - }> {} - - declare export class Icon extends React$Component<{ - icon: string | SVGIcon, - className?: string, - classPrefix?: string, - componentClass?: React$ElementType, - size?: "lg" | "2x" | "3x" | "4x" | "5x", - flip?: "horizontal" | "vertical", - stack?: "1x" | "2x", - rotate?: number, - fixedWidth?: boolean, - svgStyle?: Object, - spin?: boolean, - pulse?: boolean - }> {} - - declare export class IntlProvider extends React$Component<{ - locale?: Object, - children?: React$Node - }> {} - - declare export class FormControl extends React$Component<{ - name: string, - checkTrigger?: "change" | "blur" | "none", - accepter?: React$ElementType, - onChange?: (value: any, event: SyntheticEvent<*>) => void, - onBlur?: (event: SyntheticEvent<*>) => void, - classPrefix?: string, - errorMessage?: React$Node, - errorPlacement?: PlacementEightPoints - }> {} - - declare export class FormGroup extends React$Component<{ - controlId?: string, - isValid?: boolean, - className?: string, - classPrefix?: string, - validationState?: "success" | "warning" | "error" - }> {} - - declare export class Grid extends React$Component<{ - className?: string, - fluid?: boolean, - classPrefix?: string, - componentClass?: React$ElementType - }> {} - - declare export class Header extends React$Component<{ - className?: string, - classPrefix?: string - }> {} - - declare export class HelpBlock extends React$Component<{ - className?: string, - htmlFor?: string, - tooltip?: boolean, - classPrefix?: string - }> {} - - declare export class IconButton extends React$Component<{ - className?: string, - icon?: React$Element, - classPrefix?: string, - circle?: boolean, - children?: React$Node, - placement?: "left" | "right" - }> {} - - declare export class Input extends React$Component<{ - type?: string, - componentClass?: React$ElementType, - id?: string, - classPrefix?: string, - className?: string, - disabled?: boolean, - value?: string | number, - defaultValue?: string | number, - inputRef?: React$ElementRef<*>, - onChange?: ( - value: any, - event: SyntheticInputEvent - ) => void, - onFocus?: (event: SyntheticEvent<*>) => void, - onBlur?: (event: SyntheticEvent<*>) => void, - onKeyDown?: (event: SyntheticEvent<*>) => void, - onPressEnter?: (event: SyntheticEvent<*>) => void - }> {} - - declare export class InputGroup extends React$Component<{ - className?: string, - classPrefix?: string, - inside?: boolean, - disabled?: boolean - }> { - static Addon: Class; - static Button: Class; - } - - declare export class InputGroupAddon extends React$Component<{ - className?: string, - classPrefix?: string, - disabled?: boolean - }> {} - - declare export class InputGroupButton extends React$Component<{ - className?: string, - classPrefix?: string - }> {} - - declare export class InputNumber extends React$Component<{ - className?: string, - classPrefix?: string, - min?: number, - max?: number, - step?: number, - value?: number | string, - defaultValue?: number | string, - prefix?: React$Node, - postfix?: React$Node, - disabled?: boolean, - size?: "lg" | "md" | "sm" | "xs", - onWheel?: (event?: SyntheticEvent<*>) => void, - onChange?: (value: any, event?: SyntheticEvent<*>) => void, - buttonAppearance?: "default" | "primary" | "link" | "subtle" | "ghost" - }> {} - - declare export class Loader extends React$Component<{ - className?: string, - classPrefix?: string, - center?: boolean, - backdrop?: boolean, - inverse?: boolean, - vertical?: boolean, - content?: React$Node, - speed?: "normal" | "fast" | "slow" - }> {} - - declare export class Message extends React$Component<{ - type?: Types, - className?: string, - onClose?: () => void, - closable?: boolean, - closeLabel?: string, - title?: React$Node, - description?: React$Node, - showIcon?: boolean, - full?: boolean, - classPrefix?: string - }> {} - - declare export class Modal extends React$Component<{ - classPrefix?: string, - size?: Size, - container?: React$ElementType | Function, - onRendered?: Function, - className?: string, - dialogClassName?: string, - backdropClassName?: string, - style?: Object, - dialogStyle?: Object, - backdropStyle?: Object, - show?: boolean, - full?: boolean, - backdrop?: boolean | "static", - keyboard?: boolean, - transition?: React$ElementType, - dialogTransitionTimeout?: number, - backdropTransitionTimeout?: number, - autoFocus?: boolean, - enforceFocus?: boolean, - overflow?: boolean, - drawer?: boolean, - animation?: boolean, - dialogComponentClass?: React$ElementType, - onEscapeKeyUp?: Function, - onBackdropClick?: Function, - onShow?: Function, - onHide?: Function, - onEnter?: Function, - onEntering?: Function, - onEntered?: Function, - onExit?: Function, - onExiting?: Function, - onExited?: Function - }> { - static Body: Class; - static Header: Class; - static Title: Class; - static Footer: Class; - static Dialog: Class; - } - - declare export class ModalBody extends React$Component<{ - classPrefix?: string, - className?: string - }> {} - - declare export class ModalDialog extends React$Component<{ - className?: string, - classPrefix?: string, - dialogClassName?: string, - style?: Object, - dialogStyle?: Object - }> {} - - declare export class ModalFooter extends React$Component<{ - classPrefix?: string, - className?: string - }> {} - - declare export class ModalHeader extends React$Component<{ - classPrefix?: string, - className?: string, - closeButton?: boolean, - onHide?: Function - }> {} - - declare export class ModalTitle extends React$Component<{ - className?: string, - classPrefix?: string - }> {} - - declare export class Nav extends React$Component<{ - classPrefix?: string, - className?: string, - appearance?: "default" | "subtle" | "tabs", - reversed?: boolean, - justified?: boolean, - vertical?: boolean, - pullRight?: boolean, - activeKey?: any, - onSelect?: (eventKey: any, event: SyntheticEvent<*>) => void - }> { - static Item: Class; - } - - declare export class NavItem extends React$Component<{ - active?: boolean, - disabled?: boolean, - className?: string, - classPrefix?: string, - divider?: boolean, - panel?: boolean, - onClick?: (event: SyntheticEvent<*>) => void, - style?: Object, - icon?: React$Element, - onSelect?: (eventKey: any, event: SyntheticEvent<*>) => void, - eventKey?: any, - tabIndex?: number, - hasTooltip?: boolean, - componentClass?: React$ElementType - }> {} - - declare export class Navbar extends React$Component<{ - classPrefix?: string, - className?: string, - appearance?: "default" | "inverse" | "subtle", - componentClass?: React$ElementType, - hasChildContext?: boolean - }> { - static Body: Class; - static Header: Class; - } - - declare export class NavbarBody extends React$Component<{ - classPrefix?: string, - className?: string, - children?: React$Node - }> {} - - declare export class NavbarHeader extends React$Component<{ - classPrefix?: string, - className?: string - }> {} - - declare export class Pagination extends React$Component<{ - activePage?: number, - pages?: number, - maxButtons?: number, - boundaryLinks?: boolean, - ellipsis?: boolean | React$Node, - first?: boolean | React$Node, - last?: boolean | React$Node, - prev?: boolean | React$Node, - next?: boolean | React$Node, - onSelect?: (event: SyntheticEvent<*>) => void, - buttonComponentClass?: React$ElementType | string, - className?: string, - classPrefix?: string - }> {} - - declare export class Panel extends React$Component<{ - collapsible?: boolean, - bordered?: boolean, - bodyFill?: boolean, - header?: any, - id?: string | number, - defaultExpanded?: boolean, - expanded?: boolean, - eventKey?: any, - headerRole?: string, - panelRole?: string, - classPrefix?: string, - children?: React$Node, - onSelect?: (eventKey: any, event: SyntheticEvent<*>) => void, - onEnter?: Function, - onEntering?: Function, - onEntered?: Function, - onExit?: Function, - onExiting?: Function, - onExited?: Function, - className?: string - }> {} - - declare export class PanelGroup extends React$Component<{ - accordion?: boolean, - activeKey?: any, - bordered?: boolean, - defaultActiveKey?: any, - className?: string, - children?: React$Node, - classPrefix?: string, - onSelect?: (eventKey: any, event: SyntheticEvent<*>) => void - }> {} - - declare export class Popover extends React$Component<{ - placement?: PlacementFourSides | Placement, - classPrefix?: string, - children?: React$Node, - title?: React$Node, - visible?: boolean, - className?: string, - full?: boolean, - onMouseLeave?: (event: SyntheticEvent<*>) => void, - onMouseEnter?: (event: SyntheticEvent<*>) => void - }> {} - - declare export class ProgressCircle extends React$Component<{ - className?: string, - strokeColor?: string, - strokeLinecap?: "butt" | "round" | "square", - trailColor?: string, - percent?: number, - strokeWidth?: number, - trailWidth?: number, - gapDegree?: number, - gapPosition?: "top" | "bottom" | "left" | "right", - showInfo?: boolean, - status?: "success" | "fail" | "active", - classPrefix?: string - }> {} - - declare export class ProgressLine extends React$Component<{ - className?: string, - classPrefix?: string, - percent?: number, - strokeColor?: string, - strokeWidth?: number, - trailColor?: string, - trailWidth?: number, - showInfo?: boolean, - status?: "success" | "fail" | "active" - }> {} - - declare export class Radio extends React$Component<{ - id?: string, - name?: string, - inline?: boolean, - title?: string, - disabled?: boolean, - checked?: boolean, - defaultChecked?: boolean, - inputRef?: React$ElementRef, - children?: React$Node, - className?: string, - classPrefix?: string, - value?: any, - onChange?: ( - value: any, - checked: boolean, - event: SyntheticInputEvent - ) => void, - onClick?: (event: SyntheticEvent<*>) => void, - tabIndex?: number - }> {} - - declare export class RadioGroup extends React$Component<{ - name?: string, - inline?: boolean, - value?: any, - defaultValue?: any, - className?: string, - classPrefix?: string, - children?: React$Node, - onChange?: ( - value: any, - event: SyntheticInputEvent - ) => void - }> {} - - declare export class Row extends React$Component<{ - className?: string, - classPrefix?: string, - gutter?: number, - style?: Object, - componentClass?: React$ElementType, - children?: React$Node - }> {} - - declare export class SafeAnchor extends React$Component<{ - href?: string, - onClick?: (event: SyntheticEvent<*>) => void, - disabled?: boolean, - role?: string, - style?: Object, - tabIndex?: number | string, - componentClass?: React$ElementType - }> {} - - declare export class Sidebar extends React$Component<{ - className?: string, - classPrefix?: string, - width?: number | string, - collapsible?: boolean - }> {} - - declare export class Sidenav extends React$Component<{ - classPrefix?: string, - className?: string, - expanded?: boolean, - appearance?: "default" | "inverse" | "subtle", - defaultOpenKeys?: Array, - openKeys?: Array, - onOpenChange?: (openKeys: Array, event: SyntheticEvent<*>) => void, - activeKey?: any, - onSelect?: (eventKey: Array, event: SyntheticEvent<*>) => void, - componentClass?: React$ElementType - }> { - static Header: Class; - static Body: Class; - static Toggle: Class; - } - - declare export class SidenavBody extends React$Component<{ - classPrefix?: string, - className?: string - }> {} - - declare export class SidenavHeader extends React$Component<{ - classPrefix?: string, - className?: string - }> {} - - declare export class SidenavToggle extends React$Component<{ - classPrefix?: string, - className?: string - }> {} - - declare export class Slider extends React$Component<{ - min?: number, - max?: number, - step?: number, - value?: number, - defaultValue?: number, - className?: string, - classPrefix?: string, - handleClassName?: string, - handleTitle?: React$Node, - barClassName?: string, - hanldeStyle?: Object, - disabled?: boolean, - graduated?: boolean, - tooltip?: boolean, - progress?: boolean, - vertical?: boolean, - onChange?: (value: number) => void, - renderMark?: (mark: number) => React$Node - }> {} - - declare export class StepItem extends React$Component<{ - className?: string, - classPrefix?: string, - itemWidth?: number | string, - status?: "finish" | "wait" | "process" | "error", - icon?: React$Element, - stepNumber?: number, - description?: React$Node, - title?: React$Node - }> {} - - declare export class Steps extends React$Component<{ - classPrefix?: string, - vertical?: boolean, - small?: boolean, - className?: string, - current?: number, - currentStatus?: "finish" | "wait" | "process" | "error" - }> { - static Item: Class; - } - - declare export class TableColumn extends React$Component<{ - align?: "left" | "center" | "right", - width?: number, - fixed?: boolean, - resizable?: boolean, - sortable?: boolean, - flexGrow?: number, - minWidth?: number, - colSpan?: number - }> {} - - declare export class TableCell extends React$Component<{ - align?: "left" | "center" | "right", - className?: string, - classPrefix?: string, - dataKey?: string, - isHeaderCell?: boolean, - width?: number, - height?: number, - left?: number, - headerHeight?: number, - style?: Object, - firstColumn?: boolean, - lastColumn?: boolean, - hasChildren?: boolean, - children?: React$Node, - rowKey?: string | number, - rowIndex?: number, - rowData?: Object, - layer?: number, - onTreeToggle?: ( - rowKey?: string | number, - rowIndex?: number, - rowData?: Object, - event?: SyntheticEvent<*> - ) => void, - renderTreeToggle?: ( - expandButton: React$Node, - rowData?: Object - ) => React$Node, - renderCell?: (contentChildren: React$Node) => React$Node, - wordWrap?: boolean, - removed?: boolean - }> {} - - declare export class TableHeaderCell extends React$Component<{ - width?: number, - dataKey?: string, - left?: number, - className?: string, - classPrefix?: string, - headerHeight?: number, - children?: React$Node, - index?: number, - sortColumn?: string, - sortType?: "desc" | "asc", - sortable?: boolean, - resizable?: boolean, - onColumnResizeStart?: ( - columnWidth?: number, - left?: number, - fixed?: boolean - ) => void, - onColumnResizeEnd?: ( - columnWidth?: number, - cursorDelta?: number, - dataKey?: any, - index?: number - ) => void, - onColumnResizeMove?: ( - columnWidth?: number, - columnLeft?: number, - columnFixed?: boolean - ) => void, - onSortColumn?: Function, - flexGrow?: number, - fixed?: boolean - }> {} - - declare export class TablePagination extends React$Component<{ - lengthMenu?: Array<{ value: number, label: React$Node }>, - showLengthMenu?: boolean, - showInfo?: boolean, - total: number, - displayLength?: number, - renderLengthMenu?: (picker: React$Node) => React$Node, - renderTotal?: Function, - onChangePage?: Function, - onChangeLength?: Function, - prev?: boolean, - next?: boolean, - first?: boolean, - last?: boolean, - maxButtons?: number, - activePage?: number, - className?: string, - classPrefix?: string - }> {} - - declare export class Table extends React$Component<{ - data: Array, - width?: number, - height?: number, - autoHeight?: boolean, - minHeight?: number, - rowHeight?: number, - headerHeight?: number, - setRowHeight?: (rowData: Object) => number, - rowKey?: string | number, - isTree?: boolean, - defaultExpandAllRows?: boolean, - defaultExpandedRowKeys?: Array, - expandedRowKeys?: Array, - renderTreeToggle?: ( - expandButton: React$Node, - rowData: Object - ) => React$Node, - renderRowExpanded?: (rowDate?: Object) => React$Node, - rowExpandedHeight?: number, - style?: Object, - sortColumn?: string, - sortType?: "desc" | "asc", - disabledScroll?: boolean, - hover?: boolean, - loading?: boolean, - className?: string, - classPrefix?: string, - children?: mixed, - bordered?: boolean, - cellBordered?: boolean, - wordWrap?: boolean, - onRowClick?: (rowData: Object) => void, - onScroll?: (scrollX: number, scrollY: number) => void, - onSortColumn?: (dataKey: string, sortType: "desc" | "asc") => void, - onExpandChange?: (expanded: boolean, rowData: Object) => void, - onTouchStart?: (event: SyntheticTouchEvent<*>) => void, // for tests - onTouchMove?: (event: SyntheticTouchEvent<*>) => void, // for tests - bodyRef?: React$ElementRef<*>, - loadAnimation?: boolean, - showHeader?: boolean - }> { - static Column: Class; - static Cell: Class; - static HeaderCell: Class; - static Pagination: Class; - } - - declare export class Tag extends React$Component<{ - closable?: boolean, - classPrefix?: string, - onClose?: (event: SyntheticEvent<*>) => void, - children?: React$Node, - className?: string, - componentClass?: React$ElementType - }> {} - - declare export class Timeline extends React$Component<{ - className?: string, - classPrefix?: string, - children?: React$Node, - componentClass?: React$ElementType - }> { - static Item: Class; - } - - declare export class TimelineItem extends React$Component<{ - last?: boolean, - dot?: React$Node, - className?: string, - children?: React$Node, - classPrefix?: string, - componentClass?: React$ElementType - }> {} - - declare export class Toggle extends React$Component<{ - disabled?: boolean, - checked?: boolean, - defaultChecked?: boolean, - onChange?: (checked: boolean, event: SyntheticEvent<*>) => void, - checkedChildren?: React$Node, - unCheckedChildren?: React$Node, - classPrefix?: string, - className?: string - }> {} - - declare export class Tooltip extends React$Component<{ - placement?: PlacementFourSides | Placement, - positionLeft?: number, - positionTop?: number, - visible?: boolean, - classPrefix?: string, - className?: string, - children?: React$Node, - onMouseLeave?: (event: SyntheticEvent<*>) => void, - onMouseEnter?: (event: SyntheticEvent<*>) => void - }> {} - - declare export type FileType = { - name: string, - fileKey: number | string, - // https://developer.mozilla.org/zh-CN/docs/Web/API/File - blobFile?: File, - status?: "inited" | "uploading" | "error" | "finished", - progress?: number - }; - - declare export class Uploader extends React$Component<{ - action: string, - accept?: string, - autoUpload?: boolean, - children?: React$Element, - className?: string, - classPrefix?: string, - defaultFileList?: Array, - fileList?: Array, - data?: Object, - multiple?: boolean, - disabled?: boolean, - disabledFileItem?: boolean, - name?: string, - timeout?: number, - withCredentials?: boolean, - headers?: Object, - listType?: "text" | "picture-text" | "picture", - shouldQueueUpdate?: ( - fileList: Array, - newFile: Array | FileType - ) => boolean, - shouldUpload?: (file: FileType) => boolean, - onChange?: (fileList: Array) => void, - onUpload?: (file: FileType) => void, - onReupload?: (file: FileType) => void, - onPreview?: (file: FileType, event: SyntheticEvent<*>) => void, - onError?: ( - status: Object, - file: FileType, - event: SyntheticEvent<*> - ) => void, - onSuccess?: ( - response: Object, - file: FileType, - event: SyntheticEvent<*> - ) => void, - onProgress?: ( - percent: number, - file: FileType, - event: SyntheticEvent<*> - ) => void, - onRemove?: (file: FileType) => void, - maxPreviewFileSize?: number, - toggleComponentClass?: React$ElementType - }> {} - - declare export class Whisper extends React$Component<{ - target?: Function, - container?: HTMLElement | (() => HTMLElement), - containerPadding?: number, - placement?: Placement, - show?: boolean, - rootClose?: boolean, - onHide?: Function, - transition?: React$ElementType, - onEnter?: Function, - onEntering?: Function, - onEntered?: Function, - onExit?: Function, - onExiting?: Function, - onExited?: Function, - animation?: React$ElementType | boolean, - trigger?: WhisperTriggerType | Array, - delay?: number, - delayShow?: number, - delayHide?: number, - defaultOpen?: boolean, - open?: boolean, - speaker: React$Element, - children: React$Node, - onMouseOver?: (event: SyntheticEvent<*>) => void, - onMouseOut?: (event: SyntheticEvent<*>) => void, - onClick?: (event: SyntheticEvent<*>) => void, - onBlur?: (event: SyntheticEvent<*>) => void, - onFocus?: (event: SyntheticEvent<*>) => void, - disabled?: boolean - }> {} - - declare export var Progress: { - Line: Class, - Circle: Class - }; - - declare type NotificationConfig = { - title: React$Node, - description: React$ElementType, - duration?: number, - placement?: string, - top?: number, - bottom?: number, - onClose?: () => void, - style?: Object, - key?: string - }; - - declare export var Notification: { - open: (config: NotificationConfig) => void, - info: (config: NotificationConfig) => void, - success: (config: NotificationConfig) => void, - warning: (config: NotificationConfig) => void, - error: (config: NotificationConfig) => void, - remove: (key: string) => void - }; - - declare export var Alert: { - info: (content: string, duration?: number, onClose?: () => void) => void, - success: (content: string, duration?: number, onClose?: () => void) => void, - warning: (content: string, duration?: number, onClose?: () => void) => void, - error: (content: string, duration?: number, onClose?: () => void) => void, - config: (options: { - top?: number, - duration?: number, - getContainer?: () => HTMLElement - }) => void - }; - - declare export class Transition extends React$Component<{ - children?: React$Node, - className?: string, - in?: boolean, - unmountOnExit?: boolean, - transitionAppear?: boolean, - timeout?: number, - - exitedClassName?: string, - exitingClassName?: string, - enteredClassName?: string, - enteringClassName?: string, - - onEnter?: (node: null | HTMLElement | Text) => void, - onEntering?: (node: null | HTMLElement | Text) => void, - onEntered?: (node: null | HTMLElement | Text) => void, - onExit?: (node: null | HTMLElement | Text) => void, - onExiting?: (node: null | HTMLElement | Text) => void, - onExited?: (node: null | HTMLElement | Text) => void - }> {} - - declare export class Fade extends React$Component<{ - timeout?: number, - className?: string, - in?: boolean - }> {} - - declare export class Collapse extends React$Component<{ - in?: boolean, - timeout?: number, - className?: string, - onEnter?: (node: null | HTMLElement | Text) => void, - onEntering?: (node: null | HTMLElement | Text) => void, - onEntered?: (node: null | HTMLElement | Text) => void, - onExit?: (node: null | HTMLElement | Text) => void, - onExiting?: (node: null | HTMLElement | Text) => void, - onExited?: (node: null | HTMLElement | Text) => void, - dimension?: "height" | "width" | (() => "height" | "width"), - getDimensionValue?: ( - dimension: "height" | "width", - elem: HTMLElement - ) => number, - role?: string, - exitedClassName?: string, - exitingClassName?: string, - enteredClassName?: string, - enteringClassName?: string - }> {} - - declare export class Portal extends React$Component<{ - container?: HTMLElement | (() => HTMLElement), - onRendered?: Function, - children?: React$Node - }> {} - - declare export var Animation: { - Transition: Class, - Fade: Class, - Collapse: Class - }; - - declare class SchemaStringType { - constructor(errorMessage: string): SchemaStringType; - isRequired(errorMessage: string): SchemaStringType; - addRule((value: any) => boolean, errorMessage: string): SchemaStringType; - check( - value: any - ): { - hasError: boolean, - errorMessage: string - }; - containsLetter(errorMessage: string): SchemaStringType; - containsUppercaseLetter(errorMessage: string): SchemaStringType; - containsLowercaseLetter(errorMessage: string): SchemaStringType; - containsLetterOnly(errorMessage: string): SchemaStringType; - containsNumber(errorMessage: string): SchemaStringType; - isOneOf(strArr: Array, errorMessage: string): SchemaStringType; - isEmail(errorMessage: string): SchemaStringType; - isURL(errorMessage: string): SchemaStringType; - isHex(errorMessage: string): SchemaStringType; - pattern(regexp: RegExp, errorMessage: string): SchemaStringType; - rangeLength( - minLength: number, - maxLength: number, - errorMessage: string - ): SchemaStringType; - - minLength(minLength: number, errorMessage: string): SchemaStringType; - maxLength(maxLength: number, errorMessage: string): SchemaStringType; - } - - declare class SchemaNumberType { - constructor(errorMessage: string): SchemaNumberType; - isRequired(errorMessage: string): SchemaNumberType; - addRule((value: any) => boolean, errorMessage: string): SchemaNumberType; - check( - value: any - ): { - hasError: boolean, - errorMessage: string - }; - pattern(regexp: RegExp, errorMessage: string): SchemaNumberType; - isInteger(errorMessage: string): SchemaNumberType; - isOneOf(items: Array, errorMessage: string): SchemaNumberType; - range( - minLength: number, - maxLength: number, - errorMessage: string - ): SchemaNumberType; - min(min: number, errorMessage: string): SchemaNumberType; - max(min: number, errorMessage: string): SchemaNumberType; - } - - declare class SchemaArrayType { - constructor(errorMessage: string): SchemaArrayType; - isRequired(errorMessage: string): SchemaArrayType; - addRule((value: any) => boolean, errorMessage: string): SchemaArrayType; - check( - value: any - ): { - hasError: boolean, - errorMessage: string - }; - rangeLength( - minLength: number, - maxLength: number, - errorMessage: string - ): SchemaArrayType; - minLength(minLength: number, errorMessage: string): SchemaArrayType; - maxLength(maxLength: number, errorMessage: string): SchemaArrayType; - unrepeatable(errorMessage: string): SchemaArrayType; - of(type: any, errorMessage: string): SchemaArrayType; - } - - declare class SchemaDateType { - constructor(errorMessage: string): SchemaDateType; - isRequired(errorMessage: string): SchemaDateType; - addRule((value: any) => boolean, errorMessage: string): SchemaDateType; - check( - value: any - ): { - hasError: boolean, - errorMessage: string - }; - range(min: Date, max: Date, errorMessage: string): SchemaDateType; - min(min: Date, errorMessage: string): SchemaDateType; - max(max: Date, errorMessage: string): SchemaDateType; - } - - declare class SchemaObjectType { - constructor(errorMessage: string): SchemaObjectType; - isRequired(errorMessage: string): SchemaObjectType; - addRule((value: any) => boolean, errorMessage: string): SchemaObjectType; - check( - value: any - ): { - hasError: boolean, - errorMessage: string - }; - shape(types: Object, errorMessage: string): SchemaObjectType; - } - - declare class SchemaBooleanType { - constructor(errorMessage: string): SchemaBooleanType; - isRequired(errorMessage: string): SchemaBooleanType; - addRule((value: any) => boolean, errorMessage: string): SchemaBooleanType; - check( - value: any - ): { - hasError: boolean, - errorMessage: string - }; - } - - declare export var Schema: { - Model: Object, - Types: { - StringType: (errorMessage: string) => SchemaStringType, - NumberType: (errorMessage: string) => SchemaNumberType, - ArrayType: (errorMessage: string) => SchemaArrayType, - DateType: (errorMessage: string) => SchemaDateType, - ObjectType: (errorMessage: string) => SchemaObjectType, - BooleanType: (errorMessage: string) => SchemaBooleanType - } - }; - - declare export var DOMHelper: { - hasClass: (node: HTMLElement, className: string) => boolean, - addClass: (node: HTMLElement, className: string) => HTMLElement, - removeClass: (node: HTMLElement, className: string) => HTMLElement, - toggleClass: (node: HTMLElement, className: string) => HTMLElement, - getStyle: Function, - removeStyle: Function, - addStyle: Function, - translateDOMPositionXY: (style: Object, x: number, y: number) => Object, - on: ( - target: HTMLElement, - eventName: string, - listener: Function, - capture?: boolean - ) => { off: Function }, - off: ( - target: HTMLElement, - eventName: string, - listener: Function, - capture?: boolean - ) => void, - activeElement: () => HTMLElement, - getHeight: (node: HTMLElement, client?: HTMLElement) => number, - getWidth: (node: HTMLElement, client?: HTMLElement) => number, - getOffset: (node: HTMLElement) => Object, - getOffsetParent: (node: HTMLElement) => Object, - getPosition: (node: HTMLElement, offsetParent?: Object) => Object, - getWindow: (node: HTMLElement) => String, - nodeName: (node: HTMLElement) => String, - ownerDocument: (node: HTMLElement) => Object, - ownerWindow: (node: HTMLElement) => Object, - contains: (context: HTMLElement, node: HTMLElement) => boolean, - scrollLeft: (node: HTMLElement, val?: number) => number | void, - scrollTop: (node: HTMLElement, val?: number) => number | void, - DOMMouseMoveTracker: Function - }; -} - -declare module "rsuite/lib/IntlProvider/locales/en_GB" { - declare module.exports: any; -} -declare module "rsuite/lib/IntlProvider/locales/en_GB.js" { - declare module.exports: $Exports<"rsuite/lib/IntlProvider/locales/en_GB">; -} - -declare module "rsuite/lib/IntlProvider/locales/en_US" { - declare module.exports: any; -} -declare module "rsuite/lib/IntlProvider/locales/en_US.js" { - declare module.exports: $Exports<"rsuite/lib/IntlProvider/locales/en_US">; -} - -declare module "rsuite/lib/IntlProvider/locales/zh_CN" { - declare module.exports: any; -} -declare module "rsuite/lib/IntlProvider/locales/zh_CN.js" { - declare module.exports: $Exports<"rsuite/lib/IntlProvider/locales/zh_CN">; -} - -declare module "rsuite/lib/IntlProvider/locales/zh_TW" { - declare module.exports: any; -} -declare module "rsuite/lib/IntlProvider/locales/zh_TW.js" { - declare module.exports: $Exports<"rsuite/lib/IntlProvider/locales/zh_TW">; -} diff --git a/flow-typed/npm/sinon-chai_vx.x.x.js b/flow-typed/npm/sinon-chai_vx.x.x.js deleted file mode 100644 index 5824dd8..0000000 --- a/flow-typed/npm/sinon-chai_vx.x.x.js +++ /dev/null @@ -1,32 +0,0 @@ -// flow-typed signature: 4fde9998f49db8c468aafd26cc3e4caf -// flow-typed version: <>/sinon-chai_v^2.8.0/flow_v0.77.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'sinon-chai' - * - * 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 'sinon-chai' { - 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 'sinon-chai/lib/sinon-chai' { - declare module.exports: any; -} - -// Filename aliases -declare module 'sinon-chai/lib/sinon-chai.js' { - declare module.exports: $Exports<'sinon-chai/lib/sinon-chai'>; -} diff --git a/flow-typed/npm/sinon_vx.x.x.js b/flow-typed/npm/sinon_vx.x.x.js deleted file mode 100644 index 33ca643..0000000 --- a/flow-typed/npm/sinon_vx.x.x.js +++ /dev/null @@ -1,263 +0,0 @@ -// flow-typed signature: 0cca479653b1df99ce46e08225caad1c -// flow-typed version: <>/sinon_v^1.17.4/flow_v0.77.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'sinon' - * - * 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 'sinon' { - 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 'sinon/lib/sinon' { - declare module.exports: any; -} - -declare module 'sinon/lib/sinon/assert' { - declare module.exports: any; -} - -declare module 'sinon/lib/sinon/behavior' { - declare module.exports: any; -} - -declare module 'sinon/lib/sinon/call' { - declare module.exports: any; -} - -declare module 'sinon/lib/sinon/collection' { - declare module.exports: any; -} - -declare module 'sinon/lib/sinon/extend' { - declare module.exports: any; -} - -declare module 'sinon/lib/sinon/format' { - declare module.exports: any; -} - -declare module 'sinon/lib/sinon/log_error' { - declare module.exports: any; -} - -declare module 'sinon/lib/sinon/match' { - declare module.exports: any; -} - -declare module 'sinon/lib/sinon/mock' { - declare module.exports: any; -} - -declare module 'sinon/lib/sinon/sandbox' { - declare module.exports: any; -} - -declare module 'sinon/lib/sinon/spy' { - declare module.exports: any; -} - -declare module 'sinon/lib/sinon/stub' { - declare module.exports: any; -} - -declare module 'sinon/lib/sinon/test_case' { - declare module.exports: any; -} - -declare module 'sinon/lib/sinon/test' { - declare module.exports: any; -} - -declare module 'sinon/lib/sinon/times_in_words' { - declare module.exports: any; -} - -declare module 'sinon/lib/sinon/typeOf' { - declare module.exports: any; -} - -declare module 'sinon/lib/sinon/util/core' { - declare module.exports: any; -} - -declare module 'sinon/lib/sinon/util/event' { - declare module.exports: any; -} - -declare module 'sinon/lib/sinon/util/fake_server_with_clock' { - declare module.exports: any; -} - -declare module 'sinon/lib/sinon/util/fake_server' { - declare module.exports: any; -} - -declare module 'sinon/lib/sinon/util/fake_timers' { - declare module.exports: any; -} - -declare module 'sinon/lib/sinon/util/fake_xdomain_request' { - declare module.exports: any; -} - -declare module 'sinon/lib/sinon/util/fake_xml_http_request' { - declare module.exports: any; -} - -declare module 'sinon/lib/sinon/util/timers_ie' { - declare module.exports: any; -} - -declare module 'sinon/lib/sinon/util/xdr_ie' { - declare module.exports: any; -} - -declare module 'sinon/lib/sinon/util/xhr_ie' { - declare module.exports: any; -} - -declare module 'sinon/lib/sinon/walk' { - declare module.exports: any; -} - -declare module 'sinon/pkg/sinon-1.17.7' { - declare module.exports: any; -} - -declare module 'sinon/pkg/sinon-ie-1.17.7' { - declare module.exports: any; -} - -declare module 'sinon/pkg/sinon-ie' { - declare module.exports: any; -} - -declare module 'sinon/pkg/sinon-server-1.17.7' { - declare module.exports: any; -} - -declare module 'sinon/pkg/sinon-server' { - declare module.exports: any; -} - -declare module 'sinon/pkg/sinon' { - declare module.exports: any; -} - -// Filename aliases -declare module 'sinon/lib/sinon.js' { - declare module.exports: $Exports<'sinon/lib/sinon'>; -} -declare module 'sinon/lib/sinon/assert.js' { - declare module.exports: $Exports<'sinon/lib/sinon/assert'>; -} -declare module 'sinon/lib/sinon/behavior.js' { - declare module.exports: $Exports<'sinon/lib/sinon/behavior'>; -} -declare module 'sinon/lib/sinon/call.js' { - declare module.exports: $Exports<'sinon/lib/sinon/call'>; -} -declare module 'sinon/lib/sinon/collection.js' { - declare module.exports: $Exports<'sinon/lib/sinon/collection'>; -} -declare module 'sinon/lib/sinon/extend.js' { - declare module.exports: $Exports<'sinon/lib/sinon/extend'>; -} -declare module 'sinon/lib/sinon/format.js' { - declare module.exports: $Exports<'sinon/lib/sinon/format'>; -} -declare module 'sinon/lib/sinon/log_error.js' { - declare module.exports: $Exports<'sinon/lib/sinon/log_error'>; -} -declare module 'sinon/lib/sinon/match.js' { - declare module.exports: $Exports<'sinon/lib/sinon/match'>; -} -declare module 'sinon/lib/sinon/mock.js' { - declare module.exports: $Exports<'sinon/lib/sinon/mock'>; -} -declare module 'sinon/lib/sinon/sandbox.js' { - declare module.exports: $Exports<'sinon/lib/sinon/sandbox'>; -} -declare module 'sinon/lib/sinon/spy.js' { - declare module.exports: $Exports<'sinon/lib/sinon/spy'>; -} -declare module 'sinon/lib/sinon/stub.js' { - declare module.exports: $Exports<'sinon/lib/sinon/stub'>; -} -declare module 'sinon/lib/sinon/test_case.js' { - declare module.exports: $Exports<'sinon/lib/sinon/test_case'>; -} -declare module 'sinon/lib/sinon/test.js' { - declare module.exports: $Exports<'sinon/lib/sinon/test'>; -} -declare module 'sinon/lib/sinon/times_in_words.js' { - declare module.exports: $Exports<'sinon/lib/sinon/times_in_words'>; -} -declare module 'sinon/lib/sinon/typeOf.js' { - declare module.exports: $Exports<'sinon/lib/sinon/typeOf'>; -} -declare module 'sinon/lib/sinon/util/core.js' { - declare module.exports: $Exports<'sinon/lib/sinon/util/core'>; -} -declare module 'sinon/lib/sinon/util/event.js' { - declare module.exports: $Exports<'sinon/lib/sinon/util/event'>; -} -declare module 'sinon/lib/sinon/util/fake_server_with_clock.js' { - declare module.exports: $Exports<'sinon/lib/sinon/util/fake_server_with_clock'>; -} -declare module 'sinon/lib/sinon/util/fake_server.js' { - declare module.exports: $Exports<'sinon/lib/sinon/util/fake_server'>; -} -declare module 'sinon/lib/sinon/util/fake_timers.js' { - declare module.exports: $Exports<'sinon/lib/sinon/util/fake_timers'>; -} -declare module 'sinon/lib/sinon/util/fake_xdomain_request.js' { - declare module.exports: $Exports<'sinon/lib/sinon/util/fake_xdomain_request'>; -} -declare module 'sinon/lib/sinon/util/fake_xml_http_request.js' { - declare module.exports: $Exports<'sinon/lib/sinon/util/fake_xml_http_request'>; -} -declare module 'sinon/lib/sinon/util/timers_ie.js' { - declare module.exports: $Exports<'sinon/lib/sinon/util/timers_ie'>; -} -declare module 'sinon/lib/sinon/util/xdr_ie.js' { - declare module.exports: $Exports<'sinon/lib/sinon/util/xdr_ie'>; -} -declare module 'sinon/lib/sinon/util/xhr_ie.js' { - declare module.exports: $Exports<'sinon/lib/sinon/util/xhr_ie'>; -} -declare module 'sinon/lib/sinon/walk.js' { - declare module.exports: $Exports<'sinon/lib/sinon/walk'>; -} -declare module 'sinon/pkg/sinon-1.17.7.js' { - declare module.exports: $Exports<'sinon/pkg/sinon-1.17.7'>; -} -declare module 'sinon/pkg/sinon-ie-1.17.7.js' { - declare module.exports: $Exports<'sinon/pkg/sinon-ie-1.17.7'>; -} -declare module 'sinon/pkg/sinon-ie.js' { - declare module.exports: $Exports<'sinon/pkg/sinon-ie'>; -} -declare module 'sinon/pkg/sinon-server-1.17.7.js' { - declare module.exports: $Exports<'sinon/pkg/sinon-server-1.17.7'>; -} -declare module 'sinon/pkg/sinon-server.js' { - declare module.exports: $Exports<'sinon/pkg/sinon-server'>; -} -declare module 'sinon/pkg/sinon.js' { - declare module.exports: $Exports<'sinon/pkg/sinon'>; -} diff --git a/flow-typed/npm/style-loader_vx.x.x.js b/flow-typed/npm/style-loader_vx.x.x.js deleted file mode 100644 index de6e91c..0000000 --- a/flow-typed/npm/style-loader_vx.x.x.js +++ /dev/null @@ -1,66 +0,0 @@ -// flow-typed signature: ee69013f738683186d82f5016f9c7eea -// flow-typed version: <>/style-loader_v^0.20.3/flow_v0.77.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'style-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 'style-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 'style-loader/lib/addStyles' { - declare module.exports: any; -} - -declare module 'style-loader/lib/addStyleUrl' { - declare module.exports: any; -} - -declare module 'style-loader/lib/urls' { - declare module.exports: any; -} - -declare module 'style-loader/url' { - declare module.exports: any; -} - -declare module 'style-loader/useable' { - declare module.exports: any; -} - -// Filename aliases -declare module 'style-loader/index' { - declare module.exports: $Exports<'style-loader'>; -} -declare module 'style-loader/index.js' { - declare module.exports: $Exports<'style-loader'>; -} -declare module 'style-loader/lib/addStyles.js' { - declare module.exports: $Exports<'style-loader/lib/addStyles'>; -} -declare module 'style-loader/lib/addStyleUrl.js' { - declare module.exports: $Exports<'style-loader/lib/addStyleUrl'>; -} -declare module 'style-loader/lib/urls.js' { - declare module.exports: $Exports<'style-loader/lib/urls'>; -} -declare module 'style-loader/url.js' { - declare module.exports: $Exports<'style-loader/url'>; -} -declare module 'style-loader/useable.js' { - declare module.exports: $Exports<'style-loader/useable'>; -} diff --git a/flow-typed/npm/svg-sprite-loader_vx.x.x.js b/flow-typed/npm/svg-sprite-loader_vx.x.x.js deleted file mode 100644 index f50d304..0000000 --- a/flow-typed/npm/svg-sprite-loader_vx.x.x.js +++ /dev/null @@ -1,508 +0,0 @@ -// flow-typed signature: b21d1d18f10e747a50dfd40c281733b2 -// flow-typed version: <>/svg-sprite-loader_v^3.7.1/flow_v0.77.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'svg-sprite-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 'svg-sprite-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 'svg-sprite-loader/examples/base-webpack.config' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/examples/browser-sprite-extract-mode/build/main' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/examples/browser-sprite-extract-mode/main' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/examples/browser-sprite-extract-mode/webpack.config' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/examples/browser-sprite-with-dll-extract-mode/build/dll' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/examples/browser-sprite-with-dll-extract-mode/build/main' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/examples/browser-sprite-with-dll-extract-mode/dll' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/examples/browser-sprite-with-dll-extract-mode/main' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/examples/browser-sprite-with-dll-extract-mode/webpack.config' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/examples/browser-sprite-with-dll-extract-mode/webpack.dll.config' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/examples/browser-sprite-with-dll/build/dll' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/examples/browser-sprite-with-dll/build/main' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/examples/browser-sprite-with-dll/dll' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/examples/browser-sprite-with-dll/main' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/examples/browser-sprite-with-dll/webpack.config' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/examples/browser-sprite-with-dll/webpack.dll.config' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/examples/browser-sprite/build/main' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/examples/browser-sprite/build/sprite' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/examples/browser-sprite/main' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/examples/browser-sprite/webpack.config' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/examples/custom-runtime-generator-extract-mode/build/main' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/examples/custom-runtime-generator-extract-mode/extracting-runtime-generator' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/examples/custom-runtime-generator-extract-mode/main' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/examples/custom-runtime-generator-extract-mode/webpack.config' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/examples/custom-runtime-generator/build/main' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/examples/custom-runtime-generator/icon' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/examples/custom-runtime-generator/main' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/examples/custom-runtime-generator/svg-to-icon-component-runtime-generator' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/examples/custom-runtime-generator/webpack.config' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/examples/extract-mode/build/main' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/examples/extract-mode/main' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/examples/extract-mode/webpack.config' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/examples/interop-with-html-webpack-plugin/build/main' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/examples/interop-with-html-webpack-plugin/main' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/examples/interop-with-html-webpack-plugin/webpack.config' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/examples/server-side-rendering/build/main' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/examples/server-side-rendering/main' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/examples/server-side-rendering/webpack.config' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/lib/config' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/lib/configurator' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/lib/exceptions' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/lib/loader' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/lib/plugin' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/lib/runtime-generator' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/lib/utils/generate-export' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/lib/utils/generate-import' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/lib/utils/generate-sprite-placeholder' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/lib/utils/get-all-modules' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/lib/utils/get-loader-options' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/lib/utils/get-loaders-rules' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/lib/utils/get-matched-rule' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/lib/utils/get-matched-rules' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/lib/utils/get-module-chunk' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/lib/utils/get-webpack-version' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/lib/utils/index' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/lib/utils/interpolate' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/lib/utils/is-module-should-be-extracted' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/lib/utils/is-webpack-1' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/lib/utils/mapped-list' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/lib/utils/normalize-rule' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/lib/utils/replace-in-module-source' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/lib/utils/replace-sprite-placeholder' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/lib/utils/stringify-symbol' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/lib/utils/stringify' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/plugin' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/runtime/browser-sprite.build' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/runtime/browser-sprite' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/runtime/sprite.build' { - declare module.exports: any; -} - -declare module 'svg-sprite-loader/runtime/sprite' { - declare module.exports: any; -} - -// Filename aliases -declare module 'svg-sprite-loader/examples/base-webpack.config.js' { - declare module.exports: $Exports<'svg-sprite-loader/examples/base-webpack.config'>; -} -declare module 'svg-sprite-loader/examples/browser-sprite-extract-mode/build/main.js' { - declare module.exports: $Exports<'svg-sprite-loader/examples/browser-sprite-extract-mode/build/main'>; -} -declare module 'svg-sprite-loader/examples/browser-sprite-extract-mode/main.js' { - declare module.exports: $Exports<'svg-sprite-loader/examples/browser-sprite-extract-mode/main'>; -} -declare module 'svg-sprite-loader/examples/browser-sprite-extract-mode/webpack.config.js' { - declare module.exports: $Exports<'svg-sprite-loader/examples/browser-sprite-extract-mode/webpack.config'>; -} -declare module 'svg-sprite-loader/examples/browser-sprite-with-dll-extract-mode/build/dll.js' { - declare module.exports: $Exports<'svg-sprite-loader/examples/browser-sprite-with-dll-extract-mode/build/dll'>; -} -declare module 'svg-sprite-loader/examples/browser-sprite-with-dll-extract-mode/build/main.js' { - declare module.exports: $Exports<'svg-sprite-loader/examples/browser-sprite-with-dll-extract-mode/build/main'>; -} -declare module 'svg-sprite-loader/examples/browser-sprite-with-dll-extract-mode/dll.js' { - declare module.exports: $Exports<'svg-sprite-loader/examples/browser-sprite-with-dll-extract-mode/dll'>; -} -declare module 'svg-sprite-loader/examples/browser-sprite-with-dll-extract-mode/main.js' { - declare module.exports: $Exports<'svg-sprite-loader/examples/browser-sprite-with-dll-extract-mode/main'>; -} -declare module 'svg-sprite-loader/examples/browser-sprite-with-dll-extract-mode/webpack.config.js' { - declare module.exports: $Exports<'svg-sprite-loader/examples/browser-sprite-with-dll-extract-mode/webpack.config'>; -} -declare module 'svg-sprite-loader/examples/browser-sprite-with-dll-extract-mode/webpack.dll.config.js' { - declare module.exports: $Exports<'svg-sprite-loader/examples/browser-sprite-with-dll-extract-mode/webpack.dll.config'>; -} -declare module 'svg-sprite-loader/examples/browser-sprite-with-dll/build/dll.js' { - declare module.exports: $Exports<'svg-sprite-loader/examples/browser-sprite-with-dll/build/dll'>; -} -declare module 'svg-sprite-loader/examples/browser-sprite-with-dll/build/main.js' { - declare module.exports: $Exports<'svg-sprite-loader/examples/browser-sprite-with-dll/build/main'>; -} -declare module 'svg-sprite-loader/examples/browser-sprite-with-dll/dll.js' { - declare module.exports: $Exports<'svg-sprite-loader/examples/browser-sprite-with-dll/dll'>; -} -declare module 'svg-sprite-loader/examples/browser-sprite-with-dll/main.js' { - declare module.exports: $Exports<'svg-sprite-loader/examples/browser-sprite-with-dll/main'>; -} -declare module 'svg-sprite-loader/examples/browser-sprite-with-dll/webpack.config.js' { - declare module.exports: $Exports<'svg-sprite-loader/examples/browser-sprite-with-dll/webpack.config'>; -} -declare module 'svg-sprite-loader/examples/browser-sprite-with-dll/webpack.dll.config.js' { - declare module.exports: $Exports<'svg-sprite-loader/examples/browser-sprite-with-dll/webpack.dll.config'>; -} -declare module 'svg-sprite-loader/examples/browser-sprite/build/main.js' { - declare module.exports: $Exports<'svg-sprite-loader/examples/browser-sprite/build/main'>; -} -declare module 'svg-sprite-loader/examples/browser-sprite/build/sprite.js' { - declare module.exports: $Exports<'svg-sprite-loader/examples/browser-sprite/build/sprite'>; -} -declare module 'svg-sprite-loader/examples/browser-sprite/main.js' { - declare module.exports: $Exports<'svg-sprite-loader/examples/browser-sprite/main'>; -} -declare module 'svg-sprite-loader/examples/browser-sprite/webpack.config.js' { - declare module.exports: $Exports<'svg-sprite-loader/examples/browser-sprite/webpack.config'>; -} -declare module 'svg-sprite-loader/examples/custom-runtime-generator-extract-mode/build/main.js' { - declare module.exports: $Exports<'svg-sprite-loader/examples/custom-runtime-generator-extract-mode/build/main'>; -} -declare module 'svg-sprite-loader/examples/custom-runtime-generator-extract-mode/extracting-runtime-generator.js' { - declare module.exports: $Exports<'svg-sprite-loader/examples/custom-runtime-generator-extract-mode/extracting-runtime-generator'>; -} -declare module 'svg-sprite-loader/examples/custom-runtime-generator-extract-mode/main.js' { - declare module.exports: $Exports<'svg-sprite-loader/examples/custom-runtime-generator-extract-mode/main'>; -} -declare module 'svg-sprite-loader/examples/custom-runtime-generator-extract-mode/webpack.config.js' { - declare module.exports: $Exports<'svg-sprite-loader/examples/custom-runtime-generator-extract-mode/webpack.config'>; -} -declare module 'svg-sprite-loader/examples/custom-runtime-generator/build/main.js' { - declare module.exports: $Exports<'svg-sprite-loader/examples/custom-runtime-generator/build/main'>; -} -declare module 'svg-sprite-loader/examples/custom-runtime-generator/icon.jsx' { - declare module.exports: $Exports<'svg-sprite-loader/examples/custom-runtime-generator/icon'>; -} -declare module 'svg-sprite-loader/examples/custom-runtime-generator/main.jsx' { - declare module.exports: $Exports<'svg-sprite-loader/examples/custom-runtime-generator/main'>; -} -declare module 'svg-sprite-loader/examples/custom-runtime-generator/svg-to-icon-component-runtime-generator.js' { - declare module.exports: $Exports<'svg-sprite-loader/examples/custom-runtime-generator/svg-to-icon-component-runtime-generator'>; -} -declare module 'svg-sprite-loader/examples/custom-runtime-generator/webpack.config.js' { - declare module.exports: $Exports<'svg-sprite-loader/examples/custom-runtime-generator/webpack.config'>; -} -declare module 'svg-sprite-loader/examples/extract-mode/build/main.js' { - declare module.exports: $Exports<'svg-sprite-loader/examples/extract-mode/build/main'>; -} -declare module 'svg-sprite-loader/examples/extract-mode/main.js' { - declare module.exports: $Exports<'svg-sprite-loader/examples/extract-mode/main'>; -} -declare module 'svg-sprite-loader/examples/extract-mode/webpack.config.js' { - declare module.exports: $Exports<'svg-sprite-loader/examples/extract-mode/webpack.config'>; -} -declare module 'svg-sprite-loader/examples/interop-with-html-webpack-plugin/build/main.js' { - declare module.exports: $Exports<'svg-sprite-loader/examples/interop-with-html-webpack-plugin/build/main'>; -} -declare module 'svg-sprite-loader/examples/interop-with-html-webpack-plugin/main.js' { - declare module.exports: $Exports<'svg-sprite-loader/examples/interop-with-html-webpack-plugin/main'>; -} -declare module 'svg-sprite-loader/examples/interop-with-html-webpack-plugin/webpack.config.js' { - declare module.exports: $Exports<'svg-sprite-loader/examples/interop-with-html-webpack-plugin/webpack.config'>; -} -declare module 'svg-sprite-loader/examples/server-side-rendering/build/main.js' { - declare module.exports: $Exports<'svg-sprite-loader/examples/server-side-rendering/build/main'>; -} -declare module 'svg-sprite-loader/examples/server-side-rendering/main.js' { - declare module.exports: $Exports<'svg-sprite-loader/examples/server-side-rendering/main'>; -} -declare module 'svg-sprite-loader/examples/server-side-rendering/webpack.config.js' { - declare module.exports: $Exports<'svg-sprite-loader/examples/server-side-rendering/webpack.config'>; -} -declare module 'svg-sprite-loader/lib/config.js' { - declare module.exports: $Exports<'svg-sprite-loader/lib/config'>; -} -declare module 'svg-sprite-loader/lib/configurator.js' { - declare module.exports: $Exports<'svg-sprite-loader/lib/configurator'>; -} -declare module 'svg-sprite-loader/lib/exceptions.js' { - declare module.exports: $Exports<'svg-sprite-loader/lib/exceptions'>; -} -declare module 'svg-sprite-loader/lib/loader.js' { - declare module.exports: $Exports<'svg-sprite-loader/lib/loader'>; -} -declare module 'svg-sprite-loader/lib/plugin.js' { - declare module.exports: $Exports<'svg-sprite-loader/lib/plugin'>; -} -declare module 'svg-sprite-loader/lib/runtime-generator.js' { - declare module.exports: $Exports<'svg-sprite-loader/lib/runtime-generator'>; -} -declare module 'svg-sprite-loader/lib/utils/generate-export.js' { - declare module.exports: $Exports<'svg-sprite-loader/lib/utils/generate-export'>; -} -declare module 'svg-sprite-loader/lib/utils/generate-import.js' { - declare module.exports: $Exports<'svg-sprite-loader/lib/utils/generate-import'>; -} -declare module 'svg-sprite-loader/lib/utils/generate-sprite-placeholder.js' { - declare module.exports: $Exports<'svg-sprite-loader/lib/utils/generate-sprite-placeholder'>; -} -declare module 'svg-sprite-loader/lib/utils/get-all-modules.js' { - declare module.exports: $Exports<'svg-sprite-loader/lib/utils/get-all-modules'>; -} -declare module 'svg-sprite-loader/lib/utils/get-loader-options.js' { - declare module.exports: $Exports<'svg-sprite-loader/lib/utils/get-loader-options'>; -} -declare module 'svg-sprite-loader/lib/utils/get-loaders-rules.js' { - declare module.exports: $Exports<'svg-sprite-loader/lib/utils/get-loaders-rules'>; -} -declare module 'svg-sprite-loader/lib/utils/get-matched-rule.js' { - declare module.exports: $Exports<'svg-sprite-loader/lib/utils/get-matched-rule'>; -} -declare module 'svg-sprite-loader/lib/utils/get-matched-rules.js' { - declare module.exports: $Exports<'svg-sprite-loader/lib/utils/get-matched-rules'>; -} -declare module 'svg-sprite-loader/lib/utils/get-module-chunk.js' { - declare module.exports: $Exports<'svg-sprite-loader/lib/utils/get-module-chunk'>; -} -declare module 'svg-sprite-loader/lib/utils/get-webpack-version.js' { - declare module.exports: $Exports<'svg-sprite-loader/lib/utils/get-webpack-version'>; -} -declare module 'svg-sprite-loader/lib/utils/index.js' { - declare module.exports: $Exports<'svg-sprite-loader/lib/utils/index'>; -} -declare module 'svg-sprite-loader/lib/utils/interpolate.js' { - declare module.exports: $Exports<'svg-sprite-loader/lib/utils/interpolate'>; -} -declare module 'svg-sprite-loader/lib/utils/is-module-should-be-extracted.js' { - declare module.exports: $Exports<'svg-sprite-loader/lib/utils/is-module-should-be-extracted'>; -} -declare module 'svg-sprite-loader/lib/utils/is-webpack-1.js' { - declare module.exports: $Exports<'svg-sprite-loader/lib/utils/is-webpack-1'>; -} -declare module 'svg-sprite-loader/lib/utils/mapped-list.js' { - declare module.exports: $Exports<'svg-sprite-loader/lib/utils/mapped-list'>; -} -declare module 'svg-sprite-loader/lib/utils/normalize-rule.js' { - declare module.exports: $Exports<'svg-sprite-loader/lib/utils/normalize-rule'>; -} -declare module 'svg-sprite-loader/lib/utils/replace-in-module-source.js' { - declare module.exports: $Exports<'svg-sprite-loader/lib/utils/replace-in-module-source'>; -} -declare module 'svg-sprite-loader/lib/utils/replace-sprite-placeholder.js' { - declare module.exports: $Exports<'svg-sprite-loader/lib/utils/replace-sprite-placeholder'>; -} -declare module 'svg-sprite-loader/lib/utils/stringify-symbol.js' { - declare module.exports: $Exports<'svg-sprite-loader/lib/utils/stringify-symbol'>; -} -declare module 'svg-sprite-loader/lib/utils/stringify.js' { - declare module.exports: $Exports<'svg-sprite-loader/lib/utils/stringify'>; -} -declare module 'svg-sprite-loader/plugin.js' { - declare module.exports: $Exports<'svg-sprite-loader/plugin'>; -} -declare module 'svg-sprite-loader/runtime/browser-sprite.build.js' { - declare module.exports: $Exports<'svg-sprite-loader/runtime/browser-sprite.build'>; -} -declare module 'svg-sprite-loader/runtime/browser-sprite.js' { - declare module.exports: $Exports<'svg-sprite-loader/runtime/browser-sprite'>; -} -declare module 'svg-sprite-loader/runtime/sprite.build.js' { - declare module.exports: $Exports<'svg-sprite-loader/runtime/sprite.build'>; -} -declare module 'svg-sprite-loader/runtime/sprite.js' { - declare module.exports: $Exports<'svg-sprite-loader/runtime/sprite'>; -} diff --git a/flow-typed/npm/transform-loader_vx.x.x.js b/flow-typed/npm/transform-loader_vx.x.x.js deleted file mode 100644 index 32fc6e6..0000000 --- a/flow-typed/npm/transform-loader_vx.x.x.js +++ /dev/null @@ -1,52 +0,0 @@ -// flow-typed signature: c518c9a261240c84d3af73d647e2bb5b -// flow-typed version: <>/transform-loader_v^0.2.3/flow_v0.77.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'transform-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 'transform-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 'transform-loader/cacheable' { - declare module.exports: any; -} - -declare module 'transform-loader/test/test' { - declare module.exports: any; -} - -declare module 'transform-loader/test/webpack.config' { - declare module.exports: any; -} - -// Filename aliases -declare module 'transform-loader/cacheable.js' { - declare module.exports: $Exports<'transform-loader/cacheable'>; -} -declare module 'transform-loader/index' { - declare module.exports: $Exports<'transform-loader'>; -} -declare module 'transform-loader/index.js' { - declare module.exports: $Exports<'transform-loader'>; -} -declare module 'transform-loader/test/test.js' { - declare module.exports: $Exports<'transform-loader/test/test'>; -} -declare module 'transform-loader/test/webpack.config.js' { - declare module.exports: $Exports<'transform-loader/test/webpack.config'>; -} diff --git a/flow-typed/npm/url-loader_vx.x.x.js b/flow-typed/npm/url-loader_vx.x.x.js deleted file mode 100644 index 8346801..0000000 --- a/flow-typed/npm/url-loader_vx.x.x.js +++ /dev/null @@ -1,33 +0,0 @@ -// flow-typed signature: 150d4bf959f5bb0916bfc28693560121 -// flow-typed version: <>/url-loader_v^0.5.7/flow_v0.77.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'url-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 'url-loader' { - declare module.exports: any; -} - -/** - * We include stubs for each file inside this npm package in case you need to - * require those files directly. Feel free to delete any files that aren't - * needed. - */ - - -// Filename aliases -declare module 'url-loader/index' { - declare module.exports: $Exports<'url-loader'>; -} -declare module 'url-loader/index.js' { - declare module.exports: $Exports<'url-loader'>; -} diff --git a/flow-typed/npm/webpack-bundle-analyzer_vx.x.x.js b/flow-typed/npm/webpack-bundle-analyzer_vx.x.x.js deleted file mode 100644 index 077f0d1..0000000 --- a/flow-typed/npm/webpack-bundle-analyzer_vx.x.x.js +++ /dev/null @@ -1,256 +0,0 @@ -// flow-typed signature: b120f422c3128fc289ba32d20ed7040b -// flow-typed version: <>/webpack-bundle-analyzer_v^2.11.1/flow_v0.77.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'webpack-bundle-analyzer' - * - * 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 'webpack-bundle-analyzer' { - 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 'webpack-bundle-analyzer/lib/analyzer' { - declare module.exports: any; -} - -declare module 'webpack-bundle-analyzer/lib/bin/analyzer' { - declare module.exports: any; -} - -declare module 'webpack-bundle-analyzer/lib/BundleAnalyzerPlugin' { - declare module.exports: any; -} - -declare module 'webpack-bundle-analyzer/lib/index' { - declare module.exports: any; -} - -declare module 'webpack-bundle-analyzer/lib/Logger' { - declare module.exports: any; -} - -declare module 'webpack-bundle-analyzer/lib/parseUtils' { - declare module.exports: any; -} - -declare module 'webpack-bundle-analyzer/lib/tree/BaseFolder' { - declare module.exports: any; -} - -declare module 'webpack-bundle-analyzer/lib/tree/ConcatenatedModule' { - declare module.exports: any; -} - -declare module 'webpack-bundle-analyzer/lib/tree/ContentFolder' { - declare module.exports: any; -} - -declare module 'webpack-bundle-analyzer/lib/tree/ContentModule' { - declare module.exports: any; -} - -declare module 'webpack-bundle-analyzer/lib/tree/Folder' { - declare module.exports: any; -} - -declare module 'webpack-bundle-analyzer/lib/tree/Module' { - declare module.exports: any; -} - -declare module 'webpack-bundle-analyzer/lib/tree/Node' { - declare module.exports: any; -} - -declare module 'webpack-bundle-analyzer/lib/tree/utils' { - declare module.exports: any; -} - -declare module 'webpack-bundle-analyzer/lib/utils' { - declare module.exports: any; -} - -declare module 'webpack-bundle-analyzer/lib/viewer' { - declare module.exports: any; -} - -declare module 'webpack-bundle-analyzer/public/viewer' { - declare module.exports: any; -} - -declare module 'webpack-bundle-analyzer/src/analyzer' { - declare module.exports: any; -} - -declare module 'webpack-bundle-analyzer/src/bin/analyzer' { - declare module.exports: any; -} - -declare module 'webpack-bundle-analyzer/src/BundleAnalyzerPlugin' { - declare module.exports: any; -} - -declare module 'webpack-bundle-analyzer/src/index' { - declare module.exports: any; -} - -declare module 'webpack-bundle-analyzer/src/Logger' { - declare module.exports: any; -} - -declare module 'webpack-bundle-analyzer/src/parseUtils' { - declare module.exports: any; -} - -declare module 'webpack-bundle-analyzer/src/tree/BaseFolder' { - declare module.exports: any; -} - -declare module 'webpack-bundle-analyzer/src/tree/ConcatenatedModule' { - declare module.exports: any; -} - -declare module 'webpack-bundle-analyzer/src/tree/ContentFolder' { - declare module.exports: any; -} - -declare module 'webpack-bundle-analyzer/src/tree/ContentModule' { - declare module.exports: any; -} - -declare module 'webpack-bundle-analyzer/src/tree/Folder' { - declare module.exports: any; -} - -declare module 'webpack-bundle-analyzer/src/tree/Module' { - declare module.exports: any; -} - -declare module 'webpack-bundle-analyzer/src/tree/Node' { - declare module.exports: any; -} - -declare module 'webpack-bundle-analyzer/src/tree/utils' { - declare module.exports: any; -} - -declare module 'webpack-bundle-analyzer/src/utils' { - declare module.exports: any; -} - -declare module 'webpack-bundle-analyzer/src/viewer' { - declare module.exports: any; -} - -// Filename aliases -declare module 'webpack-bundle-analyzer/lib/analyzer.js' { - declare module.exports: $Exports<'webpack-bundle-analyzer/lib/analyzer'>; -} -declare module 'webpack-bundle-analyzer/lib/bin/analyzer.js' { - declare module.exports: $Exports<'webpack-bundle-analyzer/lib/bin/analyzer'>; -} -declare module 'webpack-bundle-analyzer/lib/BundleAnalyzerPlugin.js' { - declare module.exports: $Exports<'webpack-bundle-analyzer/lib/BundleAnalyzerPlugin'>; -} -declare module 'webpack-bundle-analyzer/lib/index.js' { - declare module.exports: $Exports<'webpack-bundle-analyzer/lib/index'>; -} -declare module 'webpack-bundle-analyzer/lib/Logger.js' { - declare module.exports: $Exports<'webpack-bundle-analyzer/lib/Logger'>; -} -declare module 'webpack-bundle-analyzer/lib/parseUtils.js' { - declare module.exports: $Exports<'webpack-bundle-analyzer/lib/parseUtils'>; -} -declare module 'webpack-bundle-analyzer/lib/tree/BaseFolder.js' { - declare module.exports: $Exports<'webpack-bundle-analyzer/lib/tree/BaseFolder'>; -} -declare module 'webpack-bundle-analyzer/lib/tree/ConcatenatedModule.js' { - declare module.exports: $Exports<'webpack-bundle-analyzer/lib/tree/ConcatenatedModule'>; -} -declare module 'webpack-bundle-analyzer/lib/tree/ContentFolder.js' { - declare module.exports: $Exports<'webpack-bundle-analyzer/lib/tree/ContentFolder'>; -} -declare module 'webpack-bundle-analyzer/lib/tree/ContentModule.js' { - declare module.exports: $Exports<'webpack-bundle-analyzer/lib/tree/ContentModule'>; -} -declare module 'webpack-bundle-analyzer/lib/tree/Folder.js' { - declare module.exports: $Exports<'webpack-bundle-analyzer/lib/tree/Folder'>; -} -declare module 'webpack-bundle-analyzer/lib/tree/Module.js' { - declare module.exports: $Exports<'webpack-bundle-analyzer/lib/tree/Module'>; -} -declare module 'webpack-bundle-analyzer/lib/tree/Node.js' { - declare module.exports: $Exports<'webpack-bundle-analyzer/lib/tree/Node'>; -} -declare module 'webpack-bundle-analyzer/lib/tree/utils.js' { - declare module.exports: $Exports<'webpack-bundle-analyzer/lib/tree/utils'>; -} -declare module 'webpack-bundle-analyzer/lib/utils.js' { - declare module.exports: $Exports<'webpack-bundle-analyzer/lib/utils'>; -} -declare module 'webpack-bundle-analyzer/lib/viewer.js' { - declare module.exports: $Exports<'webpack-bundle-analyzer/lib/viewer'>; -} -declare module 'webpack-bundle-analyzer/public/viewer.js' { - declare module.exports: $Exports<'webpack-bundle-analyzer/public/viewer'>; -} -declare module 'webpack-bundle-analyzer/src/analyzer.js' { - declare module.exports: $Exports<'webpack-bundle-analyzer/src/analyzer'>; -} -declare module 'webpack-bundle-analyzer/src/bin/analyzer.js' { - declare module.exports: $Exports<'webpack-bundle-analyzer/src/bin/analyzer'>; -} -declare module 'webpack-bundle-analyzer/src/BundleAnalyzerPlugin.js' { - declare module.exports: $Exports<'webpack-bundle-analyzer/src/BundleAnalyzerPlugin'>; -} -declare module 'webpack-bundle-analyzer/src/index.js' { - declare module.exports: $Exports<'webpack-bundle-analyzer/src/index'>; -} -declare module 'webpack-bundle-analyzer/src/Logger.js' { - declare module.exports: $Exports<'webpack-bundle-analyzer/src/Logger'>; -} -declare module 'webpack-bundle-analyzer/src/parseUtils.js' { - declare module.exports: $Exports<'webpack-bundle-analyzer/src/parseUtils'>; -} -declare module 'webpack-bundle-analyzer/src/tree/BaseFolder.js' { - declare module.exports: $Exports<'webpack-bundle-analyzer/src/tree/BaseFolder'>; -} -declare module 'webpack-bundle-analyzer/src/tree/ConcatenatedModule.js' { - declare module.exports: $Exports<'webpack-bundle-analyzer/src/tree/ConcatenatedModule'>; -} -declare module 'webpack-bundle-analyzer/src/tree/ContentFolder.js' { - declare module.exports: $Exports<'webpack-bundle-analyzer/src/tree/ContentFolder'>; -} -declare module 'webpack-bundle-analyzer/src/tree/ContentModule.js' { - declare module.exports: $Exports<'webpack-bundle-analyzer/src/tree/ContentModule'>; -} -declare module 'webpack-bundle-analyzer/src/tree/Folder.js' { - declare module.exports: $Exports<'webpack-bundle-analyzer/src/tree/Folder'>; -} -declare module 'webpack-bundle-analyzer/src/tree/Module.js' { - declare module.exports: $Exports<'webpack-bundle-analyzer/src/tree/Module'>; -} -declare module 'webpack-bundle-analyzer/src/tree/Node.js' { - declare module.exports: $Exports<'webpack-bundle-analyzer/src/tree/Node'>; -} -declare module 'webpack-bundle-analyzer/src/tree/utils.js' { - declare module.exports: $Exports<'webpack-bundle-analyzer/src/tree/utils'>; -} -declare module 'webpack-bundle-analyzer/src/utils.js' { - declare module.exports: $Exports<'webpack-bundle-analyzer/src/utils'>; -} -declare module 'webpack-bundle-analyzer/src/viewer.js' { - declare module.exports: $Exports<'webpack-bundle-analyzer/src/viewer'>; -} diff --git a/flow-typed/npm/webpack-cli_vx.x.x.js b/flow-typed/npm/webpack-cli_vx.x.x.js deleted file mode 100644 index 3a02d6a..0000000 --- a/flow-typed/npm/webpack-cli_vx.x.x.js +++ /dev/null @@ -1,907 +0,0 @@ -// flow-typed signature: c7ffa5264be1bababf0f3e60ca34f5d9 -// flow-typed version: <>/webpack-cli_v^2.1.3/flow_v0.77.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'webpack-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 'webpack-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 'webpack-cli/bin/config-yargs' { - declare module.exports: any; -} - -declare module 'webpack-cli/bin/convert-argv' { - declare module.exports: any; -} - -declare module 'webpack-cli/bin/errorHelpers' { - declare module.exports: any; -} - -declare module 'webpack-cli/bin/prepareOptions' { - declare module.exports: any; -} - -declare module 'webpack-cli/bin/process-options' { - declare module.exports: any; -} - -declare module 'webpack-cli/bin/webpack' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/ast/__testfixtures__/fixture-0.input' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/ast/__testfixtures__/fixture-1.input' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/ast/ast.test' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/ast/index' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/commands/add' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/commands/generate-loader' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/commands/generate-plugin' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/commands/info' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/commands/init' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/commands/make' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/commands/migrate' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/commands/remove' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/commands/serve' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/commands/update' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/generators/add-generator' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/generators/init-generator' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/generators/loader-generator' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/generators/loader-generator.test' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/generators/plugin-generator' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/generators/remove-generator' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/generators/update-generator' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/generators/utils/entry' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/generators/utils/module' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/generators/utils/plugins' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/generators/utils/tooltip' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/generators/utils/validate' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/generators/webpack-generator' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/index' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/init/index' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/__testfixtures__/failing' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/bannerPlugin/__testfixtures__/bannerPlugin-0.input' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/bannerPlugin/__testfixtures__/bannerPlugin-1.input' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/bannerPlugin/__testfixtures__/bannerPlugin-2.input' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/bannerPlugin/bannerPlugin' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/bannerPlugin/bannerPlugin.test' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/extractTextPlugin/__testfixtures__/extractTextPlugin.input' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/extractTextPlugin/extractTextPlugin' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/extractTextPlugin/extractTextPlugin.test' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/index' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/index.test' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/loaderOptionsPlugin/__testfixtures__/loaderOptionsPlugin-0.input' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/loaderOptionsPlugin/__testfixtures__/loaderOptionsPlugin-1.input' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/loaderOptionsPlugin/__testfixtures__/loaderOptionsPlugin-2.input' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/loaderOptionsPlugin/__testfixtures__/loaderOptionsPlugin-3.input' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/loaderOptionsPlugin/loaderOptionsPlugin' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/loaderOptionsPlugin/loaderOptionsPlugin.test' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/loaders/__testfixtures__/loaders-0.input' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/loaders/__testfixtures__/loaders-1.input' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/loaders/__testfixtures__/loaders-2.input' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/loaders/__testfixtures__/loaders-3.input' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/loaders/__testfixtures__/loaders-4.input' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/loaders/__testfixtures__/loaders-5.input' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/loaders/__testfixtures__/loaders-6.input' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/loaders/__testfixtures__/loaders-7.input' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/loaders/__testfixtures__/loaders-8.input' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/loaders/__testfixtures__/loaders-9.input' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/loaders/loaders' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/loaders/loaders.test' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/moduleConcatenationPlugin/__testfixtures__/moduleConcatenationPlugin-0.input' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/moduleConcatenationPlugin/__testfixtures__/moduleConcatenationPlugin-1.input' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/moduleConcatenationPlugin/__testfixtures__/moduleConcatenationPlugin-2.input' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/moduleConcatenationPlugin/moduleConcatenationPlugin' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/moduleConcatenationPlugin/moduleConcatenationPlugin.test' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/namedModulesPlugin/__testfixtures__/namedModulesPlugin-0.input' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/namedModulesPlugin/__testfixtures__/namedModulesPlugin-1.input' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/namedModulesPlugin/__testfixtures__/namedModulesPlugin-2.input' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/namedModulesPlugin/namedModulesPlugin' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/namedModulesPlugin/namedModulesPlugin.test' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/noEmitOnErrorsPlugin/__testfixtures__/noEmitOnErrorsPlugin-0.input' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/noEmitOnErrorsPlugin/__testfixtures__/noEmitOnErrorsPlugin-1.input' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/noEmitOnErrorsPlugin/__testfixtures__/noEmitOnErrorsPlugin-2.input' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/noEmitOnErrorsPlugin/noEmitOnErrorsPlugin' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/noEmitOnErrorsPlugin/noEmitOnErrorsPlugin.test' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/outputPath/__testfixtures__/outputPath-0.input' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/outputPath/__testfixtures__/outputPath-1.input' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/outputPath/__testfixtures__/outputPath-2.input' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/outputPath/outputPath' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/outputPath/outputPath.test' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/removeDeprecatedPlugins/__testfixtures__/removeDeprecatedPlugins-0.input' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/removeDeprecatedPlugins/__testfixtures__/removeDeprecatedPlugins-1.input' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/removeDeprecatedPlugins/__testfixtures__/removeDeprecatedPlugins-2.input' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/removeDeprecatedPlugins/__testfixtures__/removeDeprecatedPlugins-3.input' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/removeDeprecatedPlugins/__testfixtures__/removeDeprecatedPlugins-4.input' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/removeDeprecatedPlugins/removeDeprecatedPlugins' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/removeDeprecatedPlugins/removeDeprecatedPlugins.test' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/removeJsonLoader/__testfixtures__/removeJsonLoader-0.input' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/removeJsonLoader/__testfixtures__/removeJsonLoader-1.input' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/removeJsonLoader/__testfixtures__/removeJsonLoader-2.input' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/removeJsonLoader/__testfixtures__/removeJsonLoader-3.input' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/removeJsonLoader/removeJsonLoader' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/removeJsonLoader/removeJsonLoader.test' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/resolve/__testfixtures__/resolve.input' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/resolve/resolve' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/resolve/resolve.test' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/uglifyJsPlugin/__testfixtures__/uglifyJsPlugin-0.input' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/uglifyJsPlugin/__testfixtures__/uglifyJsPlugin-1.input' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/uglifyJsPlugin/__testfixtures__/uglifyJsPlugin-2.input' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/uglifyJsPlugin/__testfixtures__/uglifyJsPlugin-3.input' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/uglifyJsPlugin/__testfixtures__/uglifyJsPlugin-4.input' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/uglifyJsPlugin/uglifyJsPlugin' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/uglifyJsPlugin/uglifyJsPlugin.test' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/utils/ast-utils' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/utils/ast-utils.test' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/utils/copy-utils' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/utils/defineTest' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/utils/is-local-path' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/utils/is-local-path.test' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/utils/modify-config-helper' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/utils/npm-exists' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/utils/npm-exists.test' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/utils/npm-packages-exists' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/utils/npm-packages-exists.test' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/utils/package-manager' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/utils/package-manager.test' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/utils/prop-types' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/utils/resolve-packages' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/utils/resolve-packages.test' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/utils/run-prettier' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/utils/validate-identifier' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/utils/validate-identifier.test' { - declare module.exports: any; -} - -// Filename aliases -declare module 'webpack-cli/bin/config-yargs.js' { - declare module.exports: $Exports<'webpack-cli/bin/config-yargs'>; -} -declare module 'webpack-cli/bin/convert-argv.js' { - declare module.exports: $Exports<'webpack-cli/bin/convert-argv'>; -} -declare module 'webpack-cli/bin/errorHelpers.js' { - declare module.exports: $Exports<'webpack-cli/bin/errorHelpers'>; -} -declare module 'webpack-cli/bin/prepareOptions.js' { - declare module.exports: $Exports<'webpack-cli/bin/prepareOptions'>; -} -declare module 'webpack-cli/bin/process-options.js' { - declare module.exports: $Exports<'webpack-cli/bin/process-options'>; -} -declare module 'webpack-cli/bin/webpack.js' { - declare module.exports: $Exports<'webpack-cli/bin/webpack'>; -} -declare module 'webpack-cli/lib/ast/__testfixtures__/fixture-0.input.js' { - declare module.exports: $Exports<'webpack-cli/lib/ast/__testfixtures__/fixture-0.input'>; -} -declare module 'webpack-cli/lib/ast/__testfixtures__/fixture-1.input.js' { - declare module.exports: $Exports<'webpack-cli/lib/ast/__testfixtures__/fixture-1.input'>; -} -declare module 'webpack-cli/lib/ast/ast.test.js' { - declare module.exports: $Exports<'webpack-cli/lib/ast/ast.test'>; -} -declare module 'webpack-cli/lib/ast/index.js' { - declare module.exports: $Exports<'webpack-cli/lib/ast/index'>; -} -declare module 'webpack-cli/lib/commands/add.js' { - declare module.exports: $Exports<'webpack-cli/lib/commands/add'>; -} -declare module 'webpack-cli/lib/commands/generate-loader.js' { - declare module.exports: $Exports<'webpack-cli/lib/commands/generate-loader'>; -} -declare module 'webpack-cli/lib/commands/generate-plugin.js' { - declare module.exports: $Exports<'webpack-cli/lib/commands/generate-plugin'>; -} -declare module 'webpack-cli/lib/commands/info.js' { - declare module.exports: $Exports<'webpack-cli/lib/commands/info'>; -} -declare module 'webpack-cli/lib/commands/init.js' { - declare module.exports: $Exports<'webpack-cli/lib/commands/init'>; -} -declare module 'webpack-cli/lib/commands/make.js' { - declare module.exports: $Exports<'webpack-cli/lib/commands/make'>; -} -declare module 'webpack-cli/lib/commands/migrate.js' { - declare module.exports: $Exports<'webpack-cli/lib/commands/migrate'>; -} -declare module 'webpack-cli/lib/commands/remove.js' { - declare module.exports: $Exports<'webpack-cli/lib/commands/remove'>; -} -declare module 'webpack-cli/lib/commands/serve.js' { - declare module.exports: $Exports<'webpack-cli/lib/commands/serve'>; -} -declare module 'webpack-cli/lib/commands/update.js' { - declare module.exports: $Exports<'webpack-cli/lib/commands/update'>; -} -declare module 'webpack-cli/lib/generators/add-generator.js' { - declare module.exports: $Exports<'webpack-cli/lib/generators/add-generator'>; -} -declare module 'webpack-cli/lib/generators/init-generator.js' { - declare module.exports: $Exports<'webpack-cli/lib/generators/init-generator'>; -} -declare module 'webpack-cli/lib/generators/loader-generator.js' { - declare module.exports: $Exports<'webpack-cli/lib/generators/loader-generator'>; -} -declare module 'webpack-cli/lib/generators/loader-generator.test.js' { - declare module.exports: $Exports<'webpack-cli/lib/generators/loader-generator.test'>; -} -declare module 'webpack-cli/lib/generators/plugin-generator.js' { - declare module.exports: $Exports<'webpack-cli/lib/generators/plugin-generator'>; -} -declare module 'webpack-cli/lib/generators/remove-generator.js' { - declare module.exports: $Exports<'webpack-cli/lib/generators/remove-generator'>; -} -declare module 'webpack-cli/lib/generators/update-generator.js' { - declare module.exports: $Exports<'webpack-cli/lib/generators/update-generator'>; -} -declare module 'webpack-cli/lib/generators/utils/entry.js' { - declare module.exports: $Exports<'webpack-cli/lib/generators/utils/entry'>; -} -declare module 'webpack-cli/lib/generators/utils/module.js' { - declare module.exports: $Exports<'webpack-cli/lib/generators/utils/module'>; -} -declare module 'webpack-cli/lib/generators/utils/plugins.js' { - declare module.exports: $Exports<'webpack-cli/lib/generators/utils/plugins'>; -} -declare module 'webpack-cli/lib/generators/utils/tooltip.js' { - declare module.exports: $Exports<'webpack-cli/lib/generators/utils/tooltip'>; -} -declare module 'webpack-cli/lib/generators/utils/validate.js' { - declare module.exports: $Exports<'webpack-cli/lib/generators/utils/validate'>; -} -declare module 'webpack-cli/lib/generators/webpack-generator.js' { - declare module.exports: $Exports<'webpack-cli/lib/generators/webpack-generator'>; -} -declare module 'webpack-cli/lib/index.js' { - declare module.exports: $Exports<'webpack-cli/lib/index'>; -} -declare module 'webpack-cli/lib/init/index.js' { - declare module.exports: $Exports<'webpack-cli/lib/init/index'>; -} -declare module 'webpack-cli/lib/migrate/__testfixtures__/failing.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/__testfixtures__/failing'>; -} -declare module 'webpack-cli/lib/migrate/bannerPlugin/__testfixtures__/bannerPlugin-0.input.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/bannerPlugin/__testfixtures__/bannerPlugin-0.input'>; -} -declare module 'webpack-cli/lib/migrate/bannerPlugin/__testfixtures__/bannerPlugin-1.input.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/bannerPlugin/__testfixtures__/bannerPlugin-1.input'>; -} -declare module 'webpack-cli/lib/migrate/bannerPlugin/__testfixtures__/bannerPlugin-2.input.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/bannerPlugin/__testfixtures__/bannerPlugin-2.input'>; -} -declare module 'webpack-cli/lib/migrate/bannerPlugin/bannerPlugin.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/bannerPlugin/bannerPlugin'>; -} -declare module 'webpack-cli/lib/migrate/bannerPlugin/bannerPlugin.test.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/bannerPlugin/bannerPlugin.test'>; -} -declare module 'webpack-cli/lib/migrate/extractTextPlugin/__testfixtures__/extractTextPlugin.input.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/extractTextPlugin/__testfixtures__/extractTextPlugin.input'>; -} -declare module 'webpack-cli/lib/migrate/extractTextPlugin/extractTextPlugin.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/extractTextPlugin/extractTextPlugin'>; -} -declare module 'webpack-cli/lib/migrate/extractTextPlugin/extractTextPlugin.test.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/extractTextPlugin/extractTextPlugin.test'>; -} -declare module 'webpack-cli/lib/migrate/index.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/index'>; -} -declare module 'webpack-cli/lib/migrate/index.test.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/index.test'>; -} -declare module 'webpack-cli/lib/migrate/loaderOptionsPlugin/__testfixtures__/loaderOptionsPlugin-0.input.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/loaderOptionsPlugin/__testfixtures__/loaderOptionsPlugin-0.input'>; -} -declare module 'webpack-cli/lib/migrate/loaderOptionsPlugin/__testfixtures__/loaderOptionsPlugin-1.input.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/loaderOptionsPlugin/__testfixtures__/loaderOptionsPlugin-1.input'>; -} -declare module 'webpack-cli/lib/migrate/loaderOptionsPlugin/__testfixtures__/loaderOptionsPlugin-2.input.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/loaderOptionsPlugin/__testfixtures__/loaderOptionsPlugin-2.input'>; -} -declare module 'webpack-cli/lib/migrate/loaderOptionsPlugin/__testfixtures__/loaderOptionsPlugin-3.input.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/loaderOptionsPlugin/__testfixtures__/loaderOptionsPlugin-3.input'>; -} -declare module 'webpack-cli/lib/migrate/loaderOptionsPlugin/loaderOptionsPlugin.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/loaderOptionsPlugin/loaderOptionsPlugin'>; -} -declare module 'webpack-cli/lib/migrate/loaderOptionsPlugin/loaderOptionsPlugin.test.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/loaderOptionsPlugin/loaderOptionsPlugin.test'>; -} -declare module 'webpack-cli/lib/migrate/loaders/__testfixtures__/loaders-0.input.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/loaders/__testfixtures__/loaders-0.input'>; -} -declare module 'webpack-cli/lib/migrate/loaders/__testfixtures__/loaders-1.input.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/loaders/__testfixtures__/loaders-1.input'>; -} -declare module 'webpack-cli/lib/migrate/loaders/__testfixtures__/loaders-2.input.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/loaders/__testfixtures__/loaders-2.input'>; -} -declare module 'webpack-cli/lib/migrate/loaders/__testfixtures__/loaders-3.input.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/loaders/__testfixtures__/loaders-3.input'>; -} -declare module 'webpack-cli/lib/migrate/loaders/__testfixtures__/loaders-4.input.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/loaders/__testfixtures__/loaders-4.input'>; -} -declare module 'webpack-cli/lib/migrate/loaders/__testfixtures__/loaders-5.input.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/loaders/__testfixtures__/loaders-5.input'>; -} -declare module 'webpack-cli/lib/migrate/loaders/__testfixtures__/loaders-6.input.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/loaders/__testfixtures__/loaders-6.input'>; -} -declare module 'webpack-cli/lib/migrate/loaders/__testfixtures__/loaders-7.input.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/loaders/__testfixtures__/loaders-7.input'>; -} -declare module 'webpack-cli/lib/migrate/loaders/__testfixtures__/loaders-8.input.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/loaders/__testfixtures__/loaders-8.input'>; -} -declare module 'webpack-cli/lib/migrate/loaders/__testfixtures__/loaders-9.input.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/loaders/__testfixtures__/loaders-9.input'>; -} -declare module 'webpack-cli/lib/migrate/loaders/loaders.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/loaders/loaders'>; -} -declare module 'webpack-cli/lib/migrate/loaders/loaders.test.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/loaders/loaders.test'>; -} -declare module 'webpack-cli/lib/migrate/moduleConcatenationPlugin/__testfixtures__/moduleConcatenationPlugin-0.input.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/moduleConcatenationPlugin/__testfixtures__/moduleConcatenationPlugin-0.input'>; -} -declare module 'webpack-cli/lib/migrate/moduleConcatenationPlugin/__testfixtures__/moduleConcatenationPlugin-1.input.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/moduleConcatenationPlugin/__testfixtures__/moduleConcatenationPlugin-1.input'>; -} -declare module 'webpack-cli/lib/migrate/moduleConcatenationPlugin/__testfixtures__/moduleConcatenationPlugin-2.input.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/moduleConcatenationPlugin/__testfixtures__/moduleConcatenationPlugin-2.input'>; -} -declare module 'webpack-cli/lib/migrate/moduleConcatenationPlugin/moduleConcatenationPlugin.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/moduleConcatenationPlugin/moduleConcatenationPlugin'>; -} -declare module 'webpack-cli/lib/migrate/moduleConcatenationPlugin/moduleConcatenationPlugin.test.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/moduleConcatenationPlugin/moduleConcatenationPlugin.test'>; -} -declare module 'webpack-cli/lib/migrate/namedModulesPlugin/__testfixtures__/namedModulesPlugin-0.input.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/namedModulesPlugin/__testfixtures__/namedModulesPlugin-0.input'>; -} -declare module 'webpack-cli/lib/migrate/namedModulesPlugin/__testfixtures__/namedModulesPlugin-1.input.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/namedModulesPlugin/__testfixtures__/namedModulesPlugin-1.input'>; -} -declare module 'webpack-cli/lib/migrate/namedModulesPlugin/__testfixtures__/namedModulesPlugin-2.input.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/namedModulesPlugin/__testfixtures__/namedModulesPlugin-2.input'>; -} -declare module 'webpack-cli/lib/migrate/namedModulesPlugin/namedModulesPlugin.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/namedModulesPlugin/namedModulesPlugin'>; -} -declare module 'webpack-cli/lib/migrate/namedModulesPlugin/namedModulesPlugin.test.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/namedModulesPlugin/namedModulesPlugin.test'>; -} -declare module 'webpack-cli/lib/migrate/noEmitOnErrorsPlugin/__testfixtures__/noEmitOnErrorsPlugin-0.input.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/noEmitOnErrorsPlugin/__testfixtures__/noEmitOnErrorsPlugin-0.input'>; -} -declare module 'webpack-cli/lib/migrate/noEmitOnErrorsPlugin/__testfixtures__/noEmitOnErrorsPlugin-1.input.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/noEmitOnErrorsPlugin/__testfixtures__/noEmitOnErrorsPlugin-1.input'>; -} -declare module 'webpack-cli/lib/migrate/noEmitOnErrorsPlugin/__testfixtures__/noEmitOnErrorsPlugin-2.input.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/noEmitOnErrorsPlugin/__testfixtures__/noEmitOnErrorsPlugin-2.input'>; -} -declare module 'webpack-cli/lib/migrate/noEmitOnErrorsPlugin/noEmitOnErrorsPlugin.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/noEmitOnErrorsPlugin/noEmitOnErrorsPlugin'>; -} -declare module 'webpack-cli/lib/migrate/noEmitOnErrorsPlugin/noEmitOnErrorsPlugin.test.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/noEmitOnErrorsPlugin/noEmitOnErrorsPlugin.test'>; -} -declare module 'webpack-cli/lib/migrate/outputPath/__testfixtures__/outputPath-0.input.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/outputPath/__testfixtures__/outputPath-0.input'>; -} -declare module 'webpack-cli/lib/migrate/outputPath/__testfixtures__/outputPath-1.input.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/outputPath/__testfixtures__/outputPath-1.input'>; -} -declare module 'webpack-cli/lib/migrate/outputPath/__testfixtures__/outputPath-2.input.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/outputPath/__testfixtures__/outputPath-2.input'>; -} -declare module 'webpack-cli/lib/migrate/outputPath/outputPath.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/outputPath/outputPath'>; -} -declare module 'webpack-cli/lib/migrate/outputPath/outputPath.test.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/outputPath/outputPath.test'>; -} -declare module 'webpack-cli/lib/migrate/removeDeprecatedPlugins/__testfixtures__/removeDeprecatedPlugins-0.input.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/removeDeprecatedPlugins/__testfixtures__/removeDeprecatedPlugins-0.input'>; -} -declare module 'webpack-cli/lib/migrate/removeDeprecatedPlugins/__testfixtures__/removeDeprecatedPlugins-1.input.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/removeDeprecatedPlugins/__testfixtures__/removeDeprecatedPlugins-1.input'>; -} -declare module 'webpack-cli/lib/migrate/removeDeprecatedPlugins/__testfixtures__/removeDeprecatedPlugins-2.input.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/removeDeprecatedPlugins/__testfixtures__/removeDeprecatedPlugins-2.input'>; -} -declare module 'webpack-cli/lib/migrate/removeDeprecatedPlugins/__testfixtures__/removeDeprecatedPlugins-3.input.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/removeDeprecatedPlugins/__testfixtures__/removeDeprecatedPlugins-3.input'>; -} -declare module 'webpack-cli/lib/migrate/removeDeprecatedPlugins/__testfixtures__/removeDeprecatedPlugins-4.input.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/removeDeprecatedPlugins/__testfixtures__/removeDeprecatedPlugins-4.input'>; -} -declare module 'webpack-cli/lib/migrate/removeDeprecatedPlugins/removeDeprecatedPlugins.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/removeDeprecatedPlugins/removeDeprecatedPlugins'>; -} -declare module 'webpack-cli/lib/migrate/removeDeprecatedPlugins/removeDeprecatedPlugins.test.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/removeDeprecatedPlugins/removeDeprecatedPlugins.test'>; -} -declare module 'webpack-cli/lib/migrate/removeJsonLoader/__testfixtures__/removeJsonLoader-0.input.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/removeJsonLoader/__testfixtures__/removeJsonLoader-0.input'>; -} -declare module 'webpack-cli/lib/migrate/removeJsonLoader/__testfixtures__/removeJsonLoader-1.input.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/removeJsonLoader/__testfixtures__/removeJsonLoader-1.input'>; -} -declare module 'webpack-cli/lib/migrate/removeJsonLoader/__testfixtures__/removeJsonLoader-2.input.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/removeJsonLoader/__testfixtures__/removeJsonLoader-2.input'>; -} -declare module 'webpack-cli/lib/migrate/removeJsonLoader/__testfixtures__/removeJsonLoader-3.input.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/removeJsonLoader/__testfixtures__/removeJsonLoader-3.input'>; -} -declare module 'webpack-cli/lib/migrate/removeJsonLoader/removeJsonLoader.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/removeJsonLoader/removeJsonLoader'>; -} -declare module 'webpack-cli/lib/migrate/removeJsonLoader/removeJsonLoader.test.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/removeJsonLoader/removeJsonLoader.test'>; -} -declare module 'webpack-cli/lib/migrate/resolve/__testfixtures__/resolve.input.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/resolve/__testfixtures__/resolve.input'>; -} -declare module 'webpack-cli/lib/migrate/resolve/resolve.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/resolve/resolve'>; -} -declare module 'webpack-cli/lib/migrate/resolve/resolve.test.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/resolve/resolve.test'>; -} -declare module 'webpack-cli/lib/migrate/uglifyJsPlugin/__testfixtures__/uglifyJsPlugin-0.input.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/uglifyJsPlugin/__testfixtures__/uglifyJsPlugin-0.input'>; -} -declare module 'webpack-cli/lib/migrate/uglifyJsPlugin/__testfixtures__/uglifyJsPlugin-1.input.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/uglifyJsPlugin/__testfixtures__/uglifyJsPlugin-1.input'>; -} -declare module 'webpack-cli/lib/migrate/uglifyJsPlugin/__testfixtures__/uglifyJsPlugin-2.input.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/uglifyJsPlugin/__testfixtures__/uglifyJsPlugin-2.input'>; -} -declare module 'webpack-cli/lib/migrate/uglifyJsPlugin/__testfixtures__/uglifyJsPlugin-3.input.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/uglifyJsPlugin/__testfixtures__/uglifyJsPlugin-3.input'>; -} -declare module 'webpack-cli/lib/migrate/uglifyJsPlugin/__testfixtures__/uglifyJsPlugin-4.input.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/uglifyJsPlugin/__testfixtures__/uglifyJsPlugin-4.input'>; -} -declare module 'webpack-cli/lib/migrate/uglifyJsPlugin/uglifyJsPlugin.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/uglifyJsPlugin/uglifyJsPlugin'>; -} -declare module 'webpack-cli/lib/migrate/uglifyJsPlugin/uglifyJsPlugin.test.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/uglifyJsPlugin/uglifyJsPlugin.test'>; -} -declare module 'webpack-cli/lib/utils/ast-utils.js' { - declare module.exports: $Exports<'webpack-cli/lib/utils/ast-utils'>; -} -declare module 'webpack-cli/lib/utils/ast-utils.test.js' { - declare module.exports: $Exports<'webpack-cli/lib/utils/ast-utils.test'>; -} -declare module 'webpack-cli/lib/utils/copy-utils.js' { - declare module.exports: $Exports<'webpack-cli/lib/utils/copy-utils'>; -} -declare module 'webpack-cli/lib/utils/defineTest.js' { - declare module.exports: $Exports<'webpack-cli/lib/utils/defineTest'>; -} -declare module 'webpack-cli/lib/utils/is-local-path.js' { - declare module.exports: $Exports<'webpack-cli/lib/utils/is-local-path'>; -} -declare module 'webpack-cli/lib/utils/is-local-path.test.js' { - declare module.exports: $Exports<'webpack-cli/lib/utils/is-local-path.test'>; -} -declare module 'webpack-cli/lib/utils/modify-config-helper.js' { - declare module.exports: $Exports<'webpack-cli/lib/utils/modify-config-helper'>; -} -declare module 'webpack-cli/lib/utils/npm-exists.js' { - declare module.exports: $Exports<'webpack-cli/lib/utils/npm-exists'>; -} -declare module 'webpack-cli/lib/utils/npm-exists.test.js' { - declare module.exports: $Exports<'webpack-cli/lib/utils/npm-exists.test'>; -} -declare module 'webpack-cli/lib/utils/npm-packages-exists.js' { - declare module.exports: $Exports<'webpack-cli/lib/utils/npm-packages-exists'>; -} -declare module 'webpack-cli/lib/utils/npm-packages-exists.test.js' { - declare module.exports: $Exports<'webpack-cli/lib/utils/npm-packages-exists.test'>; -} -declare module 'webpack-cli/lib/utils/package-manager.js' { - declare module.exports: $Exports<'webpack-cli/lib/utils/package-manager'>; -} -declare module 'webpack-cli/lib/utils/package-manager.test.js' { - declare module.exports: $Exports<'webpack-cli/lib/utils/package-manager.test'>; -} -declare module 'webpack-cli/lib/utils/prop-types.js' { - declare module.exports: $Exports<'webpack-cli/lib/utils/prop-types'>; -} -declare module 'webpack-cli/lib/utils/resolve-packages.js' { - declare module.exports: $Exports<'webpack-cli/lib/utils/resolve-packages'>; -} -declare module 'webpack-cli/lib/utils/resolve-packages.test.js' { - declare module.exports: $Exports<'webpack-cli/lib/utils/resolve-packages.test'>; -} -declare module 'webpack-cli/lib/utils/run-prettier.js' { - declare module.exports: $Exports<'webpack-cli/lib/utils/run-prettier'>; -} -declare module 'webpack-cli/lib/utils/validate-identifier.js' { - declare module.exports: $Exports<'webpack-cli/lib/utils/validate-identifier'>; -} -declare module 'webpack-cli/lib/utils/validate-identifier.test.js' { - declare module.exports: $Exports<'webpack-cli/lib/utils/validate-identifier.test'>; -} diff --git a/flow-typed/npm/webpack-dev-server_vx.x.x.js b/flow-typed/npm/webpack-dev-server_vx.x.x.js deleted file mode 100644 index c927595..0000000 --- a/flow-typed/npm/webpack-dev-server_vx.x.x.js +++ /dev/null @@ -1,116 +0,0 @@ -// flow-typed signature: b343e3be48fabfefd067f1e0a58d1609 -// flow-typed version: <>/webpack-dev-server_v^3.1.4/flow_v0.77.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'webpack-dev-server' - * - * 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 'webpack-dev-server' { - 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 'webpack-dev-server/bin/webpack-dev-server' { - declare module.exports: any; -} - -declare module 'webpack-dev-server/client/index.bundle' { - declare module.exports: any; -} - -declare module 'webpack-dev-server/client/index' { - declare module.exports: any; -} - -declare module 'webpack-dev-server/client/live.bundle' { - declare module.exports: any; -} - -declare module 'webpack-dev-server/client/overlay' { - declare module.exports: any; -} - -declare module 'webpack-dev-server/client/socket' { - declare module.exports: any; -} - -declare module 'webpack-dev-server/client/sockjs.bundle' { - declare module.exports: any; -} - -declare module 'webpack-dev-server/lib/createLog' { - declare module.exports: any; -} - -declare module 'webpack-dev-server/lib/OptionsValidationError' { - declare module.exports: any; -} - -declare module 'webpack-dev-server/lib/polyfills' { - declare module.exports: any; -} - -declare module 'webpack-dev-server/lib/Server' { - declare module.exports: any; -} - -declare module 'webpack-dev-server/lib/util/addDevServerEntrypoints' { - declare module.exports: any; -} - -declare module 'webpack-dev-server/lib/util/createDomain' { - declare module.exports: any; -} - -// Filename aliases -declare module 'webpack-dev-server/bin/webpack-dev-server.js' { - declare module.exports: $Exports<'webpack-dev-server/bin/webpack-dev-server'>; -} -declare module 'webpack-dev-server/client/index.bundle.js' { - declare module.exports: $Exports<'webpack-dev-server/client/index.bundle'>; -} -declare module 'webpack-dev-server/client/index.js' { - declare module.exports: $Exports<'webpack-dev-server/client/index'>; -} -declare module 'webpack-dev-server/client/live.bundle.js' { - declare module.exports: $Exports<'webpack-dev-server/client/live.bundle'>; -} -declare module 'webpack-dev-server/client/overlay.js' { - declare module.exports: $Exports<'webpack-dev-server/client/overlay'>; -} -declare module 'webpack-dev-server/client/socket.js' { - declare module.exports: $Exports<'webpack-dev-server/client/socket'>; -} -declare module 'webpack-dev-server/client/sockjs.bundle.js' { - declare module.exports: $Exports<'webpack-dev-server/client/sockjs.bundle'>; -} -declare module 'webpack-dev-server/lib/createLog.js' { - declare module.exports: $Exports<'webpack-dev-server/lib/createLog'>; -} -declare module 'webpack-dev-server/lib/OptionsValidationError.js' { - declare module.exports: $Exports<'webpack-dev-server/lib/OptionsValidationError'>; -} -declare module 'webpack-dev-server/lib/polyfills.js' { - declare module.exports: $Exports<'webpack-dev-server/lib/polyfills'>; -} -declare module 'webpack-dev-server/lib/Server.js' { - declare module.exports: $Exports<'webpack-dev-server/lib/Server'>; -} -declare module 'webpack-dev-server/lib/util/addDevServerEntrypoints.js' { - declare module.exports: $Exports<'webpack-dev-server/lib/util/addDevServerEntrypoints'>; -} -declare module 'webpack-dev-server/lib/util/createDomain.js' { - declare module.exports: $Exports<'webpack-dev-server/lib/util/createDomain'>; -} diff --git a/flow-typed/npm/webpack_vx.x.x.js b/flow-typed/npm/webpack_vx.x.x.js deleted file mode 100644 index 7f44ce0..0000000 --- a/flow-typed/npm/webpack_vx.x.x.js +++ /dev/null @@ -1,2125 +0,0 @@ -// flow-typed signature: c5ec4b1d4bc617452a27cfd5a8f27198 -// flow-typed version: <>/webpack_v^4.8.1/flow_v0.77.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'webpack' - * - * 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 'webpack' { - 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 'webpack/bin/webpack' { - declare module.exports: any; -} - -declare module 'webpack/buildin/amd-define' { - declare module.exports: any; -} - -declare module 'webpack/buildin/amd-options' { - declare module.exports: any; -} - -declare module 'webpack/buildin/global' { - declare module.exports: any; -} - -declare module 'webpack/buildin/harmony-module' { - declare module.exports: any; -} - -declare module 'webpack/buildin/module' { - declare module.exports: any; -} - -declare module 'webpack/buildin/system' { - declare module.exports: any; -} - -declare module 'webpack/hot/dev-server' { - declare module.exports: any; -} - -declare module 'webpack/hot/emitter' { - declare module.exports: any; -} - -declare module 'webpack/hot/log-apply-result' { - declare module.exports: any; -} - -declare module 'webpack/hot/log' { - declare module.exports: any; -} - -declare module 'webpack/hot/only-dev-server' { - declare module.exports: any; -} - -declare module 'webpack/hot/poll' { - declare module.exports: any; -} - -declare module 'webpack/hot/signal' { - declare module.exports: any; -} - -declare module 'webpack/lib/AmdMainTemplatePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/APIPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/AsyncDependenciesBlock' { - declare module.exports: any; -} - -declare module 'webpack/lib/AsyncDependencyToInitialChunkError' { - declare module.exports: any; -} - -declare module 'webpack/lib/AutomaticPrefetchPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/BannerPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/BasicEvaluatedExpression' { - declare module.exports: any; -} - -declare module 'webpack/lib/CachePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/CaseSensitiveModulesWarning' { - declare module.exports: any; -} - -declare module 'webpack/lib/Chunk' { - declare module.exports: any; -} - -declare module 'webpack/lib/ChunkGroup' { - declare module.exports: any; -} - -declare module 'webpack/lib/ChunkRenderError' { - declare module.exports: any; -} - -declare module 'webpack/lib/ChunkTemplate' { - declare module.exports: any; -} - -declare module 'webpack/lib/compareLocations' { - declare module.exports: any; -} - -declare module 'webpack/lib/CompatibilityPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/Compilation' { - declare module.exports: any; -} - -declare module 'webpack/lib/Compiler' { - declare module.exports: any; -} - -declare module 'webpack/lib/ConcurrentCompilationError' { - declare module.exports: any; -} - -declare module 'webpack/lib/ConstPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/ContextExclusionPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/ContextModule' { - declare module.exports: any; -} - -declare module 'webpack/lib/ContextModuleFactory' { - declare module.exports: any; -} - -declare module 'webpack/lib/ContextReplacementPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/debug/ProfilingPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/DefinePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/DelegatedModule' { - declare module.exports: any; -} - -declare module 'webpack/lib/DelegatedModuleFactoryPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/DelegatedPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/AMDDefineDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/AMDDefineDependencyParserPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/AMDPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/AMDRequireArrayDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/AMDRequireContextDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/AMDRequireDependenciesBlock' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/AMDRequireDependenciesBlockParserPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/AMDRequireDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/AMDRequireItemDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/CommonJsPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/CommonJsRequireContextDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/CommonJsRequireDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/CommonJsRequireDependencyParserPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/ConstDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/ContextDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/ContextDependencyHelpers' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/ContextDependencyTemplateAsId' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/ContextDependencyTemplateAsRequireCall' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/ContextElementDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/CriticalDependencyWarning' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/DelegatedExportsDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/DelegatedSourceDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/DependencyReference' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/DllEntryDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/getFunctionExpression' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/HarmonyAcceptDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/HarmonyAcceptImportDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/HarmonyCompatibilityDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/HarmonyDetectionParserPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/HarmonyExportDependencyParserPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/HarmonyExportExpressionDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/HarmonyExportHeaderDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/HarmonyExportImportedSpecifierDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/HarmonyExportSpecifierDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/HarmonyImportDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/HarmonyImportDependencyParserPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/HarmonyImportSideEffectDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/HarmonyImportSpecifierDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/HarmonyInitDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/HarmonyModulesPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/HarmonyTopLevelThisParserPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/ImportContextDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/ImportDependenciesBlock' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/ImportDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/ImportEagerDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/ImportParserPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/ImportPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/ImportWeakDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/JsonExportsDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/LoaderDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/LoaderPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/LocalModule' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/LocalModuleDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/LocalModulesHelpers' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/ModuleDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/ModuleDependencyTemplateAsId' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/ModuleDependencyTemplateAsRequireId' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/ModuleHotAcceptDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/ModuleHotDeclineDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/MultiEntryDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/NullDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/PrefetchDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/RequireContextDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/RequireContextDependencyParserPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/RequireContextPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/RequireEnsureDependenciesBlock' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/RequireEnsureDependenciesBlockParserPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/RequireEnsureDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/RequireEnsureItemDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/RequireEnsurePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/RequireHeaderDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/RequireIncludeDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/RequireIncludeDependencyParserPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/RequireIncludePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/RequireResolveContextDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/RequireResolveDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/RequireResolveDependencyParserPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/RequireResolveHeaderDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/SingleEntryDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/SystemPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/UnsupportedDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/WebAssemblyImportDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/WebpackMissingModule' { - declare module.exports: any; -} - -declare module 'webpack/lib/DependenciesBlock' { - declare module.exports: any; -} - -declare module 'webpack/lib/DependenciesBlockVariable' { - declare module.exports: any; -} - -declare module 'webpack/lib/Dependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/DllEntryPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/DllModule' { - declare module.exports: any; -} - -declare module 'webpack/lib/DllModuleFactory' { - declare module.exports: any; -} - -declare module 'webpack/lib/DllPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/DllReferencePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/DynamicEntryPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/EntryModuleNotFoundError' { - declare module.exports: any; -} - -declare module 'webpack/lib/EntryOptionPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/Entrypoint' { - declare module.exports: any; -} - -declare module 'webpack/lib/EnvironmentPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/ErrorHelpers' { - declare module.exports: any; -} - -declare module 'webpack/lib/EvalDevToolModulePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/EvalDevToolModuleTemplatePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/EvalSourceMapDevToolModuleTemplatePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/EvalSourceMapDevToolPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/ExportPropertyMainTemplatePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/ExtendedAPIPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/ExternalModule' { - declare module.exports: any; -} - -declare module 'webpack/lib/ExternalModuleFactoryPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/ExternalsPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/FlagDependencyExportsPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/FlagDependencyUsagePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/FlagInitialModulesAsUsedPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/formatLocation' { - declare module.exports: any; -} - -declare module 'webpack/lib/FunctionModulePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/FunctionModuleTemplatePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/Generator' { - declare module.exports: any; -} - -declare module 'webpack/lib/GraphHelpers' { - declare module.exports: any; -} - -declare module 'webpack/lib/HarmonyLinkingError' { - declare module.exports: any; -} - -declare module 'webpack/lib/HashedModuleIdsPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/HotModuleReplacement.runtime' { - declare module.exports: any; -} - -declare module 'webpack/lib/HotModuleReplacementPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/HotUpdateChunk' { - declare module.exports: any; -} - -declare module 'webpack/lib/HotUpdateChunkTemplate' { - declare module.exports: any; -} - -declare module 'webpack/lib/IgnorePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/JavascriptGenerator' { - declare module.exports: any; -} - -declare module 'webpack/lib/JavascriptModulesPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/JsonGenerator' { - declare module.exports: any; -} - -declare module 'webpack/lib/JsonModulesPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/JsonParser' { - declare module.exports: any; -} - -declare module 'webpack/lib/LibManifestPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/LibraryTemplatePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/LoaderOptionsPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/LoaderTargetPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/MainTemplate' { - declare module.exports: any; -} - -declare module 'webpack/lib/MemoryOutputFileSystem' { - declare module.exports: any; -} - -declare module 'webpack/lib/Module' { - declare module.exports: any; -} - -declare module 'webpack/lib/ModuleBuildError' { - declare module.exports: any; -} - -declare module 'webpack/lib/ModuleDependencyError' { - declare module.exports: any; -} - -declare module 'webpack/lib/ModuleDependencyWarning' { - declare module.exports: any; -} - -declare module 'webpack/lib/ModuleError' { - declare module.exports: any; -} - -declare module 'webpack/lib/ModuleFilenameHelpers' { - declare module.exports: any; -} - -declare module 'webpack/lib/ModuleNotFoundError' { - declare module.exports: any; -} - -declare module 'webpack/lib/ModuleParseError' { - declare module.exports: any; -} - -declare module 'webpack/lib/ModuleReason' { - declare module.exports: any; -} - -declare module 'webpack/lib/ModuleTemplate' { - declare module.exports: any; -} - -declare module 'webpack/lib/ModuleWarning' { - declare module.exports: any; -} - -declare module 'webpack/lib/MultiCompiler' { - declare module.exports: any; -} - -declare module 'webpack/lib/MultiEntryPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/MultiModule' { - declare module.exports: any; -} - -declare module 'webpack/lib/MultiModuleFactory' { - declare module.exports: any; -} - -declare module 'webpack/lib/MultiStats' { - declare module.exports: any; -} - -declare module 'webpack/lib/MultiWatching' { - declare module.exports: any; -} - -declare module 'webpack/lib/NamedChunksPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/NamedModulesPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/node/NodeChunkTemplatePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/node/NodeEnvironmentPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/node/NodeHotUpdateChunkTemplatePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/node/NodeMainTemplate.runtime' { - declare module.exports: any; -} - -declare module 'webpack/lib/node/NodeMainTemplateAsync.runtime' { - declare module.exports: any; -} - -declare module 'webpack/lib/node/NodeMainTemplatePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/node/NodeOutputFileSystem' { - declare module.exports: any; -} - -declare module 'webpack/lib/node/NodeSourcePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/node/NodeTargetPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/node/NodeTemplatePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/node/NodeWatchFileSystem' { - declare module.exports: any; -} - -declare module 'webpack/lib/node/ReadFileCompileWasmTemplatePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/NodeStuffPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/NoEmitOnErrorsPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/NoModeWarning' { - declare module.exports: any; -} - -declare module 'webpack/lib/NormalModule' { - declare module.exports: any; -} - -declare module 'webpack/lib/NormalModuleFactory' { - declare module.exports: any; -} - -declare module 'webpack/lib/NormalModuleReplacementPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/NullFactory' { - declare module.exports: any; -} - -declare module 'webpack/lib/optimize/AggressiveMergingPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/optimize/AggressiveSplittingPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/optimize/ChunkModuleIdRangePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/optimize/ConcatenatedModule' { - declare module.exports: any; -} - -declare module 'webpack/lib/optimize/EnsureChunkConditionsPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/optimize/FlagIncludedChunksPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/optimize/LimitChunkCountPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/optimize/MergeDuplicateChunksPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/optimize/MinChunkSizePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/optimize/ModuleConcatenationPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/optimize/OccurrenceOrderPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/optimize/RemoveEmptyChunksPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/optimize/RemoveParentModulesPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/optimize/RuntimeChunkPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/optimize/SideEffectsFlagPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/optimize/SplitChunksPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/OptionsApply' { - declare module.exports: any; -} - -declare module 'webpack/lib/OptionsDefaulter' { - declare module.exports: any; -} - -declare module 'webpack/lib/Parser' { - declare module.exports: any; -} - -declare module 'webpack/lib/ParserHelpers' { - declare module.exports: any; -} - -declare module 'webpack/lib/performance/AssetsOverSizeLimitWarning' { - declare module.exports: any; -} - -declare module 'webpack/lib/performance/EntrypointsOverSizeLimitWarning' { - declare module.exports: any; -} - -declare module 'webpack/lib/performance/NoAsyncChunksWarning' { - declare module.exports: any; -} - -declare module 'webpack/lib/performance/SizeLimitsPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/PrefetchPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/ProgressPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/ProvidePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/RawModule' { - declare module.exports: any; -} - -declare module 'webpack/lib/RecordIdsPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/RemovedPluginError' { - declare module.exports: any; -} - -declare module 'webpack/lib/RequestShortener' { - declare module.exports: any; -} - -declare module 'webpack/lib/RequireJsStuffPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/ResolverFactory' { - declare module.exports: any; -} - -declare module 'webpack/lib/RuleSet' { - declare module.exports: any; -} - -declare module 'webpack/lib/RuntimeTemplate' { - declare module.exports: any; -} - -declare module 'webpack/lib/SetVarMainTemplatePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/SingleEntryPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/SizeFormatHelpers' { - declare module.exports: any; -} - -declare module 'webpack/lib/SourceMapDevToolModuleOptionsPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/SourceMapDevToolPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/Stats' { - declare module.exports: any; -} - -declare module 'webpack/lib/Template' { - declare module.exports: any; -} - -declare module 'webpack/lib/TemplatedPathPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/UmdMainTemplatePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/UnsupportedFeatureWarning' { - declare module.exports: any; -} - -declare module 'webpack/lib/UseStrictPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/util/cachedMerge' { - declare module.exports: any; -} - -declare module 'webpack/lib/util/createHash' { - declare module.exports: any; -} - -declare module 'webpack/lib/util/identifier' { - declare module.exports: any; -} - -declare module 'webpack/lib/util/objectToMap' { - declare module.exports: any; -} - -declare module 'webpack/lib/util/Queue' { - declare module.exports: any; -} - -declare module 'webpack/lib/util/Semaphore' { - declare module.exports: any; -} - -declare module 'webpack/lib/util/SetHelpers' { - declare module.exports: any; -} - -declare module 'webpack/lib/util/SortableSet' { - declare module.exports: any; -} - -declare module 'webpack/lib/util/StackedSetMap' { - declare module.exports: any; -} - -declare module 'webpack/lib/util/TrackingSet' { - declare module.exports: any; -} - -declare module 'webpack/lib/validateSchema' { - declare module.exports: any; -} - -declare module 'webpack/lib/WarnCaseSensitiveModulesPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/WarnNoModeSetPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/wasm/UnsupportedWebAssemblyFeatureError' { - declare module.exports: any; -} - -declare module 'webpack/lib/wasm/WasmMainTemplatePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/wasm/WebAssemblyGenerator' { - declare module.exports: any; -} - -declare module 'webpack/lib/wasm/WebAssemblyJavascriptGenerator' { - declare module.exports: any; -} - -declare module 'webpack/lib/wasm/WebAssemblyModulesPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/wasm/WebAssemblyParser' { - declare module.exports: any; -} - -declare module 'webpack/lib/WatchIgnorePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/Watching' { - declare module.exports: any; -} - -declare module 'webpack/lib/web/FetchCompileWasmTemplatePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/web/JsonpChunkTemplatePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/web/JsonpExportMainTemplatePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/web/JsonpHotUpdateChunkTemplatePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/web/JsonpMainTemplate.runtime' { - declare module.exports: any; -} - -declare module 'webpack/lib/web/JsonpMainTemplatePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/web/JsonpTemplatePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/web/WebEnvironmentPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/webpack' { - declare module.exports: any; -} - -declare module 'webpack/lib/webpack.web' { - declare module.exports: any; -} - -declare module 'webpack/lib/WebpackError' { - declare module.exports: any; -} - -declare module 'webpack/lib/WebpackOptionsApply' { - declare module.exports: any; -} - -declare module 'webpack/lib/WebpackOptionsDefaulter' { - declare module.exports: any; -} - -declare module 'webpack/lib/WebpackOptionsValidationError' { - declare module.exports: any; -} - -declare module 'webpack/lib/webworker/WebWorkerChunkTemplatePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/webworker/WebWorkerHotUpdateChunkTemplatePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/webworker/WebWorkerMainTemplate.runtime' { - declare module.exports: any; -} - -declare module 'webpack/lib/webworker/WebWorkerMainTemplatePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/webworker/WebWorkerTemplatePlugin' { - declare module.exports: any; -} - -declare module 'webpack/schemas/ajv.absolutePath' { - declare module.exports: any; -} - -declare module 'webpack/web_modules/node-libs-browser' { - declare module.exports: any; -} - -// Filename aliases -declare module 'webpack/bin/webpack.js' { - declare module.exports: $Exports<'webpack/bin/webpack'>; -} -declare module 'webpack/buildin/amd-define.js' { - declare module.exports: $Exports<'webpack/buildin/amd-define'>; -} -declare module 'webpack/buildin/amd-options.js' { - declare module.exports: $Exports<'webpack/buildin/amd-options'>; -} -declare module 'webpack/buildin/global.js' { - declare module.exports: $Exports<'webpack/buildin/global'>; -} -declare module 'webpack/buildin/harmony-module.js' { - declare module.exports: $Exports<'webpack/buildin/harmony-module'>; -} -declare module 'webpack/buildin/module.js' { - declare module.exports: $Exports<'webpack/buildin/module'>; -} -declare module 'webpack/buildin/system.js' { - declare module.exports: $Exports<'webpack/buildin/system'>; -} -declare module 'webpack/hot/dev-server.js' { - declare module.exports: $Exports<'webpack/hot/dev-server'>; -} -declare module 'webpack/hot/emitter.js' { - declare module.exports: $Exports<'webpack/hot/emitter'>; -} -declare module 'webpack/hot/log-apply-result.js' { - declare module.exports: $Exports<'webpack/hot/log-apply-result'>; -} -declare module 'webpack/hot/log.js' { - declare module.exports: $Exports<'webpack/hot/log'>; -} -declare module 'webpack/hot/only-dev-server.js' { - declare module.exports: $Exports<'webpack/hot/only-dev-server'>; -} -declare module 'webpack/hot/poll.js' { - declare module.exports: $Exports<'webpack/hot/poll'>; -} -declare module 'webpack/hot/signal.js' { - declare module.exports: $Exports<'webpack/hot/signal'>; -} -declare module 'webpack/lib/AmdMainTemplatePlugin.js' { - declare module.exports: $Exports<'webpack/lib/AmdMainTemplatePlugin'>; -} -declare module 'webpack/lib/APIPlugin.js' { - declare module.exports: $Exports<'webpack/lib/APIPlugin'>; -} -declare module 'webpack/lib/AsyncDependenciesBlock.js' { - declare module.exports: $Exports<'webpack/lib/AsyncDependenciesBlock'>; -} -declare module 'webpack/lib/AsyncDependencyToInitialChunkError.js' { - declare module.exports: $Exports<'webpack/lib/AsyncDependencyToInitialChunkError'>; -} -declare module 'webpack/lib/AutomaticPrefetchPlugin.js' { - declare module.exports: $Exports<'webpack/lib/AutomaticPrefetchPlugin'>; -} -declare module 'webpack/lib/BannerPlugin.js' { - declare module.exports: $Exports<'webpack/lib/BannerPlugin'>; -} -declare module 'webpack/lib/BasicEvaluatedExpression.js' { - declare module.exports: $Exports<'webpack/lib/BasicEvaluatedExpression'>; -} -declare module 'webpack/lib/CachePlugin.js' { - declare module.exports: $Exports<'webpack/lib/CachePlugin'>; -} -declare module 'webpack/lib/CaseSensitiveModulesWarning.js' { - declare module.exports: $Exports<'webpack/lib/CaseSensitiveModulesWarning'>; -} -declare module 'webpack/lib/Chunk.js' { - declare module.exports: $Exports<'webpack/lib/Chunk'>; -} -declare module 'webpack/lib/ChunkGroup.js' { - declare module.exports: $Exports<'webpack/lib/ChunkGroup'>; -} -declare module 'webpack/lib/ChunkRenderError.js' { - declare module.exports: $Exports<'webpack/lib/ChunkRenderError'>; -} -declare module 'webpack/lib/ChunkTemplate.js' { - declare module.exports: $Exports<'webpack/lib/ChunkTemplate'>; -} -declare module 'webpack/lib/compareLocations.js' { - declare module.exports: $Exports<'webpack/lib/compareLocations'>; -} -declare module 'webpack/lib/CompatibilityPlugin.js' { - declare module.exports: $Exports<'webpack/lib/CompatibilityPlugin'>; -} -declare module 'webpack/lib/Compilation.js' { - declare module.exports: $Exports<'webpack/lib/Compilation'>; -} -declare module 'webpack/lib/Compiler.js' { - declare module.exports: $Exports<'webpack/lib/Compiler'>; -} -declare module 'webpack/lib/ConcurrentCompilationError.js' { - declare module.exports: $Exports<'webpack/lib/ConcurrentCompilationError'>; -} -declare module 'webpack/lib/ConstPlugin.js' { - declare module.exports: $Exports<'webpack/lib/ConstPlugin'>; -} -declare module 'webpack/lib/ContextExclusionPlugin.js' { - declare module.exports: $Exports<'webpack/lib/ContextExclusionPlugin'>; -} -declare module 'webpack/lib/ContextModule.js' { - declare module.exports: $Exports<'webpack/lib/ContextModule'>; -} -declare module 'webpack/lib/ContextModuleFactory.js' { - declare module.exports: $Exports<'webpack/lib/ContextModuleFactory'>; -} -declare module 'webpack/lib/ContextReplacementPlugin.js' { - declare module.exports: $Exports<'webpack/lib/ContextReplacementPlugin'>; -} -declare module 'webpack/lib/debug/ProfilingPlugin.js' { - declare module.exports: $Exports<'webpack/lib/debug/ProfilingPlugin'>; -} -declare module 'webpack/lib/DefinePlugin.js' { - declare module.exports: $Exports<'webpack/lib/DefinePlugin'>; -} -declare module 'webpack/lib/DelegatedModule.js' { - declare module.exports: $Exports<'webpack/lib/DelegatedModule'>; -} -declare module 'webpack/lib/DelegatedModuleFactoryPlugin.js' { - declare module.exports: $Exports<'webpack/lib/DelegatedModuleFactoryPlugin'>; -} -declare module 'webpack/lib/DelegatedPlugin.js' { - declare module.exports: $Exports<'webpack/lib/DelegatedPlugin'>; -} -declare module 'webpack/lib/dependencies/AMDDefineDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/AMDDefineDependency'>; -} -declare module 'webpack/lib/dependencies/AMDDefineDependencyParserPlugin.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/AMDDefineDependencyParserPlugin'>; -} -declare module 'webpack/lib/dependencies/AMDPlugin.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/AMDPlugin'>; -} -declare module 'webpack/lib/dependencies/AMDRequireArrayDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/AMDRequireArrayDependency'>; -} -declare module 'webpack/lib/dependencies/AMDRequireContextDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/AMDRequireContextDependency'>; -} -declare module 'webpack/lib/dependencies/AMDRequireDependenciesBlock.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/AMDRequireDependenciesBlock'>; -} -declare module 'webpack/lib/dependencies/AMDRequireDependenciesBlockParserPlugin.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/AMDRequireDependenciesBlockParserPlugin'>; -} -declare module 'webpack/lib/dependencies/AMDRequireDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/AMDRequireDependency'>; -} -declare module 'webpack/lib/dependencies/AMDRequireItemDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/AMDRequireItemDependency'>; -} -declare module 'webpack/lib/dependencies/CommonJsPlugin.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/CommonJsPlugin'>; -} -declare module 'webpack/lib/dependencies/CommonJsRequireContextDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/CommonJsRequireContextDependency'>; -} -declare module 'webpack/lib/dependencies/CommonJsRequireDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/CommonJsRequireDependency'>; -} -declare module 'webpack/lib/dependencies/CommonJsRequireDependencyParserPlugin.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/CommonJsRequireDependencyParserPlugin'>; -} -declare module 'webpack/lib/dependencies/ConstDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/ConstDependency'>; -} -declare module 'webpack/lib/dependencies/ContextDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/ContextDependency'>; -} -declare module 'webpack/lib/dependencies/ContextDependencyHelpers.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/ContextDependencyHelpers'>; -} -declare module 'webpack/lib/dependencies/ContextDependencyTemplateAsId.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/ContextDependencyTemplateAsId'>; -} -declare module 'webpack/lib/dependencies/ContextDependencyTemplateAsRequireCall.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/ContextDependencyTemplateAsRequireCall'>; -} -declare module 'webpack/lib/dependencies/ContextElementDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/ContextElementDependency'>; -} -declare module 'webpack/lib/dependencies/CriticalDependencyWarning.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/CriticalDependencyWarning'>; -} -declare module 'webpack/lib/dependencies/DelegatedExportsDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/DelegatedExportsDependency'>; -} -declare module 'webpack/lib/dependencies/DelegatedSourceDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/DelegatedSourceDependency'>; -} -declare module 'webpack/lib/dependencies/DependencyReference.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/DependencyReference'>; -} -declare module 'webpack/lib/dependencies/DllEntryDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/DllEntryDependency'>; -} -declare module 'webpack/lib/dependencies/getFunctionExpression.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/getFunctionExpression'>; -} -declare module 'webpack/lib/dependencies/HarmonyAcceptDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/HarmonyAcceptDependency'>; -} -declare module 'webpack/lib/dependencies/HarmonyAcceptImportDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/HarmonyAcceptImportDependency'>; -} -declare module 'webpack/lib/dependencies/HarmonyCompatibilityDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/HarmonyCompatibilityDependency'>; -} -declare module 'webpack/lib/dependencies/HarmonyDetectionParserPlugin.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/HarmonyDetectionParserPlugin'>; -} -declare module 'webpack/lib/dependencies/HarmonyExportDependencyParserPlugin.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/HarmonyExportDependencyParserPlugin'>; -} -declare module 'webpack/lib/dependencies/HarmonyExportExpressionDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/HarmonyExportExpressionDependency'>; -} -declare module 'webpack/lib/dependencies/HarmonyExportHeaderDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/HarmonyExportHeaderDependency'>; -} -declare module 'webpack/lib/dependencies/HarmonyExportImportedSpecifierDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/HarmonyExportImportedSpecifierDependency'>; -} -declare module 'webpack/lib/dependencies/HarmonyExportSpecifierDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/HarmonyExportSpecifierDependency'>; -} -declare module 'webpack/lib/dependencies/HarmonyImportDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/HarmonyImportDependency'>; -} -declare module 'webpack/lib/dependencies/HarmonyImportDependencyParserPlugin.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/HarmonyImportDependencyParserPlugin'>; -} -declare module 'webpack/lib/dependencies/HarmonyImportSideEffectDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/HarmonyImportSideEffectDependency'>; -} -declare module 'webpack/lib/dependencies/HarmonyImportSpecifierDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/HarmonyImportSpecifierDependency'>; -} -declare module 'webpack/lib/dependencies/HarmonyInitDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/HarmonyInitDependency'>; -} -declare module 'webpack/lib/dependencies/HarmonyModulesPlugin.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/HarmonyModulesPlugin'>; -} -declare module 'webpack/lib/dependencies/HarmonyTopLevelThisParserPlugin.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/HarmonyTopLevelThisParserPlugin'>; -} -declare module 'webpack/lib/dependencies/ImportContextDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/ImportContextDependency'>; -} -declare module 'webpack/lib/dependencies/ImportDependenciesBlock.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/ImportDependenciesBlock'>; -} -declare module 'webpack/lib/dependencies/ImportDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/ImportDependency'>; -} -declare module 'webpack/lib/dependencies/ImportEagerDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/ImportEagerDependency'>; -} -declare module 'webpack/lib/dependencies/ImportParserPlugin.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/ImportParserPlugin'>; -} -declare module 'webpack/lib/dependencies/ImportPlugin.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/ImportPlugin'>; -} -declare module 'webpack/lib/dependencies/ImportWeakDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/ImportWeakDependency'>; -} -declare module 'webpack/lib/dependencies/JsonExportsDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/JsonExportsDependency'>; -} -declare module 'webpack/lib/dependencies/LoaderDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/LoaderDependency'>; -} -declare module 'webpack/lib/dependencies/LoaderPlugin.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/LoaderPlugin'>; -} -declare module 'webpack/lib/dependencies/LocalModule.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/LocalModule'>; -} -declare module 'webpack/lib/dependencies/LocalModuleDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/LocalModuleDependency'>; -} -declare module 'webpack/lib/dependencies/LocalModulesHelpers.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/LocalModulesHelpers'>; -} -declare module 'webpack/lib/dependencies/ModuleDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/ModuleDependency'>; -} -declare module 'webpack/lib/dependencies/ModuleDependencyTemplateAsId.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/ModuleDependencyTemplateAsId'>; -} -declare module 'webpack/lib/dependencies/ModuleDependencyTemplateAsRequireId.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/ModuleDependencyTemplateAsRequireId'>; -} -declare module 'webpack/lib/dependencies/ModuleHotAcceptDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/ModuleHotAcceptDependency'>; -} -declare module 'webpack/lib/dependencies/ModuleHotDeclineDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/ModuleHotDeclineDependency'>; -} -declare module 'webpack/lib/dependencies/MultiEntryDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/MultiEntryDependency'>; -} -declare module 'webpack/lib/dependencies/NullDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/NullDependency'>; -} -declare module 'webpack/lib/dependencies/PrefetchDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/PrefetchDependency'>; -} -declare module 'webpack/lib/dependencies/RequireContextDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/RequireContextDependency'>; -} -declare module 'webpack/lib/dependencies/RequireContextDependencyParserPlugin.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/RequireContextDependencyParserPlugin'>; -} -declare module 'webpack/lib/dependencies/RequireContextPlugin.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/RequireContextPlugin'>; -} -declare module 'webpack/lib/dependencies/RequireEnsureDependenciesBlock.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/RequireEnsureDependenciesBlock'>; -} -declare module 'webpack/lib/dependencies/RequireEnsureDependenciesBlockParserPlugin.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/RequireEnsureDependenciesBlockParserPlugin'>; -} -declare module 'webpack/lib/dependencies/RequireEnsureDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/RequireEnsureDependency'>; -} -declare module 'webpack/lib/dependencies/RequireEnsureItemDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/RequireEnsureItemDependency'>; -} -declare module 'webpack/lib/dependencies/RequireEnsurePlugin.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/RequireEnsurePlugin'>; -} -declare module 'webpack/lib/dependencies/RequireHeaderDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/RequireHeaderDependency'>; -} -declare module 'webpack/lib/dependencies/RequireIncludeDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/RequireIncludeDependency'>; -} -declare module 'webpack/lib/dependencies/RequireIncludeDependencyParserPlugin.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/RequireIncludeDependencyParserPlugin'>; -} -declare module 'webpack/lib/dependencies/RequireIncludePlugin.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/RequireIncludePlugin'>; -} -declare module 'webpack/lib/dependencies/RequireResolveContextDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/RequireResolveContextDependency'>; -} -declare module 'webpack/lib/dependencies/RequireResolveDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/RequireResolveDependency'>; -} -declare module 'webpack/lib/dependencies/RequireResolveDependencyParserPlugin.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/RequireResolveDependencyParserPlugin'>; -} -declare module 'webpack/lib/dependencies/RequireResolveHeaderDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/RequireResolveHeaderDependency'>; -} -declare module 'webpack/lib/dependencies/SingleEntryDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/SingleEntryDependency'>; -} -declare module 'webpack/lib/dependencies/SystemPlugin.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/SystemPlugin'>; -} -declare module 'webpack/lib/dependencies/UnsupportedDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/UnsupportedDependency'>; -} -declare module 'webpack/lib/dependencies/WebAssemblyImportDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/WebAssemblyImportDependency'>; -} -declare module 'webpack/lib/dependencies/WebpackMissingModule.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/WebpackMissingModule'>; -} -declare module 'webpack/lib/DependenciesBlock.js' { - declare module.exports: $Exports<'webpack/lib/DependenciesBlock'>; -} -declare module 'webpack/lib/DependenciesBlockVariable.js' { - declare module.exports: $Exports<'webpack/lib/DependenciesBlockVariable'>; -} -declare module 'webpack/lib/Dependency.js' { - declare module.exports: $Exports<'webpack/lib/Dependency'>; -} -declare module 'webpack/lib/DllEntryPlugin.js' { - declare module.exports: $Exports<'webpack/lib/DllEntryPlugin'>; -} -declare module 'webpack/lib/DllModule.js' { - declare module.exports: $Exports<'webpack/lib/DllModule'>; -} -declare module 'webpack/lib/DllModuleFactory.js' { - declare module.exports: $Exports<'webpack/lib/DllModuleFactory'>; -} -declare module 'webpack/lib/DllPlugin.js' { - declare module.exports: $Exports<'webpack/lib/DllPlugin'>; -} -declare module 'webpack/lib/DllReferencePlugin.js' { - declare module.exports: $Exports<'webpack/lib/DllReferencePlugin'>; -} -declare module 'webpack/lib/DynamicEntryPlugin.js' { - declare module.exports: $Exports<'webpack/lib/DynamicEntryPlugin'>; -} -declare module 'webpack/lib/EntryModuleNotFoundError.js' { - declare module.exports: $Exports<'webpack/lib/EntryModuleNotFoundError'>; -} -declare module 'webpack/lib/EntryOptionPlugin.js' { - declare module.exports: $Exports<'webpack/lib/EntryOptionPlugin'>; -} -declare module 'webpack/lib/Entrypoint.js' { - declare module.exports: $Exports<'webpack/lib/Entrypoint'>; -} -declare module 'webpack/lib/EnvironmentPlugin.js' { - declare module.exports: $Exports<'webpack/lib/EnvironmentPlugin'>; -} -declare module 'webpack/lib/ErrorHelpers.js' { - declare module.exports: $Exports<'webpack/lib/ErrorHelpers'>; -} -declare module 'webpack/lib/EvalDevToolModulePlugin.js' { - declare module.exports: $Exports<'webpack/lib/EvalDevToolModulePlugin'>; -} -declare module 'webpack/lib/EvalDevToolModuleTemplatePlugin.js' { - declare module.exports: $Exports<'webpack/lib/EvalDevToolModuleTemplatePlugin'>; -} -declare module 'webpack/lib/EvalSourceMapDevToolModuleTemplatePlugin.js' { - declare module.exports: $Exports<'webpack/lib/EvalSourceMapDevToolModuleTemplatePlugin'>; -} -declare module 'webpack/lib/EvalSourceMapDevToolPlugin.js' { - declare module.exports: $Exports<'webpack/lib/EvalSourceMapDevToolPlugin'>; -} -declare module 'webpack/lib/ExportPropertyMainTemplatePlugin.js' { - declare module.exports: $Exports<'webpack/lib/ExportPropertyMainTemplatePlugin'>; -} -declare module 'webpack/lib/ExtendedAPIPlugin.js' { - declare module.exports: $Exports<'webpack/lib/ExtendedAPIPlugin'>; -} -declare module 'webpack/lib/ExternalModule.js' { - declare module.exports: $Exports<'webpack/lib/ExternalModule'>; -} -declare module 'webpack/lib/ExternalModuleFactoryPlugin.js' { - declare module.exports: $Exports<'webpack/lib/ExternalModuleFactoryPlugin'>; -} -declare module 'webpack/lib/ExternalsPlugin.js' { - declare module.exports: $Exports<'webpack/lib/ExternalsPlugin'>; -} -declare module 'webpack/lib/FlagDependencyExportsPlugin.js' { - declare module.exports: $Exports<'webpack/lib/FlagDependencyExportsPlugin'>; -} -declare module 'webpack/lib/FlagDependencyUsagePlugin.js' { - declare module.exports: $Exports<'webpack/lib/FlagDependencyUsagePlugin'>; -} -declare module 'webpack/lib/FlagInitialModulesAsUsedPlugin.js' { - declare module.exports: $Exports<'webpack/lib/FlagInitialModulesAsUsedPlugin'>; -} -declare module 'webpack/lib/formatLocation.js' { - declare module.exports: $Exports<'webpack/lib/formatLocation'>; -} -declare module 'webpack/lib/FunctionModulePlugin.js' { - declare module.exports: $Exports<'webpack/lib/FunctionModulePlugin'>; -} -declare module 'webpack/lib/FunctionModuleTemplatePlugin.js' { - declare module.exports: $Exports<'webpack/lib/FunctionModuleTemplatePlugin'>; -} -declare module 'webpack/lib/Generator.js' { - declare module.exports: $Exports<'webpack/lib/Generator'>; -} -declare module 'webpack/lib/GraphHelpers.js' { - declare module.exports: $Exports<'webpack/lib/GraphHelpers'>; -} -declare module 'webpack/lib/HarmonyLinkingError.js' { - declare module.exports: $Exports<'webpack/lib/HarmonyLinkingError'>; -} -declare module 'webpack/lib/HashedModuleIdsPlugin.js' { - declare module.exports: $Exports<'webpack/lib/HashedModuleIdsPlugin'>; -} -declare module 'webpack/lib/HotModuleReplacement.runtime.js' { - declare module.exports: $Exports<'webpack/lib/HotModuleReplacement.runtime'>; -} -declare module 'webpack/lib/HotModuleReplacementPlugin.js' { - declare module.exports: $Exports<'webpack/lib/HotModuleReplacementPlugin'>; -} -declare module 'webpack/lib/HotUpdateChunk.js' { - declare module.exports: $Exports<'webpack/lib/HotUpdateChunk'>; -} -declare module 'webpack/lib/HotUpdateChunkTemplate.js' { - declare module.exports: $Exports<'webpack/lib/HotUpdateChunkTemplate'>; -} -declare module 'webpack/lib/IgnorePlugin.js' { - declare module.exports: $Exports<'webpack/lib/IgnorePlugin'>; -} -declare module 'webpack/lib/JavascriptGenerator.js' { - declare module.exports: $Exports<'webpack/lib/JavascriptGenerator'>; -} -declare module 'webpack/lib/JavascriptModulesPlugin.js' { - declare module.exports: $Exports<'webpack/lib/JavascriptModulesPlugin'>; -} -declare module 'webpack/lib/JsonGenerator.js' { - declare module.exports: $Exports<'webpack/lib/JsonGenerator'>; -} -declare module 'webpack/lib/JsonModulesPlugin.js' { - declare module.exports: $Exports<'webpack/lib/JsonModulesPlugin'>; -} -declare module 'webpack/lib/JsonParser.js' { - declare module.exports: $Exports<'webpack/lib/JsonParser'>; -} -declare module 'webpack/lib/LibManifestPlugin.js' { - declare module.exports: $Exports<'webpack/lib/LibManifestPlugin'>; -} -declare module 'webpack/lib/LibraryTemplatePlugin.js' { - declare module.exports: $Exports<'webpack/lib/LibraryTemplatePlugin'>; -} -declare module 'webpack/lib/LoaderOptionsPlugin.js' { - declare module.exports: $Exports<'webpack/lib/LoaderOptionsPlugin'>; -} -declare module 'webpack/lib/LoaderTargetPlugin.js' { - declare module.exports: $Exports<'webpack/lib/LoaderTargetPlugin'>; -} -declare module 'webpack/lib/MainTemplate.js' { - declare module.exports: $Exports<'webpack/lib/MainTemplate'>; -} -declare module 'webpack/lib/MemoryOutputFileSystem.js' { - declare module.exports: $Exports<'webpack/lib/MemoryOutputFileSystem'>; -} -declare module 'webpack/lib/Module.js' { - declare module.exports: $Exports<'webpack/lib/Module'>; -} -declare module 'webpack/lib/ModuleBuildError.js' { - declare module.exports: $Exports<'webpack/lib/ModuleBuildError'>; -} -declare module 'webpack/lib/ModuleDependencyError.js' { - declare module.exports: $Exports<'webpack/lib/ModuleDependencyError'>; -} -declare module 'webpack/lib/ModuleDependencyWarning.js' { - declare module.exports: $Exports<'webpack/lib/ModuleDependencyWarning'>; -} -declare module 'webpack/lib/ModuleError.js' { - declare module.exports: $Exports<'webpack/lib/ModuleError'>; -} -declare module 'webpack/lib/ModuleFilenameHelpers.js' { - declare module.exports: $Exports<'webpack/lib/ModuleFilenameHelpers'>; -} -declare module 'webpack/lib/ModuleNotFoundError.js' { - declare module.exports: $Exports<'webpack/lib/ModuleNotFoundError'>; -} -declare module 'webpack/lib/ModuleParseError.js' { - declare module.exports: $Exports<'webpack/lib/ModuleParseError'>; -} -declare module 'webpack/lib/ModuleReason.js' { - declare module.exports: $Exports<'webpack/lib/ModuleReason'>; -} -declare module 'webpack/lib/ModuleTemplate.js' { - declare module.exports: $Exports<'webpack/lib/ModuleTemplate'>; -} -declare module 'webpack/lib/ModuleWarning.js' { - declare module.exports: $Exports<'webpack/lib/ModuleWarning'>; -} -declare module 'webpack/lib/MultiCompiler.js' { - declare module.exports: $Exports<'webpack/lib/MultiCompiler'>; -} -declare module 'webpack/lib/MultiEntryPlugin.js' { - declare module.exports: $Exports<'webpack/lib/MultiEntryPlugin'>; -} -declare module 'webpack/lib/MultiModule.js' { - declare module.exports: $Exports<'webpack/lib/MultiModule'>; -} -declare module 'webpack/lib/MultiModuleFactory.js' { - declare module.exports: $Exports<'webpack/lib/MultiModuleFactory'>; -} -declare module 'webpack/lib/MultiStats.js' { - declare module.exports: $Exports<'webpack/lib/MultiStats'>; -} -declare module 'webpack/lib/MultiWatching.js' { - declare module.exports: $Exports<'webpack/lib/MultiWatching'>; -} -declare module 'webpack/lib/NamedChunksPlugin.js' { - declare module.exports: $Exports<'webpack/lib/NamedChunksPlugin'>; -} -declare module 'webpack/lib/NamedModulesPlugin.js' { - declare module.exports: $Exports<'webpack/lib/NamedModulesPlugin'>; -} -declare module 'webpack/lib/node/NodeChunkTemplatePlugin.js' { - declare module.exports: $Exports<'webpack/lib/node/NodeChunkTemplatePlugin'>; -} -declare module 'webpack/lib/node/NodeEnvironmentPlugin.js' { - declare module.exports: $Exports<'webpack/lib/node/NodeEnvironmentPlugin'>; -} -declare module 'webpack/lib/node/NodeHotUpdateChunkTemplatePlugin.js' { - declare module.exports: $Exports<'webpack/lib/node/NodeHotUpdateChunkTemplatePlugin'>; -} -declare module 'webpack/lib/node/NodeMainTemplate.runtime.js' { - declare module.exports: $Exports<'webpack/lib/node/NodeMainTemplate.runtime'>; -} -declare module 'webpack/lib/node/NodeMainTemplateAsync.runtime.js' { - declare module.exports: $Exports<'webpack/lib/node/NodeMainTemplateAsync.runtime'>; -} -declare module 'webpack/lib/node/NodeMainTemplatePlugin.js' { - declare module.exports: $Exports<'webpack/lib/node/NodeMainTemplatePlugin'>; -} -declare module 'webpack/lib/node/NodeOutputFileSystem.js' { - declare module.exports: $Exports<'webpack/lib/node/NodeOutputFileSystem'>; -} -declare module 'webpack/lib/node/NodeSourcePlugin.js' { - declare module.exports: $Exports<'webpack/lib/node/NodeSourcePlugin'>; -} -declare module 'webpack/lib/node/NodeTargetPlugin.js' { - declare module.exports: $Exports<'webpack/lib/node/NodeTargetPlugin'>; -} -declare module 'webpack/lib/node/NodeTemplatePlugin.js' { - declare module.exports: $Exports<'webpack/lib/node/NodeTemplatePlugin'>; -} -declare module 'webpack/lib/node/NodeWatchFileSystem.js' { - declare module.exports: $Exports<'webpack/lib/node/NodeWatchFileSystem'>; -} -declare module 'webpack/lib/node/ReadFileCompileWasmTemplatePlugin.js' { - declare module.exports: $Exports<'webpack/lib/node/ReadFileCompileWasmTemplatePlugin'>; -} -declare module 'webpack/lib/NodeStuffPlugin.js' { - declare module.exports: $Exports<'webpack/lib/NodeStuffPlugin'>; -} -declare module 'webpack/lib/NoEmitOnErrorsPlugin.js' { - declare module.exports: $Exports<'webpack/lib/NoEmitOnErrorsPlugin'>; -} -declare module 'webpack/lib/NoModeWarning.js' { - declare module.exports: $Exports<'webpack/lib/NoModeWarning'>; -} -declare module 'webpack/lib/NormalModule.js' { - declare module.exports: $Exports<'webpack/lib/NormalModule'>; -} -declare module 'webpack/lib/NormalModuleFactory.js' { - declare module.exports: $Exports<'webpack/lib/NormalModuleFactory'>; -} -declare module 'webpack/lib/NormalModuleReplacementPlugin.js' { - declare module.exports: $Exports<'webpack/lib/NormalModuleReplacementPlugin'>; -} -declare module 'webpack/lib/NullFactory.js' { - declare module.exports: $Exports<'webpack/lib/NullFactory'>; -} -declare module 'webpack/lib/optimize/AggressiveMergingPlugin.js' { - declare module.exports: $Exports<'webpack/lib/optimize/AggressiveMergingPlugin'>; -} -declare module 'webpack/lib/optimize/AggressiveSplittingPlugin.js' { - declare module.exports: $Exports<'webpack/lib/optimize/AggressiveSplittingPlugin'>; -} -declare module 'webpack/lib/optimize/ChunkModuleIdRangePlugin.js' { - declare module.exports: $Exports<'webpack/lib/optimize/ChunkModuleIdRangePlugin'>; -} -declare module 'webpack/lib/optimize/ConcatenatedModule.js' { - declare module.exports: $Exports<'webpack/lib/optimize/ConcatenatedModule'>; -} -declare module 'webpack/lib/optimize/EnsureChunkConditionsPlugin.js' { - declare module.exports: $Exports<'webpack/lib/optimize/EnsureChunkConditionsPlugin'>; -} -declare module 'webpack/lib/optimize/FlagIncludedChunksPlugin.js' { - declare module.exports: $Exports<'webpack/lib/optimize/FlagIncludedChunksPlugin'>; -} -declare module 'webpack/lib/optimize/LimitChunkCountPlugin.js' { - declare module.exports: $Exports<'webpack/lib/optimize/LimitChunkCountPlugin'>; -} -declare module 'webpack/lib/optimize/MergeDuplicateChunksPlugin.js' { - declare module.exports: $Exports<'webpack/lib/optimize/MergeDuplicateChunksPlugin'>; -} -declare module 'webpack/lib/optimize/MinChunkSizePlugin.js' { - declare module.exports: $Exports<'webpack/lib/optimize/MinChunkSizePlugin'>; -} -declare module 'webpack/lib/optimize/ModuleConcatenationPlugin.js' { - declare module.exports: $Exports<'webpack/lib/optimize/ModuleConcatenationPlugin'>; -} -declare module 'webpack/lib/optimize/OccurrenceOrderPlugin.js' { - declare module.exports: $Exports<'webpack/lib/optimize/OccurrenceOrderPlugin'>; -} -declare module 'webpack/lib/optimize/RemoveEmptyChunksPlugin.js' { - declare module.exports: $Exports<'webpack/lib/optimize/RemoveEmptyChunksPlugin'>; -} -declare module 'webpack/lib/optimize/RemoveParentModulesPlugin.js' { - declare module.exports: $Exports<'webpack/lib/optimize/RemoveParentModulesPlugin'>; -} -declare module 'webpack/lib/optimize/RuntimeChunkPlugin.js' { - declare module.exports: $Exports<'webpack/lib/optimize/RuntimeChunkPlugin'>; -} -declare module 'webpack/lib/optimize/SideEffectsFlagPlugin.js' { - declare module.exports: $Exports<'webpack/lib/optimize/SideEffectsFlagPlugin'>; -} -declare module 'webpack/lib/optimize/SplitChunksPlugin.js' { - declare module.exports: $Exports<'webpack/lib/optimize/SplitChunksPlugin'>; -} -declare module 'webpack/lib/OptionsApply.js' { - declare module.exports: $Exports<'webpack/lib/OptionsApply'>; -} -declare module 'webpack/lib/OptionsDefaulter.js' { - declare module.exports: $Exports<'webpack/lib/OptionsDefaulter'>; -} -declare module 'webpack/lib/Parser.js' { - declare module.exports: $Exports<'webpack/lib/Parser'>; -} -declare module 'webpack/lib/ParserHelpers.js' { - declare module.exports: $Exports<'webpack/lib/ParserHelpers'>; -} -declare module 'webpack/lib/performance/AssetsOverSizeLimitWarning.js' { - declare module.exports: $Exports<'webpack/lib/performance/AssetsOverSizeLimitWarning'>; -} -declare module 'webpack/lib/performance/EntrypointsOverSizeLimitWarning.js' { - declare module.exports: $Exports<'webpack/lib/performance/EntrypointsOverSizeLimitWarning'>; -} -declare module 'webpack/lib/performance/NoAsyncChunksWarning.js' { - declare module.exports: $Exports<'webpack/lib/performance/NoAsyncChunksWarning'>; -} -declare module 'webpack/lib/performance/SizeLimitsPlugin.js' { - declare module.exports: $Exports<'webpack/lib/performance/SizeLimitsPlugin'>; -} -declare module 'webpack/lib/PrefetchPlugin.js' { - declare module.exports: $Exports<'webpack/lib/PrefetchPlugin'>; -} -declare module 'webpack/lib/ProgressPlugin.js' { - declare module.exports: $Exports<'webpack/lib/ProgressPlugin'>; -} -declare module 'webpack/lib/ProvidePlugin.js' { - declare module.exports: $Exports<'webpack/lib/ProvidePlugin'>; -} -declare module 'webpack/lib/RawModule.js' { - declare module.exports: $Exports<'webpack/lib/RawModule'>; -} -declare module 'webpack/lib/RecordIdsPlugin.js' { - declare module.exports: $Exports<'webpack/lib/RecordIdsPlugin'>; -} -declare module 'webpack/lib/RemovedPluginError.js' { - declare module.exports: $Exports<'webpack/lib/RemovedPluginError'>; -} -declare module 'webpack/lib/RequestShortener.js' { - declare module.exports: $Exports<'webpack/lib/RequestShortener'>; -} -declare module 'webpack/lib/RequireJsStuffPlugin.js' { - declare module.exports: $Exports<'webpack/lib/RequireJsStuffPlugin'>; -} -declare module 'webpack/lib/ResolverFactory.js' { - declare module.exports: $Exports<'webpack/lib/ResolverFactory'>; -} -declare module 'webpack/lib/RuleSet.js' { - declare module.exports: $Exports<'webpack/lib/RuleSet'>; -} -declare module 'webpack/lib/RuntimeTemplate.js' { - declare module.exports: $Exports<'webpack/lib/RuntimeTemplate'>; -} -declare module 'webpack/lib/SetVarMainTemplatePlugin.js' { - declare module.exports: $Exports<'webpack/lib/SetVarMainTemplatePlugin'>; -} -declare module 'webpack/lib/SingleEntryPlugin.js' { - declare module.exports: $Exports<'webpack/lib/SingleEntryPlugin'>; -} -declare module 'webpack/lib/SizeFormatHelpers.js' { - declare module.exports: $Exports<'webpack/lib/SizeFormatHelpers'>; -} -declare module 'webpack/lib/SourceMapDevToolModuleOptionsPlugin.js' { - declare module.exports: $Exports<'webpack/lib/SourceMapDevToolModuleOptionsPlugin'>; -} -declare module 'webpack/lib/SourceMapDevToolPlugin.js' { - declare module.exports: $Exports<'webpack/lib/SourceMapDevToolPlugin'>; -} -declare module 'webpack/lib/Stats.js' { - declare module.exports: $Exports<'webpack/lib/Stats'>; -} -declare module 'webpack/lib/Template.js' { - declare module.exports: $Exports<'webpack/lib/Template'>; -} -declare module 'webpack/lib/TemplatedPathPlugin.js' { - declare module.exports: $Exports<'webpack/lib/TemplatedPathPlugin'>; -} -declare module 'webpack/lib/UmdMainTemplatePlugin.js' { - declare module.exports: $Exports<'webpack/lib/UmdMainTemplatePlugin'>; -} -declare module 'webpack/lib/UnsupportedFeatureWarning.js' { - declare module.exports: $Exports<'webpack/lib/UnsupportedFeatureWarning'>; -} -declare module 'webpack/lib/UseStrictPlugin.js' { - declare module.exports: $Exports<'webpack/lib/UseStrictPlugin'>; -} -declare module 'webpack/lib/util/cachedMerge.js' { - declare module.exports: $Exports<'webpack/lib/util/cachedMerge'>; -} -declare module 'webpack/lib/util/createHash.js' { - declare module.exports: $Exports<'webpack/lib/util/createHash'>; -} -declare module 'webpack/lib/util/identifier.js' { - declare module.exports: $Exports<'webpack/lib/util/identifier'>; -} -declare module 'webpack/lib/util/objectToMap.js' { - declare module.exports: $Exports<'webpack/lib/util/objectToMap'>; -} -declare module 'webpack/lib/util/Queue.js' { - declare module.exports: $Exports<'webpack/lib/util/Queue'>; -} -declare module 'webpack/lib/util/Semaphore.js' { - declare module.exports: $Exports<'webpack/lib/util/Semaphore'>; -} -declare module 'webpack/lib/util/SetHelpers.js' { - declare module.exports: $Exports<'webpack/lib/util/SetHelpers'>; -} -declare module 'webpack/lib/util/SortableSet.js' { - declare module.exports: $Exports<'webpack/lib/util/SortableSet'>; -} -declare module 'webpack/lib/util/StackedSetMap.js' { - declare module.exports: $Exports<'webpack/lib/util/StackedSetMap'>; -} -declare module 'webpack/lib/util/TrackingSet.js' { - declare module.exports: $Exports<'webpack/lib/util/TrackingSet'>; -} -declare module 'webpack/lib/validateSchema.js' { - declare module.exports: $Exports<'webpack/lib/validateSchema'>; -} -declare module 'webpack/lib/WarnCaseSensitiveModulesPlugin.js' { - declare module.exports: $Exports<'webpack/lib/WarnCaseSensitiveModulesPlugin'>; -} -declare module 'webpack/lib/WarnNoModeSetPlugin.js' { - declare module.exports: $Exports<'webpack/lib/WarnNoModeSetPlugin'>; -} -declare module 'webpack/lib/wasm/UnsupportedWebAssemblyFeatureError.js' { - declare module.exports: $Exports<'webpack/lib/wasm/UnsupportedWebAssemblyFeatureError'>; -} -declare module 'webpack/lib/wasm/WasmMainTemplatePlugin.js' { - declare module.exports: $Exports<'webpack/lib/wasm/WasmMainTemplatePlugin'>; -} -declare module 'webpack/lib/wasm/WebAssemblyGenerator.js' { - declare module.exports: $Exports<'webpack/lib/wasm/WebAssemblyGenerator'>; -} -declare module 'webpack/lib/wasm/WebAssemblyJavascriptGenerator.js' { - declare module.exports: $Exports<'webpack/lib/wasm/WebAssemblyJavascriptGenerator'>; -} -declare module 'webpack/lib/wasm/WebAssemblyModulesPlugin.js' { - declare module.exports: $Exports<'webpack/lib/wasm/WebAssemblyModulesPlugin'>; -} -declare module 'webpack/lib/wasm/WebAssemblyParser.js' { - declare module.exports: $Exports<'webpack/lib/wasm/WebAssemblyParser'>; -} -declare module 'webpack/lib/WatchIgnorePlugin.js' { - declare module.exports: $Exports<'webpack/lib/WatchIgnorePlugin'>; -} -declare module 'webpack/lib/Watching.js' { - declare module.exports: $Exports<'webpack/lib/Watching'>; -} -declare module 'webpack/lib/web/FetchCompileWasmTemplatePlugin.js' { - declare module.exports: $Exports<'webpack/lib/web/FetchCompileWasmTemplatePlugin'>; -} -declare module 'webpack/lib/web/JsonpChunkTemplatePlugin.js' { - declare module.exports: $Exports<'webpack/lib/web/JsonpChunkTemplatePlugin'>; -} -declare module 'webpack/lib/web/JsonpExportMainTemplatePlugin.js' { - declare module.exports: $Exports<'webpack/lib/web/JsonpExportMainTemplatePlugin'>; -} -declare module 'webpack/lib/web/JsonpHotUpdateChunkTemplatePlugin.js' { - declare module.exports: $Exports<'webpack/lib/web/JsonpHotUpdateChunkTemplatePlugin'>; -} -declare module 'webpack/lib/web/JsonpMainTemplate.runtime.js' { - declare module.exports: $Exports<'webpack/lib/web/JsonpMainTemplate.runtime'>; -} -declare module 'webpack/lib/web/JsonpMainTemplatePlugin.js' { - declare module.exports: $Exports<'webpack/lib/web/JsonpMainTemplatePlugin'>; -} -declare module 'webpack/lib/web/JsonpTemplatePlugin.js' { - declare module.exports: $Exports<'webpack/lib/web/JsonpTemplatePlugin'>; -} -declare module 'webpack/lib/web/WebEnvironmentPlugin.js' { - declare module.exports: $Exports<'webpack/lib/web/WebEnvironmentPlugin'>; -} -declare module 'webpack/lib/webpack.js' { - declare module.exports: $Exports<'webpack/lib/webpack'>; -} -declare module 'webpack/lib/webpack.web.js' { - declare module.exports: $Exports<'webpack/lib/webpack.web'>; -} -declare module 'webpack/lib/WebpackError.js' { - declare module.exports: $Exports<'webpack/lib/WebpackError'>; -} -declare module 'webpack/lib/WebpackOptionsApply.js' { - declare module.exports: $Exports<'webpack/lib/WebpackOptionsApply'>; -} -declare module 'webpack/lib/WebpackOptionsDefaulter.js' { - declare module.exports: $Exports<'webpack/lib/WebpackOptionsDefaulter'>; -} -declare module 'webpack/lib/WebpackOptionsValidationError.js' { - declare module.exports: $Exports<'webpack/lib/WebpackOptionsValidationError'>; -} -declare module 'webpack/lib/webworker/WebWorkerChunkTemplatePlugin.js' { - declare module.exports: $Exports<'webpack/lib/webworker/WebWorkerChunkTemplatePlugin'>; -} -declare module 'webpack/lib/webworker/WebWorkerHotUpdateChunkTemplatePlugin.js' { - declare module.exports: $Exports<'webpack/lib/webworker/WebWorkerHotUpdateChunkTemplatePlugin'>; -} -declare module 'webpack/lib/webworker/WebWorkerMainTemplate.runtime.js' { - declare module.exports: $Exports<'webpack/lib/webworker/WebWorkerMainTemplate.runtime'>; -} -declare module 'webpack/lib/webworker/WebWorkerMainTemplatePlugin.js' { - declare module.exports: $Exports<'webpack/lib/webworker/WebWorkerMainTemplatePlugin'>; -} -declare module 'webpack/lib/webworker/WebWorkerTemplatePlugin.js' { - declare module.exports: $Exports<'webpack/lib/webworker/WebWorkerTemplatePlugin'>; -} -declare module 'webpack/schemas/ajv.absolutePath.js' { - declare module.exports: $Exports<'webpack/schemas/ajv.absolutePath'>; -} -declare module 'webpack/web_modules/node-libs-browser.js' { - declare module.exports: $Exports<'webpack/web_modules/node-libs-browser'>; -} diff --git a/flow-typed/npm/why-did-you-update_v0.x.x.js b/flow-typed/npm/why-did-you-update_v0.x.x.js deleted file mode 100644 index e3c030e..0000000 --- a/flow-typed/npm/why-did-you-update_v0.x.x.js +++ /dev/null @@ -1,13 +0,0 @@ -// flow-typed signature: 2991c1bc398f4e5a314e188fa39d27f2 -// flow-typed version: 1ad2a03c70/why-did-you-update_v0.x.x/flow_>=v0.41.x - -import * as React from "react"; - -declare module "why-did-you-update" { - declare export function whyDidYouUpdate( - React: { - Component: typeof React$Component - }, - options?: Object - ): void; -} diff --git a/package.json b/package.json index ab6f4b0..ce04726 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "rsuite-management-system", + "name": "rsuite-admin-template", "version": "1.0.0", "description": "RSUITE Management System", "main": "lib/index.js", @@ -7,19 +7,18 @@ "lib": "lib/" }, "scripts": { - "dev": "webpack-dev-server --mode development --progress --hot", + "dev": "webpack serve --mode development --port 3100 --host 0.0.0.0 --progress ", "clear-dist": "rm -rf dist", "build-webpack": "NODE_ENV=production webpack --mode production --progress && cp -R public/* ./dist/ ", "build": "npm run clear-dist && npm run build-webpack", "publish-github": "node gh-pages.js", - "test": "karma start", "flow": "flow" }, "keywords": [ "react", - "suite", "rsuite", - "react-component" + "admin", + "template" ], "files": [ "CHANGELOG.md", @@ -30,90 +29,66 @@ "license": "MIT", "repository": { "type": "git", - "url": "git@github.com:rsuite/rsuite-management-system.git" + "url": "git@github.com:rsuite/rsuite-admin-template.git" }, "dependencies": { - "chartist": "^0.11.0", - "classnames": ">=2.0.0", - "moment": "^2.20.1", - "npm": "^6.2.0", + "@babel/runtime": "^7.18.9", + "@faker-js/faker": "^7.4.0", + "@rsuite/icons": "^1.0.2", + "chartist": "^0.10.1", + "classnames": "^2.3.1", "prop-types": "^15.6.0", - "react": "^16.2.0", - "react-chartist": "^0.13.1", - "react-dom": "^16.2.0", - "react-hot-loader": "^4.0.0", - "react-intl": "^2.4.0", - "react-router": "3.2.0", - "rsuite": "^3.2.2", - "rsuite-utils": "^1.0.0" - }, - "peerDependencies": { - "react": "^0.14.9 || >=15.3.0", - "react-dom": "^0.14.9 || >=15.3.0" + "react": "^18.2.0", + "react-chartist": "^0.14.4", + "react-dom": "^18.2.0", + "react-intl": "^6.0.5", + "react-router": "6.3.0", + "react-router-dom": "^6.3.0", + "rsuite": "5.17.0-beta.1" }, "devDependencies": { - "algoliasearch": "^3.24.9", - "autoprefixer": "^7.1.6", - "babel-core": "^6.26.3", - "babel-eslint": "^7.2.3", - "babel-loader": "^7.1.4", - "babel-plugin-add-module-exports": "^0.2.1", - "babel-plugin-lodash": "^3.3.2", - "babel-plugin-transform-class-properties": "^6.24.1", - "babel-plugin-transform-dev": "^2.0.1", - "babel-plugin-transform-proto-to-assign": "^6.26.0", - "babel-plugin-transform-runtime": "^6.23.0", - "babel-polyfill": "^6.26.0", - "babel-preset-env": "^1.6.1", - "babel-preset-react": "^6.24.1", - "babel-preset-rsuite": "0.0.1", - "babel-preset-stage-1": "^6.24.1", - "brfs": "^1.4.3", - "chai": "^3.5.0", - "child-process-promise": "^2.0.2", - "compression-webpack-plugin": "^1.0.1", - "css-loader": "^0.28.11", - "cssnano": "^3.10.0", - "eslint": "^2.8.0", - "eslint-plugin-babel": "^3.2.0", - "eslint-plugin-react": "^5.0.1", - "extract-text-webpack-plugin": "^4.0.0-beta.0", - "file-loader": "^1.1.11", - "flow-bin": "^0.77.0", - "fs-promise": "^0.5.0", - "gh-pages": "^1.2.0", - "glob": "^7.0.3", - "html-loader": "^0.4.3", - "html-webpack-plugin": "^3.0.6", - "karma": "^0.13.22", - "karma-chrome-launcher": "^0.2.3", - "karma-cli": "^0.1.2", - "karma-coverage": "^0.5.5", - "karma-coveralls": "^1.1.2", - "karma-firefox-launcher": "^0.1.7", - "karma-mocha": "^0.2.2", - "karma-mocha-reporter": "^2.0.0", - "karma-sinon-chai": "^1.2.0", - "karma-sourcemap-loader": "^0.3.7", - "karma-webpack": "^1.7.0", - "less": "^2.7.1", - "less-loader": "^4.1.0", - "lodash": "^4.11.1", - "lodash-webpack-plugin": "^0.11.5", - "mocha": "^2.5.3", - "output-file-sync": "^1.1.1", - "postcss-loader": "^2.0.9", - "rimraf": "^2.5.2", - "sinon": "^1.17.4", - "sinon-chai": "^2.8.0", - "style-loader": "^0.20.3", - "svg-sprite-loader": "^3.7.1", - "transform-loader": "^0.2.3", - "url-loader": "^0.5.7", - "webpack": "^4.8.1", - "webpack-bundle-analyzer": "^2.11.1", - "webpack-cli": "^2.1.3", - "webpack-dev-server": "^3.1.4", - "why-did-you-update": "^0.1.1" + "@babel/cli": "^7.7.0", + "@babel/core": "^7.7.2", + "@babel/plugin-proposal-class-properties": "^7.0.0", + "@babel/plugin-proposal-export-default-from": "^7.12.13", + "@babel/plugin-proposal-export-namespace-from": "^7.12.13", + "@babel/plugin-proposal-optional-chaining": "^7.6.0", + "@babel/plugin-transform-runtime": "^7.1.0", + "@babel/preset-env": "^7.7.7", + "@babel/preset-react": "^7.7.4", + "@babel/preset-typescript": "^7.12.7", + "@svgr/webpack": "^6.3.1", + "@types/jest": "^28.1.4", + "@types/node": "^18.0.3", + "@types/react": "^17.0.0", + "@types/react-dom": "^17.0.0", + "@typescript-eslint/eslint-plugin": "^5.30.5", + "@typescript-eslint/parser": "^5.30.5", + "autoprefixer": "^10.4.7", + "babel-loader": "^8.1.0", + "babel-plugin-module-resolver": "^4.1.0", + "conventional-changelog-cli": "^2.2.2", + "css-loader": "^6.7.1", + "cssnano": "^5.1.12", + "eslint": "^7.25.0", + "eslint-config-prettier": "^8.3.0", + "eslint-plugin-babel": "^5.3.1", + "eslint-plugin-import": "^2.22.1", + "eslint-plugin-react": "^7.23.2", + "eslint-plugin-react-hooks": "^4.2.0", + "file-loader": "^6.2.0", + "gh-pages": "^1.1.0", + "html-webpack-plugin": "^5.5.0", + "husky": "^8.0.1", + "less": "^4.1.3", + "less-loader": "^11.0.0", + "mini-css-extract-plugin": "^2.6.1", + "postcss": "^8.4.14", + "prettier": "^2.4.1", + "typescript": "^4.6.4", + "url-loader": "^4.1.1", + "webpack": "^5.73.0", + "webpack-cli": "^4.10.0", + "webpack-dev-server": "^3.11.2" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml new file mode 100644 index 0000000..2eff727 --- /dev/null +++ b/pnpm-lock.yaml @@ -0,0 +1,8693 @@ +lockfileVersion: 5.4 + +specifiers: + '@babel/cli': ^7.7.0 + '@babel/core': ^7.7.2 + '@babel/plugin-proposal-class-properties': ^7.0.0 + '@babel/plugin-proposal-export-default-from': ^7.12.13 + '@babel/plugin-proposal-export-namespace-from': ^7.12.13 + '@babel/plugin-proposal-optional-chaining': ^7.6.0 + '@babel/plugin-transform-runtime': ^7.1.0 + '@babel/preset-env': ^7.7.7 + '@babel/preset-react': ^7.7.4 + '@babel/preset-typescript': ^7.12.7 + '@babel/runtime': ^7.18.9 + '@faker-js/faker': ^7.4.0 + '@rsuite/icons': ^1.0.2 + '@svgr/webpack': ^6.3.1 + '@types/jest': ^28.1.4 + '@types/node': ^18.0.3 + '@types/react': ^17.0.0 + '@types/react-dom': ^17.0.0 + '@typescript-eslint/eslint-plugin': ^5.30.5 + '@typescript-eslint/parser': ^5.30.5 + autoprefixer: ^10.4.7 + babel-loader: ^8.1.0 + babel-plugin-module-resolver: ^4.1.0 + chartist: ^0.10.1 + classnames: ^2.3.1 + conventional-changelog-cli: ^2.2.2 + css-loader: ^6.7.1 + cssnano: ^5.1.12 + eslint: ^7.25.0 + eslint-config-prettier: ^8.3.0 + eslint-plugin-babel: ^5.3.1 + eslint-plugin-import: ^2.22.1 + eslint-plugin-react: ^7.23.2 + eslint-plugin-react-hooks: ^4.2.0 + faker: ^6.6.6 + file-loader: ^6.2.0 + gh-pages: ^1.1.0 + html-webpack-plugin: ^5.5.0 + husky: ^8.0.1 + less: ^4.1.3 + less-loader: ^11.0.0 + mini-css-extract-plugin: ^2.6.1 + postcss: ^8.4.14 + prettier: ^2.4.1 + prop-types: ^15.6.0 + react: ^18.2.0 + react-chartist: ^0.14.4 + react-dom: ^18.2.0 + react-intl: ^6.0.5 + react-router: 6.3.0 + react-router-dom: ^6.3.0 + rsuite: 5.17.0-beta.1 + typescript: ^4.6.4 + url-loader: ^4.1.1 + webpack: ^5.73.0 + webpack-cli: ^4.10.0 + webpack-dev-server: ^3.11.2 + +dependencies: + '@babel/runtime': 7.18.9 + '@faker-js/faker': 7.4.0 + '@rsuite/icons': 1.0.2_biqbaboplfbrettd7655fr4n2y + chartist: 0.10.1 + classnames: 2.3.1 + faker: 6.6.6 + prop-types: 15.8.1 + react: 18.2.0 + react-chartist: 0.14.4_uq4xdmbranb5dmrhsn4hftzjqe + react-dom: 18.2.0_react@18.2.0 + react-intl: 6.0.5_qtbnez4q7bzoc4eqybg3efzzxe + react-router: 6.3.0_react@18.2.0 + react-router-dom: 6.3.0_biqbaboplfbrettd7655fr4n2y + rsuite: 5.17.0-beta.1_biqbaboplfbrettd7655fr4n2y + +devDependencies: + '@babel/cli': 7.18.10_@babel+core@7.18.10 + '@babel/core': 7.18.10 + '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-proposal-export-default-from': 7.18.10_@babel+core@7.18.10 + '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-transform-runtime': 7.18.10_@babel+core@7.18.10 + '@babel/preset-env': 7.18.10_@babel+core@7.18.10 + '@babel/preset-react': 7.18.6_@babel+core@7.18.10 + '@babel/preset-typescript': 7.18.6_@babel+core@7.18.10 + '@svgr/webpack': 6.3.1 + '@types/jest': 28.1.7 + '@types/node': 18.7.6 + '@types/react': 17.0.48 + '@types/react-dom': 17.0.17 + '@typescript-eslint/eslint-plugin': 5.33.1_x7odfvjd3i24ajk3p6cf3dj5pm + '@typescript-eslint/parser': 5.33.1_hxadhbs2xogijvk7vq4t2azzbu + autoprefixer: 10.4.8_postcss@8.4.16 + babel-loader: 8.2.5_xc6oct4hcywdrbo4ned6ytbybm + babel-plugin-module-resolver: 4.1.0 + conventional-changelog-cli: 2.2.2 + css-loader: 6.7.1_webpack@5.74.0 + cssnano: 5.1.13_postcss@8.4.16 + eslint: 7.32.0 + eslint-config-prettier: 8.5.0_eslint@7.32.0 + eslint-plugin-babel: 5.3.1_eslint@7.32.0 + eslint-plugin-import: 2.26.0_nu5s4r56nfvoalq5ozim776tpu + eslint-plugin-react: 7.30.1_eslint@7.32.0 + eslint-plugin-react-hooks: 4.6.0_eslint@7.32.0 + file-loader: 6.2.0_webpack@5.74.0 + gh-pages: 1.2.0 + html-webpack-plugin: 5.5.0_webpack@5.74.0 + husky: 8.0.1 + less: 4.1.3 + less-loader: 11.0.0_less@4.1.3+webpack@5.74.0 + mini-css-extract-plugin: 2.6.1_webpack@5.74.0 + postcss: 8.4.16 + prettier: 2.7.1 + typescript: 4.7.4 + url-loader: 4.1.1_u4acmn7fe6yqgbrqzialkgh5lu + webpack: 5.74.0_webpack-cli@4.10.0 + webpack-cli: 4.10.0_enc4da54mvzgn7gkchuyvuyzgu + webpack-dev-server: 3.11.3_5v66e2inugklgvlh4huuavolfq + +packages: + + /@ampproject/remapping/2.2.0: + resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==} + engines: {node: '>=6.0.0'} + dependencies: + '@jridgewell/gen-mapping': 0.1.1 + '@jridgewell/trace-mapping': 0.3.15 + dev: true + + /@babel/cli/7.18.10_@babel+core@7.18.10: + resolution: {integrity: sha512-dLvWH+ZDFAkd2jPBSghrsFBuXrREvFwjpDycXbmUoeochqKYe4zNSLEJYErpLg8dvxvZYe79/MkN461XCwpnGw==} + engines: {node: '>=6.9.0'} + hasBin: true + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@jridgewell/trace-mapping': 0.3.15 + commander: 4.1.1 + convert-source-map: 1.8.0 + fs-readdir-recursive: 1.1.0 + glob: 7.2.3 + make-dir: 2.1.0 + slash: 2.0.0 + optionalDependencies: + '@nicolo-ribaudo/chokidar-2': 2.1.8-no-fsevents.3 + chokidar: 3.5.3 + dev: true + + /@babel/code-frame/7.12.11: + resolution: {integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==} + dependencies: + '@babel/highlight': 7.18.6 + dev: true + + /@babel/code-frame/7.18.6: + resolution: {integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/highlight': 7.18.6 + dev: true + + /@babel/compat-data/7.18.8: + resolution: {integrity: sha512-HSmX4WZPPK3FUxYp7g2T6EyO8j96HlZJlxmKPSh6KAcqwyDrfx7hKjXpAW/0FhFfTJsR0Yt4lAjLI2coMptIHQ==} + engines: {node: '>=6.9.0'} + dev: true + + /@babel/core/7.18.10: + resolution: {integrity: sha512-JQM6k6ENcBFKVtWvLavlvi/mPcpYZ3+R+2EySDEMSMbp7Mn4FexlbbJVrx2R7Ijhr01T8gyqrOaABWIOgxeUyw==} + engines: {node: '>=6.9.0'} + dependencies: + '@ampproject/remapping': 2.2.0 + '@babel/code-frame': 7.18.6 + '@babel/generator': 7.18.12 + '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.10 + '@babel/helper-module-transforms': 7.18.9 + '@babel/helpers': 7.18.9 + '@babel/parser': 7.18.11 + '@babel/template': 7.18.10 + '@babel/traverse': 7.18.11 + '@babel/types': 7.18.10 + convert-source-map: 1.8.0 + debug: 4.3.4 + gensync: 1.0.0-beta.2 + json5: 2.2.1 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/generator/7.18.12: + resolution: {integrity: sha512-dfQ8ebCN98SvyL7IxNMCUtZQSq5R7kxgN+r8qYTGDmmSion1hX2C0zq2yo1bsCDhXixokv1SAWTZUMYbO/V5zg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.18.10 + '@jridgewell/gen-mapping': 0.3.2 + jsesc: 2.5.2 + dev: true + + /@babel/helper-annotate-as-pure/7.18.6: + resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.18.10 + dev: true + + /@babel/helper-builder-binary-assignment-operator-visitor/7.18.9: + resolution: {integrity: sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-explode-assignable-expression': 7.18.6 + '@babel/types': 7.18.10 + dev: true + + /@babel/helper-compilation-targets/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/compat-data': 7.18.8 + '@babel/core': 7.18.10 + '@babel/helper-validator-option': 7.18.6 + browserslist: 4.21.3 + semver: 6.3.0 + dev: true + + /@babel/helper-create-class-features-plugin/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-WvypNAYaVh23QcjpMR24CwZY2Nz6hqdOcFdPbNpV56hL5H6KiFheO7Xm1aPdlLQ7d5emYZX7VZwPp9x3z+2opw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-function-name': 7.18.9 + '@babel/helper-member-expression-to-functions': 7.18.9 + '@babel/helper-optimise-call-expression': 7.18.6 + '@babel/helper-replace-supers': 7.18.9 + '@babel/helper-split-export-declaration': 7.18.6 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/helper-create-regexp-features-plugin/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-7LcpH1wnQLGrI+4v+nPp+zUvIkF9x0ddv1Hkdue10tg3gmRnLy97DXh4STiOf1qeIInyD69Qv5kKSZzKD8B/7A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-annotate-as-pure': 7.18.6 + regexpu-core: 5.1.0 + dev: true + + /@babel/helper-define-polyfill-provider/0.3.2_@babel+core@7.18.10: + resolution: {integrity: sha512-r9QJJ+uDWrd+94BSPcP6/de67ygLtvVy6cK4luE6MOuDsZIdoaPBnfSpbO/+LTifjPckbKXRuI9BB/Z2/y3iTg==} + peerDependencies: + '@babel/core': ^7.4.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + debug: 4.3.4 + lodash.debounce: 4.0.8 + resolve: 1.22.1 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/helper-environment-visitor/7.18.9: + resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==} + engines: {node: '>=6.9.0'} + dev: true + + /@babel/helper-explode-assignable-expression/7.18.6: + resolution: {integrity: sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.18.10 + dev: true + + /@babel/helper-function-name/7.18.9: + resolution: {integrity: sha512-fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/template': 7.18.10 + '@babel/types': 7.18.10 + dev: true + + /@babel/helper-hoist-variables/7.18.6: + resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.18.10 + dev: true + + /@babel/helper-member-expression-to-functions/7.18.9: + resolution: {integrity: sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.18.10 + dev: true + + /@babel/helper-module-imports/7.18.6: + resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.18.10 + dev: true + + /@babel/helper-module-transforms/7.18.9: + resolution: {integrity: sha512-KYNqY0ICwfv19b31XzvmI/mfcylOzbLtowkw+mfvGPAQ3kfCnMLYbED3YecL5tPd8nAYFQFAd6JHp2LxZk/J1g==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-module-imports': 7.18.6 + '@babel/helper-simple-access': 7.18.6 + '@babel/helper-split-export-declaration': 7.18.6 + '@babel/helper-validator-identifier': 7.18.6 + '@babel/template': 7.18.10 + '@babel/traverse': 7.18.11 + '@babel/types': 7.18.10 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/helper-optimise-call-expression/7.18.6: + resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.18.10 + dev: true + + /@babel/helper-plugin-utils/7.18.9: + resolution: {integrity: sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==} + engines: {node: '>=6.9.0'} + dev: true + + /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-wrap-function': 7.18.11 + '@babel/types': 7.18.10 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/helper-replace-supers/7.18.9: + resolution: {integrity: sha512-dNsWibVI4lNT6HiuOIBr1oyxo40HvIVmbwPUm3XZ7wMh4k2WxrxTqZwSqw/eEmXDS9np0ey5M2bz9tBmO9c+YQ==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-member-expression-to-functions': 7.18.9 + '@babel/helper-optimise-call-expression': 7.18.6 + '@babel/traverse': 7.18.11 + '@babel/types': 7.18.10 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/helper-simple-access/7.18.6: + resolution: {integrity: sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.18.10 + dev: true + + /@babel/helper-skip-transparent-expression-wrappers/7.18.9: + resolution: {integrity: sha512-imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.18.10 + dev: true + + /@babel/helper-split-export-declaration/7.18.6: + resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.18.10 + dev: true + + /@babel/helper-string-parser/7.18.10: + resolution: {integrity: sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==} + engines: {node: '>=6.9.0'} + dev: true + + /@babel/helper-validator-identifier/7.18.6: + resolution: {integrity: sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==} + engines: {node: '>=6.9.0'} + dev: true + + /@babel/helper-validator-option/7.18.6: + resolution: {integrity: sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==} + engines: {node: '>=6.9.0'} + dev: true + + /@babel/helper-wrap-function/7.18.11: + resolution: {integrity: sha512-oBUlbv+rjZLh2Ks9SKi4aL7eKaAXBWleHzU89mP0G6BMUlRxSckk9tSIkgDGydhgFxHuGSlBQZfnaD47oBEB7w==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-function-name': 7.18.9 + '@babel/template': 7.18.10 + '@babel/traverse': 7.18.11 + '@babel/types': 7.18.10 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/helpers/7.18.9: + resolution: {integrity: sha512-Jf5a+rbrLoR4eNdUmnFu8cN5eNJT6qdTdOg5IHIzq87WwyRw9PwguLFOWYgktN/60IP4fgDUawJvs7PjQIzELQ==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/template': 7.18.10 + '@babel/traverse': 7.18.11 + '@babel/types': 7.18.10 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/highlight/7.18.6: + resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-validator-identifier': 7.18.6 + chalk: 2.4.2 + js-tokens: 4.0.0 + dev: true + + /@babel/parser/7.18.11: + resolution: {integrity: sha512-9JKn5vN+hDt0Hdqn1PiJ2guflwP+B6Ga8qbDuoF0PzzVhrzsKIJo8yGqVk6CmMHiMei9w1C1Bp9IMJSIK+HPIQ==} + engines: {node: '>=6.0.0'} + hasBin: true + dependencies: + '@babel/types': 7.18.10 + dev: true + + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.13.0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-skip-transparent-expression-wrappers': 7.18.9 + '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.18.10 + dev: true + + /@babel/plugin-proposal-async-generator-functions/7.18.10_@babel+core@7.18.10: + resolution: {integrity: sha512-1mFuY2TOsR1hxbjCo4QL+qlIjV07p4H4EUYw2J/WCqsvFV6V9X9z9YhXbWndc/4fw+hYGlDT7egYxliMp5O6Ew==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.10 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-create-class-features-plugin': 7.18.9_@babel+core@7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-proposal-class-static-block/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.12.0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-create-class-features-plugin': 7.18.9_@babel+core@7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.18.10 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.10 + dev: true + + /@babel/plugin-proposal-export-default-from/7.18.10_@babel+core@7.18.10: + resolution: {integrity: sha512-5H2N3R2aQFxkV4PIBUR/i7PUSwgTZjouJKzI8eKswfIjT0PhvzkPn0t0wIS5zn6maQuvtT0t1oHtMUz61LOuow==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-export-default-from': 7.18.6_@babel+core@7.18.10 + dev: true + + /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.10 + dev: true + + /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.10 + dev: true + + /@babel/plugin-proposal-logical-assignment-operators/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.10 + dev: true + + /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.10 + dev: true + + /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.10 + dev: true + + /@babel/plugin-proposal-object-rest-spread/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.18.8 + '@babel/core': 7.18.10 + '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.10 + '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.18.10 + dev: true + + /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.10 + dev: true + + /@babel/plugin-proposal-optional-chaining/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-skip-transparent-expression-wrappers': 7.18.9 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.10 + dev: true + + /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-create-class-features-plugin': 7.18.9_@babel+core@7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-proposal-private-property-in-object/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-create-class-features-plugin': 7.18.9_@babel+core@7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.10 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} + engines: {node: '>=4'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.18.10: + resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.18.10: + resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.18.10: + resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.18.10: + resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-syntax-export-default-from/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-Kr//z3ujSVNx6E9z9ih5xXXMqK07VVTuqPmqGe6Mss/zW5XPeLZeSDZoP9ab/hT4wPKqAgjl2PnhPrcpk8Seew==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.18.10: + resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-syntax-import-assertions/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-/DU3RXad9+bZwrgWJQKbr39gYbJpLJHezqEzRzi/BHRlJ9zsQb4CK2CA/5apllXNomwA1qHwzvHl+AdEmC5krQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.18.10: + resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.18.10: + resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.18.10: + resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.18.10: + resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.18.10: + resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.18.10: + resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.18.10: + resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.18.10: + resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.18.10: + resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-syntax-typescript/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-transform-async-to-generator/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-module-imports': 7.18.6 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.18.10 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-transform-block-scoping/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-transform-classes/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-EkRQxsxoytpTlKJmSPYrsOMjCILacAjtSVkd4gChEe2kXjFCun3yohhW5I7plXJhCemM0gKsaGMcO8tinvCA5g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-function-name': 7.18.9 + '@babel/helper-optimise-call-expression': 7.18.6 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-replace-supers': 7.18.9 + '@babel/helper-split-export-declaration': 7.18.6 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-computed-properties/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-transform-destructuring/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-p5VCYNddPLkZTq4XymQIaIfZNJwT9YsjkPOhkVEqt6QIpQFZVM9IltqqYpOEkJoN1DPznmxUDyZ5CTZs/ZCuHA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.18.10: + resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.10 + '@babel/helper-function-name': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-transform-literals/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-transform-modules-amd/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-module-transforms': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 + babel-plugin-dynamic-import-node: 2.3.3 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-modules-commonjs/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-module-transforms': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-simple-access': 7.18.6 + babel-plugin-dynamic-import-node: 2.3.3 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-modules-systemjs/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-zY/VSIbbqtoRoJKo2cDTewL364jSlZGvn0LKOf9ntbfxOvjfmyrdtEEOAdswOswhZEb8UH3jDkCKHd1sPgsS0A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-hoist-variables': 7.18.6 + '@babel/helper-module-transforms': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-validator-identifier': 7.18.6 + babel-plugin-dynamic-import-node: 2.3.3 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-module-transforms': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-named-capturing-groups-regex/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-UmEOGF8XgaIqD74bC8g7iV3RYj8lMf0Bw7NJzvnS9qQhM4mg+1WHKotUIdjxgD2RGrgFLZZPCFPFj3P/kVDYhg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-replace-supers': 7.18.9 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-parameters/7.18.8_@babel+core@7.18.10: + resolution: {integrity: sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-transform-react-constant-elements/7.18.12_@babel+core@7.18.10: + resolution: {integrity: sha512-Q99U9/ttiu+LMnRU8psd23HhvwXmKWDQIpocm0JKaICcZHnw+mdQbHm6xnSy7dOl8I5PELakYtNBubNQlBXbZw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/plugin-transform-react-jsx': 7.18.10_@babel+core@7.18.10 + dev: true + + /@babel/plugin-transform-react-jsx/7.18.10_@babel+core@7.18.10: + resolution: {integrity: sha512-gCy7Iikrpu3IZjYZolFE4M1Sm+nrh1/6za2Ewj77Z+XirT4TsbJcvOFOyF+fRPwU6AKKK136CZxx6L8AbSFG6A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-module-imports': 7.18.6 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.10 + '@babel/types': 7.18.10 + dev: true + + /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-transform-regenerator/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + regenerator-transform: 0.15.0 + dev: true + + /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-transform-runtime/7.18.10_@babel+core@7.18.10: + resolution: {integrity: sha512-q5mMeYAdfEbpBAgzl7tBre/la3LeCxmDO1+wMXRdPWbcoMjR3GiXlCLk7JBZVVye0bqTGNMbt0yYVXX1B1jEWQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-module-imports': 7.18.6 + '@babel/helper-plugin-utils': 7.18.9 + babel-plugin-polyfill-corejs2: 0.3.2_@babel+core@7.18.10 + babel-plugin-polyfill-corejs3: 0.5.3_@babel+core@7.18.10 + babel-plugin-polyfill-regenerator: 0.4.0_@babel+core@7.18.10 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-transform-spread/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-39Q814wyoOPtIB/qGopNIL9xDChOE1pNU0ZY5dO0owhiVt/5kFm4li+/bBtwc7QotG0u5EPzqhZdjMtmqBqyQA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-skip-transparent-expression-wrappers': 7.18.9 + dev: true + + /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-transform-typescript/7.18.12_@babel+core@7.18.10: + resolution: {integrity: sha512-2vjjam0cum0miPkenUbQswKowuxs/NjMwIKEq0zwegRxXk12C9YOF9STXnaUptITOtOJHKHpzvvWYOjbm6tc0w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-create-class-features-plugin': 7.18.9_@babel+core@7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.18.10 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.18.10: + resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: true + + /@babel/preset-env/7.18.10_@babel+core@7.18.10: + resolution: {integrity: sha512-wVxs1yjFdW3Z/XkNfXKoblxoHgbtUF7/l3PvvP4m02Qz9TZ6uZGxRVYjSQeR87oQmHco9zWitW5J82DJ7sCjvA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.18.8 + '@babel/core': 7.18.10 + '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-validator-option': 7.18.6 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-proposal-async-generator-functions': 7.18.10_@babel+core@7.18.10 + '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-proposal-class-static-block': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-proposal-logical-assignment-operators': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-proposal-object-rest-spread': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.10 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.18.10 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.18.10 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.10 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.10 + '@babel/plugin-syntax-import-assertions': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.10 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.10 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.10 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.10 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.10 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.10 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.10 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.10 + '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.18.10 + '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-block-scoping': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-transform-classes': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-transform-destructuring': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.18.10 + '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-modules-amd': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-modules-commonjs': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-modules-systemjs': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-named-capturing-groups-regex': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.18.10 + '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-regenerator': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-spread': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.18.10 + '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.18.10 + '@babel/preset-modules': 0.1.5_@babel+core@7.18.10 + '@babel/types': 7.18.10 + babel-plugin-polyfill-corejs2: 0.3.2_@babel+core@7.18.10 + babel-plugin-polyfill-corejs3: 0.5.3_@babel+core@7.18.10 + babel-plugin-polyfill-regenerator: 0.4.0_@babel+core@7.18.10 + core-js-compat: 3.24.1 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/preset-modules/0.1.5_@babel+core@7.18.10: + resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.18.10 + '@babel/types': 7.18.10 + esutils: 2.0.3 + dev: true + + /@babel/preset-react/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-validator-option': 7.18.6 + '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-react-jsx': 7.18.10_@babel+core@7.18.10 + '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.18.10 + dev: true + + /@babel/preset-typescript/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-validator-option': 7.18.6 + '@babel/plugin-transform-typescript': 7.18.12_@babel+core@7.18.10 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/runtime/7.18.9: + resolution: {integrity: sha512-lkqXDcvlFT5rvEjiu6+QYO+1GXrEHRo2LOtS7E4GtX5ESIZOgepqsZBVIj6Pv+a6zqsya9VCgiK1KAK4BvJDAw==} + engines: {node: '>=6.9.0'} + dependencies: + regenerator-runtime: 0.13.9 + + /@babel/template/7.18.10: + resolution: {integrity: sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.18.6 + '@babel/parser': 7.18.11 + '@babel/types': 7.18.10 + dev: true + + /@babel/traverse/7.18.11: + resolution: {integrity: sha512-TG9PiM2R/cWCAy6BPJKeHzNbu4lPzOSZpeMfeNErskGpTJx6trEvFaVCbDvpcxwy49BKWmEPwiW8mrysNiDvIQ==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.18.6 + '@babel/generator': 7.18.12 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-function-name': 7.18.9 + '@babel/helper-hoist-variables': 7.18.6 + '@babel/helper-split-export-declaration': 7.18.6 + '@babel/parser': 7.18.11 + '@babel/types': 7.18.10 + debug: 4.3.4 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/types/7.18.10: + resolution: {integrity: sha512-MJvnbEiiNkpjo+LknnmRrqbY1GPUUggjv+wQVjetM/AONoupqRALB7I6jGqNUAZsKcRIEu2J6FRFvsczljjsaQ==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-string-parser': 7.18.10 + '@babel/helper-validator-identifier': 7.18.6 + to-fast-properties: 2.0.0 + dev: true + + /@discoveryjs/json-ext/0.5.7: + resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==} + engines: {node: '>=10.0.0'} + dev: true + + /@eslint/eslintrc/0.4.3: + resolution: {integrity: sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==} + engines: {node: ^10.12.0 || >=12.0.0} + dependencies: + ajv: 6.12.6 + debug: 4.3.4 + espree: 7.3.1 + globals: 13.17.0 + ignore: 4.0.6 + import-fresh: 3.3.0 + js-yaml: 3.14.1 + minimatch: 3.1.2 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + dev: true + + /@faker-js/faker/7.4.0: + resolution: {integrity: sha512-xDd3Tvkt2jgkx1LkuwwxpNBy/Oe+LkZBTwkgEFTiWpVSZgQ5sc/LenbHKRHbFl0dq/KFeeq/szyyPtpJRKY0fg==} + engines: {node: '>=14.0.0', npm: '>=6.0.0'} + dev: false + + /@formatjs/ecma402-abstract/1.11.8: + resolution: {integrity: sha512-fgLqyWlwmTEuqV/TSLEL/t9JOmHNLFvCdgzXB0jc2w+WOItPCOJ1T0eyN6fQBQKRPfSqqNlu+kWj7ijcOVTVVQ==} + dependencies: + '@formatjs/intl-localematcher': 0.2.28 + tslib: 2.4.0 + dev: false + + /@formatjs/fast-memoize/1.2.4: + resolution: {integrity: sha512-9ARYoLR8AEzXvj2nYrOVHY/h1dDMDWGTnKDLXSISF1uoPakSmfcZuSqjiqZX2wRkEUimPxdwTu/agyozBtZRHA==} + dependencies: + tslib: 2.4.0 + dev: false + + /@formatjs/icu-messageformat-parser/2.1.4: + resolution: {integrity: sha512-3PqMvKWV1oyok0BuiXUAHIaotdhdTJw6OICqCZbfUgKT+ZRwRWO4IlCgvXJeCITaKS5p+PY0XXKjf/vUyIpWjQ==} + dependencies: + '@formatjs/ecma402-abstract': 1.11.8 + '@formatjs/icu-skeleton-parser': 1.3.10 + tslib: 2.4.0 + dev: false + + /@formatjs/icu-skeleton-parser/1.3.10: + resolution: {integrity: sha512-kXJmtLDqFF5aLTf8IxdJXnhrIX1Qb4Qp3a9jqRecGDYfzOa9hMhi9U0nKyhrJJ4cXxBzptcgb+LWkyeHL6nlBQ==} + dependencies: + '@formatjs/ecma402-abstract': 1.11.8 + tslib: 2.4.0 + dev: false + + /@formatjs/intl-displaynames/6.0.3: + resolution: {integrity: sha512-Mxh6W1VOlmiEvO/QPBrBQHlXrIn5VxjJWyyEI0V7ZHNGl0ee8AjSlq7vIJG8GodRJqGUuutF6N3OB/6qFv0YWg==} + dependencies: + '@formatjs/ecma402-abstract': 1.11.8 + '@formatjs/intl-localematcher': 0.2.28 + tslib: 2.4.0 + dev: false + + /@formatjs/intl-listformat/7.0.3: + resolution: {integrity: sha512-ampNLRGZl/08epHa3i5sRmcHGLneC6JrknexbbgnexYFNSmJ6AbL/dCzgrQzw2Efl+5AZK7UbNFxcDYY3RePvw==} + dependencies: + '@formatjs/ecma402-abstract': 1.11.8 + '@formatjs/intl-localematcher': 0.2.28 + tslib: 2.4.0 + dev: false + + /@formatjs/intl-localematcher/0.2.28: + resolution: {integrity: sha512-FLsc6Gifs1np/8HnCn/7Q+lHMmenrD5fuDhRT82yj0gi9O19kfaFwjQUw1gZsyILuRyT93GuzdifHj7TKRhBcw==} + dependencies: + tslib: 2.4.0 + dev: false + + /@formatjs/intl/2.3.1_typescript@4.7.4: + resolution: {integrity: sha512-f06qZ/ukpeN24gc01qFjh3P+r3FU/ikY4yG+fDJu6dPNvpUQzDy98lYogA1dr6ig2UtrnoEk3xncyFPL1e9cZw==} + peerDependencies: + typescript: ^4.5 + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@formatjs/ecma402-abstract': 1.11.8 + '@formatjs/fast-memoize': 1.2.4 + '@formatjs/icu-messageformat-parser': 2.1.4 + '@formatjs/intl-displaynames': 6.0.3 + '@formatjs/intl-listformat': 7.0.3 + intl-messageformat: 10.1.1 + tslib: 2.4.0 + typescript: 4.7.4 + dev: false + + /@humanwhocodes/config-array/0.5.0: + resolution: {integrity: sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==} + engines: {node: '>=10.10.0'} + dependencies: + '@humanwhocodes/object-schema': 1.2.1 + debug: 4.3.4 + minimatch: 3.1.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@humanwhocodes/object-schema/1.2.1: + resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} + dev: true + + /@hutson/parse-repository-url/3.0.2: + resolution: {integrity: sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==} + engines: {node: '>=6.9.0'} + dev: true + + /@jest/expect-utils/28.1.3: + resolution: {integrity: sha512-wvbi9LUrHJLn3NlDW6wF2hvIMtd4JUl2QNVrjq+IBSHirgfrR3o9RnVtxzdEGO2n9JyIWwHnLfby5KzqBGg2YA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + jest-get-type: 28.0.2 + dev: true + + /@jest/schemas/28.1.3: + resolution: {integrity: sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@sinclair/typebox': 0.24.28 + dev: true + + /@jest/types/28.1.3: + resolution: {integrity: sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@jest/schemas': 28.1.3 + '@types/istanbul-lib-coverage': 2.0.4 + '@types/istanbul-reports': 3.0.1 + '@types/node': 18.7.6 + '@types/yargs': 17.0.11 + chalk: 4.1.2 + dev: true + + /@jridgewell/gen-mapping/0.1.1: + resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==} + engines: {node: '>=6.0.0'} + dependencies: + '@jridgewell/set-array': 1.1.2 + '@jridgewell/sourcemap-codec': 1.4.14 + dev: true + + /@jridgewell/gen-mapping/0.3.2: + resolution: {integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==} + engines: {node: '>=6.0.0'} + dependencies: + '@jridgewell/set-array': 1.1.2 + '@jridgewell/sourcemap-codec': 1.4.14 + '@jridgewell/trace-mapping': 0.3.15 + dev: true + + /@jridgewell/resolve-uri/3.1.0: + resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==} + engines: {node: '>=6.0.0'} + dev: true + + /@jridgewell/set-array/1.1.2: + resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} + engines: {node: '>=6.0.0'} + dev: true + + /@jridgewell/source-map/0.3.2: + resolution: {integrity: sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==} + dependencies: + '@jridgewell/gen-mapping': 0.3.2 + '@jridgewell/trace-mapping': 0.3.15 + dev: true + + /@jridgewell/sourcemap-codec/1.4.14: + resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==} + dev: true + + /@jridgewell/trace-mapping/0.3.15: + resolution: {integrity: sha512-oWZNOULl+UbhsgB51uuZzglikfIKSUBO/M9W2OfEjn7cmqoAiCgmv9lyACTUacZwBz0ITnJ2NqjU8Tx0DHL88g==} + dependencies: + '@jridgewell/resolve-uri': 3.1.0 + '@jridgewell/sourcemap-codec': 1.4.14 + dev: true + + /@juggle/resize-observer/3.3.1: + resolution: {integrity: sha512-zMM9Ds+SawiUkakS7y94Ymqx+S0ORzpG3frZirN3l+UlXUmSUR7hF4wxCVqW+ei94JzV5kt0uXBcoOEAuiydrw==} + dev: false + + /@nicolo-ribaudo/chokidar-2/2.1.8-no-fsevents.3: + resolution: {integrity: sha512-s88O1aVtXftvp5bCPB7WnmXc5IwOZZ7YPuwNPt+GtOOXpPvad1LfbmjYv+qII7zP6RU2QGnqve27dnLycEnyEQ==} + requiresBuild: true + dev: true + optional: true + + /@nodelib/fs.scandir/2.1.5: + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + engines: {node: '>= 8'} + dependencies: + '@nodelib/fs.stat': 2.0.5 + run-parallel: 1.2.0 + dev: true + + /@nodelib/fs.stat/2.0.5: + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} + engines: {node: '>= 8'} + dev: true + + /@nodelib/fs.walk/1.2.8: + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} + engines: {node: '>= 8'} + dependencies: + '@nodelib/fs.scandir': 2.1.5 + fastq: 1.13.0 + dev: true + + /@rsuite/icon-font/4.0.0: + resolution: {integrity: sha512-rZTgpTH3H3HLczCA2rnkWfoMKm0ZXoRzsrkVujfP/FfslnKUMvO6w56pa8pCvhWGpNEPUsLS2ULnFGpTEcup/Q==} + dev: false + + /@rsuite/icons/1.0.2_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-Y7vJNDQpJnFlyYSUXQ2iQ9Meg7+ZKcrIenhpYDdM3c7vYDE/L7pml+hrK28jk6QfV/QkVv5B504D+l7aM6AAJQ==} + peerDependencies: + react: '>=16.8.0' + react-dom: '>=16.8.0' + dependencies: + '@rsuite/icon-font': 4.0.0 + classnames: 2.3.1 + insert-css: 2.0.0 + lodash: 4.17.21 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + dev: false + + /@sinclair/typebox/0.24.28: + resolution: {integrity: sha512-dgJd3HLOkLmz4Bw50eZx/zJwtBq65nms3N9VBYu5LTjJ883oBFkTyXRlCB/ZGGwqYpJJHA5zW2Ibhl5ngITfow==} + dev: true + + /@svgr/babel-plugin-add-jsx-attribute/6.3.1_@babel+core@7.18.10: + resolution: {integrity: sha512-jDBKArXYO1u0B1dmd2Nf8Oy6aTF5vLDfLoO9Oon/GLkqZ/NiggYWZA+a2HpUMH4ITwNqS3z43k8LWApB8S583w==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + dev: true + + /@svgr/babel-plugin-remove-jsx-attribute/6.3.1_@babel+core@7.18.10: + resolution: {integrity: sha512-dQzyJ4prwjcFd929T43Z8vSYiTlTu8eafV40Z2gO7zy/SV5GT+ogxRJRBIKWomPBOiaVXFg3jY4S5hyEN3IBjQ==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + dev: true + + /@svgr/babel-plugin-remove-jsx-empty-expression/6.3.1_@babel+core@7.18.10: + resolution: {integrity: sha512-HBOUc1XwSU67fU26V5Sfb8MQsT0HvUyxru7d0oBJ4rA2s4HW3PhyAPC7fV/mdsSGpAvOdd8Wpvkjsr0fWPUO7A==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + dev: true + + /@svgr/babel-plugin-replace-jsx-attribute-value/6.3.1_@babel+core@7.18.10: + resolution: {integrity: sha512-C12e6aN4BXAolRrI601gPn5MDFCRHO7C4TM8Kks+rDtl8eEq+NN1sak0eAzJu363x3TmHXdZn7+Efd2nr9I5dA==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + dev: true + + /@svgr/babel-plugin-svg-dynamic-title/6.3.1_@babel+core@7.18.10: + resolution: {integrity: sha512-6NU55Mmh3M5u2CfCCt6TX29/pPneutrkJnnDCHbKZnjukZmmgUAZLtZ2g6ZoSPdarowaQmAiBRgAHqHmG0vuqA==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + dev: true + + /@svgr/babel-plugin-svg-em-dimensions/6.3.1_@babel+core@7.18.10: + resolution: {integrity: sha512-HV1NGHYTTe1vCNKlBgq/gKuCSfaRlKcHIADn7P8w8U3Zvujdw1rmusutghJ1pZJV7pDt3Gt8ws+SVrqHnBO/Qw==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + dev: true + + /@svgr/babel-plugin-transform-react-native-svg/6.3.1_@babel+core@7.18.10: + resolution: {integrity: sha512-2wZhSHvTolFNeKDAN/ZmIeSz2O9JSw72XD+o2bNp2QAaWqa8KGpn5Yk5WHso6xqfSAiRzAE+GXlsrBO4UP9LLw==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + dev: true + + /@svgr/babel-plugin-transform-svg-component/6.3.1_@babel+core@7.18.10: + resolution: {integrity: sha512-cZ8Tr6ZAWNUFfDeCKn/pGi976iWSkS8ijmEYKosP+6ktdZ7lW9HVLHojyusPw3w0j8PI4VBeWAXAmi/2G7owxw==} + engines: {node: '>=12'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + dev: true + + /@svgr/babel-preset/6.3.1_@babel+core@7.18.10: + resolution: {integrity: sha512-tQtWtzuMMQ3opH7je+MpwfuRA1Hf3cKdSgTtAYwOBDfmhabP7rcTfBi3E7V3MuwJNy/Y02/7/RutvwS1W4Qv9g==} + engines: {node: '>=10'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@svgr/babel-plugin-add-jsx-attribute': 6.3.1_@babel+core@7.18.10 + '@svgr/babel-plugin-remove-jsx-attribute': 6.3.1_@babel+core@7.18.10 + '@svgr/babel-plugin-remove-jsx-empty-expression': 6.3.1_@babel+core@7.18.10 + '@svgr/babel-plugin-replace-jsx-attribute-value': 6.3.1_@babel+core@7.18.10 + '@svgr/babel-plugin-svg-dynamic-title': 6.3.1_@babel+core@7.18.10 + '@svgr/babel-plugin-svg-em-dimensions': 6.3.1_@babel+core@7.18.10 + '@svgr/babel-plugin-transform-react-native-svg': 6.3.1_@babel+core@7.18.10 + '@svgr/babel-plugin-transform-svg-component': 6.3.1_@babel+core@7.18.10 + dev: true + + /@svgr/core/6.3.1: + resolution: {integrity: sha512-Sm3/7OdXbQreemf9aO25keerZSbnKMpGEfmH90EyYpj1e8wMD4TuwJIb3THDSgRMWk1kYJfSRulELBy4gVgZUA==} + engines: {node: '>=10'} + dependencies: + '@svgr/plugin-jsx': 6.3.1_@svgr+core@6.3.1 + camelcase: 6.3.0 + cosmiconfig: 7.0.1 + transitivePeerDependencies: + - supports-color + dev: true + + /@svgr/hast-util-to-babel-ast/6.3.1: + resolution: {integrity: sha512-NgyCbiTQIwe3wHe/VWOUjyxmpUmsrBjdoIxKpXt3Nqc3TN30BpJG22OxBvVzsAh9jqep0w0/h8Ywvdk3D9niNQ==} + engines: {node: '>=10'} + dependencies: + '@babel/types': 7.18.10 + entities: 4.3.1 + dev: true + + /@svgr/plugin-jsx/6.3.1_@svgr+core@6.3.1: + resolution: {integrity: sha512-r9+0mYG3hD4nNtUgsTXWGYJomv/bNd7kC16zvsM70I/bGeoCi/3lhTmYqeN6ChWX317OtQCSZZbH4wq9WwoXbw==} + engines: {node: '>=10'} + peerDependencies: + '@svgr/core': ^6.0.0 + dependencies: + '@babel/core': 7.18.10 + '@svgr/babel-preset': 6.3.1_@babel+core@7.18.10 + '@svgr/core': 6.3.1 + '@svgr/hast-util-to-babel-ast': 6.3.1 + svg-parser: 2.0.4 + transitivePeerDependencies: + - supports-color + dev: true + + /@svgr/plugin-svgo/6.3.1_@svgr+core@6.3.1: + resolution: {integrity: sha512-yJIjTDKPYqzFVjmsbH5EdIwEsmKxjxdXSGJVLeUgwZOZPAkNQmD1v7LDbOdOKbR44FG8465Du+zWPdbYGnbMbw==} + engines: {node: '>=10'} + peerDependencies: + '@svgr/core': ^6.0.0 + dependencies: + '@svgr/core': 6.3.1 + cosmiconfig: 7.0.1 + deepmerge: 4.2.2 + svgo: 2.8.0 + dev: true + + /@svgr/webpack/6.3.1: + resolution: {integrity: sha512-eODxwIUShLxSMaRjzJtrj9wg89D75JLczvWg9SaB5W+OtVTkiC1vdGd8+t+pf5fTlBOy4RRXAq7x1E3DUl3D0A==} + engines: {node: '>=10'} + dependencies: + '@babel/core': 7.18.10 + '@babel/plugin-transform-react-constant-elements': 7.18.12_@babel+core@7.18.10 + '@babel/preset-env': 7.18.10_@babel+core@7.18.10 + '@babel/preset-react': 7.18.6_@babel+core@7.18.10 + '@babel/preset-typescript': 7.18.6_@babel+core@7.18.10 + '@svgr/core': 6.3.1 + '@svgr/plugin-jsx': 6.3.1_@svgr+core@6.3.1 + '@svgr/plugin-svgo': 6.3.1_@svgr+core@6.3.1 + transitivePeerDependencies: + - supports-color + dev: true + + /@trysound/sax/0.2.0: + resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==} + engines: {node: '>=10.13.0'} + dev: true + + /@types/chai/4.3.3: + resolution: {integrity: sha512-hC7OMnszpxhZPduX+m+nrx+uFoLkWOMiR4oa/AZF3MuSETYTZmFfJAHqZEM8MVlvfG7BEUcgvtwoCTxBp6hm3g==} + dev: false + + /@types/eslint-scope/3.7.4: + resolution: {integrity: sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==} + dependencies: + '@types/eslint': 8.4.5 + '@types/estree': 0.0.51 + dev: true + + /@types/eslint/8.4.5: + resolution: {integrity: sha512-dhsC09y1gpJWnK+Ff4SGvCuSnk9DaU0BJZSzOwa6GVSg65XtTugLBITDAAzRU5duGBoXBHpdR/9jHGxJjNflJQ==} + dependencies: + '@types/estree': 0.0.51 + '@types/json-schema': 7.0.11 + dev: true + + /@types/estree/0.0.51: + resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==} + dev: true + + /@types/glob/7.2.0: + resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} + dependencies: + '@types/minimatch': 3.0.5 + '@types/node': 18.7.6 + dev: true + + /@types/hoist-non-react-statics/3.3.1: + resolution: {integrity: sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==} + dependencies: + '@types/react': 17.0.48 + hoist-non-react-statics: 3.3.2 + dev: false + + /@types/html-minifier-terser/6.1.0: + resolution: {integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==} + dev: true + + /@types/istanbul-lib-coverage/2.0.4: + resolution: {integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==} + dev: true + + /@types/istanbul-lib-report/3.0.0: + resolution: {integrity: sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==} + dependencies: + '@types/istanbul-lib-coverage': 2.0.4 + dev: true + + /@types/istanbul-reports/3.0.1: + resolution: {integrity: sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==} + dependencies: + '@types/istanbul-lib-report': 3.0.0 + dev: true + + /@types/jest/28.1.7: + resolution: {integrity: sha512-acDN4VHD40V24tgu0iC44jchXavRNVFXQ/E6Z5XNsswgoSO/4NgsXoEYmPUGookKldlZQyIpmrEXsHI9cA3ZTA==} + dependencies: + expect: 28.1.3 + pretty-format: 28.1.3 + dev: true + + /@types/json-schema/7.0.11: + resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==} + dev: true + + /@types/json5/0.0.29: + resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} + dev: true + + /@types/lodash/4.14.183: + resolution: {integrity: sha512-UXavyuxzXKMqJPEpFPri6Ku5F9af6ZJXUneHhvQJxavrEjuHkFp2YnDWHcxJiG7hk8ZkWqjcyNeW1s/smZv5cw==} + dev: false + + /@types/minimatch/3.0.5: + resolution: {integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==} + dev: true + + /@types/minimist/1.2.2: + resolution: {integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==} + dev: true + + /@types/node/18.7.6: + resolution: {integrity: sha512-EdxgKRXgYsNITy5mjjXjVE/CS8YENSdhiagGrLqjG0pvA2owgJ6i4l7wy/PFZGC0B1/H20lWKN7ONVDNYDZm7A==} + dev: true + + /@types/normalize-package-data/2.4.1: + resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==} + dev: true + + /@types/parse-json/4.0.0: + resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==} + dev: true + + /@types/prop-types/15.7.5: + resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==} + + /@types/react-dom/17.0.17: + resolution: {integrity: sha512-VjnqEmqGnasQKV0CWLevqMTXBYG9GbwuE6x3VetERLh0cq2LTptFE73MrQi2S7GkKXCf2GgwItB/melLnxfnsg==} + dependencies: + '@types/react': 17.0.48 + dev: true + + /@types/react-virtualized/9.21.21: + resolution: {integrity: sha512-Exx6I7p4Qn+BBA1SRyj/UwQlZ0I0Pq7g7uhAp0QQ4JWzZunqEqNBGTmCmMmS/3N9wFgAGWuBD16ap7k8Y14VPA==} + dependencies: + '@types/prop-types': 15.7.5 + '@types/react': 17.0.48 + dev: false + + /@types/react/17.0.48: + resolution: {integrity: sha512-zJ6IYlJ8cYYxiJfUaZOQee4lh99mFihBoqkOSEGV+dFi9leROW6+PgstzQ+w3gWTnUfskALtQPGHK6dYmPj+2A==} + dependencies: + '@types/prop-types': 15.7.5 + '@types/scheduler': 0.16.2 + csstype: 3.1.0 + + /@types/scheduler/0.16.2: + resolution: {integrity: sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==} + + /@types/stack-utils/2.0.1: + resolution: {integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==} + dev: true + + /@types/yargs-parser/21.0.0: + resolution: {integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==} + dev: true + + /@types/yargs/17.0.11: + resolution: {integrity: sha512-aB4y9UDUXTSMxmM4MH+YnuR0g5Cph3FLQBoWoMB21DSvFVAxRVEHEMx3TLh+zUZYMCQtKiqazz0Q4Rre31f/OA==} + dependencies: + '@types/yargs-parser': 21.0.0 + dev: true + + /@typescript-eslint/eslint-plugin/5.33.1_x7odfvjd3i24ajk3p6cf3dj5pm: + resolution: {integrity: sha512-S1iZIxrTvKkU3+m63YUOxYPKaP+yWDQrdhxTglVDVEVBf+aCSw85+BmJnyUaQQsk5TXFG/LpBu9fa+LrAQ91fQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + '@typescript-eslint/parser': ^5.0.0 + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/parser': 5.33.1_hxadhbs2xogijvk7vq4t2azzbu + '@typescript-eslint/scope-manager': 5.33.1 + '@typescript-eslint/type-utils': 5.33.1_hxadhbs2xogijvk7vq4t2azzbu + '@typescript-eslint/utils': 5.33.1_hxadhbs2xogijvk7vq4t2azzbu + debug: 4.3.4 + eslint: 7.32.0 + functional-red-black-tree: 1.0.1 + ignore: 5.2.0 + regexpp: 3.2.0 + semver: 7.3.7 + tsutils: 3.21.0_typescript@4.7.4 + typescript: 4.7.4 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/parser/5.33.1_hxadhbs2xogijvk7vq4t2azzbu: + resolution: {integrity: sha512-IgLLtW7FOzoDlmaMoXdxG8HOCByTBXrB1V2ZQYSEV1ggMmJfAkMWTwUjjzagS6OkfpySyhKFkBw7A9jYmcHpZA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/scope-manager': 5.33.1 + '@typescript-eslint/types': 5.33.1 + '@typescript-eslint/typescript-estree': 5.33.1_typescript@4.7.4 + debug: 4.3.4 + eslint: 7.32.0 + typescript: 4.7.4 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/scope-manager/5.33.1: + resolution: {integrity: sha512-8ibcZSqy4c5m69QpzJn8XQq9NnqAToC8OdH/W6IXPXv83vRyEDPYLdjAlUx8h/rbusq6MkW4YdQzURGOqsn3CA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + '@typescript-eslint/types': 5.33.1 + '@typescript-eslint/visitor-keys': 5.33.1 + dev: true + + /@typescript-eslint/type-utils/5.33.1_hxadhbs2xogijvk7vq4t2azzbu: + resolution: {integrity: sha512-X3pGsJsD8OiqhNa5fim41YtlnyiWMF/eKsEZGsHID2HcDqeSC5yr/uLOeph8rNF2/utwuI0IQoAK3fpoxcLl2g==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: '*' + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/utils': 5.33.1_hxadhbs2xogijvk7vq4t2azzbu + debug: 4.3.4 + eslint: 7.32.0 + tsutils: 3.21.0_typescript@4.7.4 + typescript: 4.7.4 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/types/5.33.1: + resolution: {integrity: sha512-7K6MoQPQh6WVEkMrMW5QOA5FO+BOwzHSNd0j3+BlBwd6vtzfZceJ8xJ7Um2XDi/O3umS8/qDX6jdy2i7CijkwQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dev: true + + /@typescript-eslint/typescript-estree/5.33.1_typescript@4.7.4: + resolution: {integrity: sha512-JOAzJ4pJ+tHzA2pgsWQi4804XisPHOtbvwUyqsuuq8+y5B5GMZs7lI1xDWs6V2d7gE/Ez5bTGojSK12+IIPtXA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/types': 5.33.1 + '@typescript-eslint/visitor-keys': 5.33.1 + debug: 4.3.4 + globby: 11.1.0 + is-glob: 4.0.3 + semver: 7.3.7 + tsutils: 3.21.0_typescript@4.7.4 + typescript: 4.7.4 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/utils/5.33.1_hxadhbs2xogijvk7vq4t2azzbu: + resolution: {integrity: sha512-uphZjkMaZ4fE8CR4dU7BquOV6u0doeQAr8n6cQenl/poMaIyJtBu8eys5uk6u5HiDH01Mj5lzbJ5SfeDz7oqMQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + '@types/json-schema': 7.0.11 + '@typescript-eslint/scope-manager': 5.33.1 + '@typescript-eslint/types': 5.33.1 + '@typescript-eslint/typescript-estree': 5.33.1_typescript@4.7.4 + eslint: 7.32.0 + eslint-scope: 5.1.1 + eslint-utils: 3.0.0_eslint@7.32.0 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /@typescript-eslint/visitor-keys/5.33.1: + resolution: {integrity: sha512-nwIxOK8Z2MPWltLKMLOEZwmfBZReqUdbEoHQXeCpa+sRVARe5twpJGHCB4dk9903Yaf0nMAlGbQfaAH92F60eg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + '@typescript-eslint/types': 5.33.1 + eslint-visitor-keys: 3.3.0 + dev: true + + /@webassemblyjs/ast/1.11.1: + resolution: {integrity: sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==} + dependencies: + '@webassemblyjs/helper-numbers': 1.11.1 + '@webassemblyjs/helper-wasm-bytecode': 1.11.1 + dev: true + + /@webassemblyjs/floating-point-hex-parser/1.11.1: + resolution: {integrity: sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==} + dev: true + + /@webassemblyjs/helper-api-error/1.11.1: + resolution: {integrity: sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==} + dev: true + + /@webassemblyjs/helper-buffer/1.11.1: + resolution: {integrity: sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==} + dev: true + + /@webassemblyjs/helper-numbers/1.11.1: + resolution: {integrity: sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==} + dependencies: + '@webassemblyjs/floating-point-hex-parser': 1.11.1 + '@webassemblyjs/helper-api-error': 1.11.1 + '@xtuc/long': 4.2.2 + dev: true + + /@webassemblyjs/helper-wasm-bytecode/1.11.1: + resolution: {integrity: sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==} + dev: true + + /@webassemblyjs/helper-wasm-section/1.11.1: + resolution: {integrity: sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==} + dependencies: + '@webassemblyjs/ast': 1.11.1 + '@webassemblyjs/helper-buffer': 1.11.1 + '@webassemblyjs/helper-wasm-bytecode': 1.11.1 + '@webassemblyjs/wasm-gen': 1.11.1 + dev: true + + /@webassemblyjs/ieee754/1.11.1: + resolution: {integrity: sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==} + dependencies: + '@xtuc/ieee754': 1.2.0 + dev: true + + /@webassemblyjs/leb128/1.11.1: + resolution: {integrity: sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==} + dependencies: + '@xtuc/long': 4.2.2 + dev: true + + /@webassemblyjs/utf8/1.11.1: + resolution: {integrity: sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==} + dev: true + + /@webassemblyjs/wasm-edit/1.11.1: + resolution: {integrity: sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==} + dependencies: + '@webassemblyjs/ast': 1.11.1 + '@webassemblyjs/helper-buffer': 1.11.1 + '@webassemblyjs/helper-wasm-bytecode': 1.11.1 + '@webassemblyjs/helper-wasm-section': 1.11.1 + '@webassemblyjs/wasm-gen': 1.11.1 + '@webassemblyjs/wasm-opt': 1.11.1 + '@webassemblyjs/wasm-parser': 1.11.1 + '@webassemblyjs/wast-printer': 1.11.1 + dev: true + + /@webassemblyjs/wasm-gen/1.11.1: + resolution: {integrity: sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==} + dependencies: + '@webassemblyjs/ast': 1.11.1 + '@webassemblyjs/helper-wasm-bytecode': 1.11.1 + '@webassemblyjs/ieee754': 1.11.1 + '@webassemblyjs/leb128': 1.11.1 + '@webassemblyjs/utf8': 1.11.1 + dev: true + + /@webassemblyjs/wasm-opt/1.11.1: + resolution: {integrity: sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==} + dependencies: + '@webassemblyjs/ast': 1.11.1 + '@webassemblyjs/helper-buffer': 1.11.1 + '@webassemblyjs/wasm-gen': 1.11.1 + '@webassemblyjs/wasm-parser': 1.11.1 + dev: true + + /@webassemblyjs/wasm-parser/1.11.1: + resolution: {integrity: sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==} + dependencies: + '@webassemblyjs/ast': 1.11.1 + '@webassemblyjs/helper-api-error': 1.11.1 + '@webassemblyjs/helper-wasm-bytecode': 1.11.1 + '@webassemblyjs/ieee754': 1.11.1 + '@webassemblyjs/leb128': 1.11.1 + '@webassemblyjs/utf8': 1.11.1 + dev: true + + /@webassemblyjs/wast-printer/1.11.1: + resolution: {integrity: sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==} + dependencies: + '@webassemblyjs/ast': 1.11.1 + '@xtuc/long': 4.2.2 + dev: true + + /@webpack-cli/configtest/1.2.0_5v66e2inugklgvlh4huuavolfq: + resolution: {integrity: sha512-4FB8Tj6xyVkyqjj1OaTqCjXYULB9FMkqQ8yGrZjRDrYh0nOE+7Lhs45WioWQQMV+ceFlE368Ukhe6xdvJM9Egg==} + peerDependencies: + webpack: 4.x.x || 5.x.x + webpack-cli: 4.x.x + dependencies: + webpack: 5.74.0_webpack-cli@4.10.0 + webpack-cli: 4.10.0_enc4da54mvzgn7gkchuyvuyzgu + dev: true + + /@webpack-cli/info/1.5.0_webpack-cli@4.10.0: + resolution: {integrity: sha512-e8tSXZpw2hPl2uMJY6fsMswaok5FdlGNRTktvFk2sD8RjH0hE2+XistawJx1vmKteh4NmGmNUrp+Tb2w+udPcQ==} + peerDependencies: + webpack-cli: 4.x.x + dependencies: + envinfo: 7.8.1 + webpack-cli: 4.10.0_enc4da54mvzgn7gkchuyvuyzgu + dev: true + + /@webpack-cli/serve/1.7.0_ixpxa6msyrc3obwec7as2lygbu: + resolution: {integrity: sha512-oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q==} + peerDependencies: + webpack-cli: 4.x.x + webpack-dev-server: '*' + peerDependenciesMeta: + webpack-dev-server: + optional: true + dependencies: + webpack-cli: 4.10.0_enc4da54mvzgn7gkchuyvuyzgu + webpack-dev-server: 3.11.3_5v66e2inugklgvlh4huuavolfq + dev: true + + /@xtuc/ieee754/1.2.0: + resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==} + dev: true + + /@xtuc/long/4.2.2: + resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==} + dev: true + + /JSONStream/1.3.5: + resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} + hasBin: true + dependencies: + jsonparse: 1.3.1 + through: 2.3.8 + dev: true + + /accepts/1.3.8: + resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==} + engines: {node: '>= 0.6'} + dependencies: + mime-types: 2.1.35 + negotiator: 0.6.3 + dev: true + + /acorn-import-assertions/1.8.0_acorn@8.8.0: + resolution: {integrity: sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==} + peerDependencies: + acorn: ^8 + dependencies: + acorn: 8.8.0 + dev: true + + /acorn-jsx/5.3.2_acorn@7.4.1: + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + acorn: 7.4.1 + dev: true + + /acorn/7.4.1: + resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} + engines: {node: '>=0.4.0'} + hasBin: true + dev: true + + /acorn/8.8.0: + resolution: {integrity: sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==} + engines: {node: '>=0.4.0'} + hasBin: true + dev: true + + /add-stream/1.0.0: + resolution: {integrity: sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==} + dev: true + + /ajv-errors/1.0.1_ajv@6.12.6: + resolution: {integrity: sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==} + peerDependencies: + ajv: '>=5.0.0' + dependencies: + ajv: 6.12.6 + dev: true + + /ajv-formats/2.1.1: + resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==} + peerDependenciesMeta: + ajv: + optional: true + dependencies: + ajv: 8.11.0 + dev: true + + /ajv-keywords/3.5.2_ajv@6.12.6: + resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==} + peerDependencies: + ajv: ^6.9.1 + dependencies: + ajv: 6.12.6 + dev: true + + /ajv-keywords/5.1.0_ajv@8.11.0: + resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==} + peerDependencies: + ajv: ^8.8.2 + dependencies: + ajv: 8.11.0 + fast-deep-equal: 3.1.3 + dev: true + + /ajv/6.12.6: + resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} + dependencies: + fast-deep-equal: 3.1.3 + fast-json-stable-stringify: 2.1.0 + json-schema-traverse: 0.4.1 + uri-js: 4.4.1 + dev: true + + /ajv/8.11.0: + resolution: {integrity: sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==} + dependencies: + fast-deep-equal: 3.1.3 + json-schema-traverse: 1.0.0 + require-from-string: 2.0.2 + uri-js: 4.4.1 + dev: true + + /ansi-colors/3.2.4: + resolution: {integrity: sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==} + engines: {node: '>=6'} + dev: true + + /ansi-colors/4.1.3: + resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} + engines: {node: '>=6'} + dev: true + + /ansi-html-community/0.0.8: + resolution: {integrity: sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==} + engines: {'0': node >= 0.8.0} + hasBin: true + dev: true + + /ansi-regex/2.1.1: + resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==} + engines: {node: '>=0.10.0'} + dev: true + + /ansi-regex/4.1.1: + resolution: {integrity: sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==} + engines: {node: '>=6'} + dev: true + + /ansi-regex/5.0.1: + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} + dev: true + + /ansi-styles/3.2.1: + resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} + engines: {node: '>=4'} + dependencies: + color-convert: 1.9.3 + dev: true + + /ansi-styles/4.3.0: + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} + dependencies: + color-convert: 2.0.1 + dev: true + + /ansi-styles/5.2.0: + resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} + engines: {node: '>=10'} + dev: true + + /anymatch/2.0.0_supports-color@6.1.0: + resolution: {integrity: sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==} + dependencies: + micromatch: 3.1.10_supports-color@6.1.0 + normalize-path: 2.1.1 + transitivePeerDependencies: + - supports-color + dev: true + + /anymatch/3.1.2: + resolution: {integrity: sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==} + engines: {node: '>= 8'} + dependencies: + normalize-path: 3.0.0 + picomatch: 2.3.1 + dev: true + optional: true + + /argparse/1.0.10: + resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} + dependencies: + sprintf-js: 1.0.3 + dev: true + + /arr-diff/4.0.0: + resolution: {integrity: sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==} + engines: {node: '>=0.10.0'} + dev: true + + /arr-flatten/1.1.0: + resolution: {integrity: sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==} + engines: {node: '>=0.10.0'} + dev: true + + /arr-union/3.1.0: + resolution: {integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==} + engines: {node: '>=0.10.0'} + dev: true + + /array-flatten/1.1.1: + resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==} + dev: true + + /array-flatten/2.1.2: + resolution: {integrity: sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==} + dev: true + + /array-ify/1.0.0: + resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==} + dev: true + + /array-includes/3.1.5: + resolution: {integrity: sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.1 + get-intrinsic: 1.1.2 + is-string: 1.0.7 + dev: true + + /array-union/1.0.2: + resolution: {integrity: sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==} + engines: {node: '>=0.10.0'} + dependencies: + array-uniq: 1.0.3 + dev: true + + /array-union/2.1.0: + resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} + engines: {node: '>=8'} + dev: true + + /array-uniq/1.0.3: + resolution: {integrity: sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==} + engines: {node: '>=0.10.0'} + dev: true + + /array-unique/0.3.2: + resolution: {integrity: sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==} + engines: {node: '>=0.10.0'} + dev: true + + /array.prototype.flat/1.3.0: + resolution: {integrity: sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.1 + es-shim-unscopables: 1.0.0 + dev: true + + /array.prototype.flatmap/1.3.0: + resolution: {integrity: sha512-PZC9/8TKAIxcWKdyeb77EzULHPrIX/tIZebLJUQOMR1OwYosT8yggdfWScfTBCDj5utONvOuPQQumYsU2ULbkg==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.1 + es-shim-unscopables: 1.0.0 + dev: true + + /arrify/1.0.1: + resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} + engines: {node: '>=0.10.0'} + dev: true + + /assign-symbols/1.0.0: + resolution: {integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==} + engines: {node: '>=0.10.0'} + dev: true + + /astral-regex/2.0.0: + resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} + engines: {node: '>=8'} + dev: true + + /async-each/1.0.3: + resolution: {integrity: sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==} + dev: true + + /async-limiter/1.0.1: + resolution: {integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==} + dev: true + + /async/2.6.1: + resolution: {integrity: sha512-fNEiL2+AZt6AlAw/29Cr0UDe4sRAHCpEHh54WMz+Bb7QfNcFw4h3loofyJpLeQs4Yx7yuqu/2dLgM5hKOs6HlQ==} + dependencies: + lodash: 4.17.21 + dev: true + + /async/2.6.4: + resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==} + dependencies: + lodash: 4.17.21 + dev: true + + /atob/2.1.2: + resolution: {integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==} + engines: {node: '>= 4.5.0'} + hasBin: true + dev: true + + /autoprefixer/10.4.8_postcss@8.4.16: + resolution: {integrity: sha512-75Jr6Q/XpTqEf6D2ltS5uMewJIx5irCU1oBYJrWjFenq/m12WRRrz6g15L1EIoYvPLXTbEry7rDOwrcYNj77xw==} + engines: {node: ^10 || ^12 || >=14} + hasBin: true + peerDependencies: + postcss: ^8.1.0 + dependencies: + browserslist: 4.21.3 + caniuse-lite: 1.0.30001377 + fraction.js: 4.2.0 + normalize-range: 0.1.2 + picocolors: 1.0.0 + postcss: 8.4.16 + postcss-value-parser: 4.2.0 + dev: true + + /babel-loader/8.2.5_xc6oct4hcywdrbo4ned6ytbybm: + resolution: {integrity: sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==} + engines: {node: '>= 8.9'} + peerDependencies: + '@babel/core': ^7.0.0 + webpack: '>=2' + dependencies: + '@babel/core': 7.18.10 + find-cache-dir: 3.3.2 + loader-utils: 2.0.2 + make-dir: 3.1.0 + schema-utils: 2.7.1 + webpack: 5.74.0_webpack-cli@4.10.0 + dev: true + + /babel-plugin-dynamic-import-node/2.3.3: + resolution: {integrity: sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==} + dependencies: + object.assign: 4.1.4 + dev: true + + /babel-plugin-module-resolver/4.1.0: + resolution: {integrity: sha512-MlX10UDheRr3lb3P0WcaIdtCSRlxdQsB1sBqL7W0raF070bGl1HQQq5K3T2vf2XAYie+ww+5AKC/WrkjRO2knA==} + engines: {node: '>= 8.0.0'} + dependencies: + find-babel-config: 1.2.0 + glob: 7.2.3 + pkg-up: 3.1.0 + reselect: 4.1.6 + resolve: 1.22.1 + dev: true + + /babel-plugin-polyfill-corejs2/0.3.2_@babel+core@7.18.10: + resolution: {integrity: sha512-LPnodUl3lS0/4wN3Rb+m+UK8s7lj2jcLRrjho4gLw+OJs+I4bvGXshINesY5xx/apM+biTnQ9reDI8yj+0M5+Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.18.8 + '@babel/core': 7.18.10 + '@babel/helper-define-polyfill-provider': 0.3.2_@babel+core@7.18.10 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: true + + /babel-plugin-polyfill-corejs3/0.5.3_@babel+core@7.18.10: + resolution: {integrity: sha512-zKsXDh0XjnrUEW0mxIHLfjBfnXSMr5Q/goMe/fxpQnLm07mcOZiIZHBNWCMx60HmdvjxfXcalac0tfFg0wqxyw==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-define-polyfill-provider': 0.3.2_@babel+core@7.18.10 + core-js-compat: 3.24.1 + transitivePeerDependencies: + - supports-color + dev: true + + /babel-plugin-polyfill-regenerator/0.4.0_@babel+core@7.18.10: + resolution: {integrity: sha512-RW1cnryiADFeHmfLS+WW/G431p1PsW5qdRdz0SDRi7TKcUgc7Oh/uXkT7MZ/+tGsT1BkczEAmD5XjUyJ5SWDTw==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-define-polyfill-provider': 0.3.2_@babel+core@7.18.10 + transitivePeerDependencies: + - supports-color + dev: true + + /balanced-match/1.0.2: + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + dev: true + + /base/0.11.2: + resolution: {integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==} + engines: {node: '>=0.10.0'} + dependencies: + cache-base: 1.0.1 + class-utils: 0.3.6 + component-emitter: 1.3.0 + define-property: 1.0.0 + isobject: 3.0.1 + mixin-deep: 1.3.2 + pascalcase: 0.1.1 + dev: true + + /batch/0.6.1: + resolution: {integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==} + dev: true + + /big.js/5.2.2: + resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==} + dev: true + + /binary-extensions/1.13.1: + resolution: {integrity: sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==} + engines: {node: '>=0.10.0'} + dev: true + + /binary-extensions/2.2.0: + resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} + engines: {node: '>=8'} + dev: true + optional: true + + /bindings/1.5.0: + resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==} + dependencies: + file-uri-to-path: 1.0.0 + dev: true + optional: true + + /body-parser/1.20.0_supports-color@6.1.0: + resolution: {integrity: sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==} + engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} + dependencies: + bytes: 3.1.2 + content-type: 1.0.4 + debug: 2.6.9_supports-color@6.1.0 + depd: 2.0.0 + destroy: 1.2.0 + http-errors: 2.0.0 + iconv-lite: 0.4.24 + on-finished: 2.4.1 + qs: 6.10.3 + raw-body: 2.5.1 + type-is: 1.6.18 + unpipe: 1.0.0 + transitivePeerDependencies: + - supports-color + dev: true + + /bonjour/3.5.0: + resolution: {integrity: sha512-RaVTblr+OnEli0r/ud8InrU7D+G0y6aJhlxaLa6Pwty4+xoxboF1BsUI45tujvRpbj9dQVoglChqonGAsjEBYg==} + dependencies: + array-flatten: 2.1.2 + deep-equal: 1.1.1 + dns-equal: 1.0.0 + dns-txt: 2.0.2 + multicast-dns: 6.2.3 + multicast-dns-service-types: 1.1.0 + dev: true + + /boolbase/1.0.0: + resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} + dev: true + + /brace-expansion/1.1.11: + resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} + dependencies: + balanced-match: 1.0.2 + concat-map: 0.0.1 + dev: true + + /braces/2.3.2_supports-color@6.1.0: + resolution: {integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==} + engines: {node: '>=0.10.0'} + dependencies: + 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.4 + snapdragon: 0.8.2_supports-color@6.1.0 + snapdragon-node: 2.1.1 + split-string: 3.1.0 + to-regex: 3.0.2 + transitivePeerDependencies: + - supports-color + dev: true + + /braces/3.0.2: + resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} + engines: {node: '>=8'} + dependencies: + fill-range: 7.0.1 + dev: true + + /browserslist/4.21.3: + resolution: {integrity: sha512-898rgRXLAyRkM1GryrrBHGkqA5hlpkV5MhtZwg9QXeiyLUYs2k00Un05aX5l2/yJIOObYKOpS2JNo8nJDE7fWQ==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + dependencies: + caniuse-lite: 1.0.30001377 + electron-to-chromium: 1.4.222 + node-releases: 2.0.6 + update-browserslist-db: 1.0.5_browserslist@4.21.3 + dev: true + + /buffer-from/1.1.2: + resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} + dev: true + + /buffer-indexof/1.1.1: + resolution: {integrity: sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==} + dev: true + + /bytes/3.0.0: + resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==} + engines: {node: '>= 0.8'} + dev: true + + /bytes/3.1.2: + resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} + engines: {node: '>= 0.8'} + dev: true + + /cache-base/1.0.1: + resolution: {integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==} + engines: {node: '>=0.10.0'} + dependencies: + collection-visit: 1.0.0 + component-emitter: 1.3.0 + get-value: 2.0.6 + has-value: 1.0.0 + isobject: 3.0.1 + set-value: 2.0.1 + to-object-path: 0.3.0 + union-value: 1.0.1 + unset-value: 1.0.0 + dev: true + + /call-bind/1.0.2: + resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} + dependencies: + function-bind: 1.1.1 + get-intrinsic: 1.1.2 + dev: true + + /callsites/3.1.0: + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + engines: {node: '>=6'} + dev: true + + /camel-case/4.1.2: + resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==} + dependencies: + pascal-case: 3.1.2 + tslib: 2.4.0 + dev: true + + /camelcase-keys/6.2.2: + resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==} + engines: {node: '>=8'} + dependencies: + camelcase: 5.3.1 + map-obj: 4.3.0 + quick-lru: 4.0.1 + dev: true + + /camelcase/5.3.1: + resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} + engines: {node: '>=6'} + dev: true + + /camelcase/6.3.0: + resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} + engines: {node: '>=10'} + dev: true + + /caniuse-api/3.0.0: + resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} + dependencies: + browserslist: 4.21.3 + caniuse-lite: 1.0.30001377 + lodash.memoize: 4.1.2 + lodash.uniq: 4.5.0 + dev: true + + /caniuse-lite/1.0.30001377: + resolution: {integrity: sha512-I5XeHI1x/mRSGl96LFOaSk528LA/yZG3m3iQgImGujjO8gotd/DL8QaI1R1h1dg5ATeI2jqPblMpKq4Tr5iKfQ==} + dev: true + + /chalk/2.4.2: + resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} + engines: {node: '>=4'} + dependencies: + ansi-styles: 3.2.1 + escape-string-regexp: 1.0.5 + supports-color: 5.5.0 + dev: true + + /chalk/4.1.2: + resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} + engines: {node: '>=10'} + dependencies: + ansi-styles: 4.3.0 + supports-color: 7.2.0 + dev: true + + /chartist/0.10.1: + resolution: {integrity: sha512-8Yd4F6tXvAaM5CIPmFYknC76KEgaU7iiY7Amo5IaaCRmTT/5YXjc/FuNXgqhPttOXHoGSjl0i3gkOE1mv15/wA==} + engines: {node: '>=4.6.0'} + dev: false + + /chokidar/2.1.8_supports-color@6.1.0: + resolution: {integrity: sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==} + deprecated: Chokidar 2 does not receive security updates since 2019. Upgrade to chokidar 3 with 15x fewer dependencies + dependencies: + anymatch: 2.0.0_supports-color@6.1.0 + async-each: 1.0.3 + braces: 2.3.2_supports-color@6.1.0 + glob-parent: 3.1.0 + inherits: 2.0.4 + is-binary-path: 1.0.1 + is-glob: 4.0.3 + normalize-path: 3.0.0 + path-is-absolute: 1.0.1 + readdirp: 2.2.1_supports-color@6.1.0 + upath: 1.2.0 + optionalDependencies: + fsevents: 1.2.13 + transitivePeerDependencies: + - supports-color + dev: true + + /chokidar/3.5.3: + resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} + engines: {node: '>= 8.10.0'} + requiresBuild: true + dependencies: + anymatch: 3.1.2 + braces: 3.0.2 + glob-parent: 5.1.2 + is-binary-path: 2.1.0 + is-glob: 4.0.3 + normalize-path: 3.0.0 + readdirp: 3.6.0 + optionalDependencies: + fsevents: 2.3.2 + dev: true + optional: true + + /chrome-trace-event/1.0.3: + resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==} + engines: {node: '>=6.0'} + dev: true + + /ci-info/3.3.2: + resolution: {integrity: sha512-xmDt/QIAdeZ9+nfdPsaBCpMvHNLFiLdjj59qjqn+6iPe6YmHGQ35sBnQ8uslRBXFmXkiZQOJRjvQeoGppoTjjg==} + dev: true + + /class-utils/0.3.6: + resolution: {integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==} + engines: {node: '>=0.10.0'} + dependencies: + arr-union: 3.1.0 + define-property: 0.2.5 + isobject: 3.0.1 + static-extend: 0.1.2 + dev: true + + /classnames/2.3.1: + resolution: {integrity: sha512-OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA==} + dev: false + + /clean-css/5.3.1: + resolution: {integrity: sha512-lCr8OHhiWCTw4v8POJovCoh4T7I9U11yVsPjMWWnnMmp9ZowCxyad1Pathle/9HjaDp+fdQKjO9fQydE6RHTZg==} + engines: {node: '>= 10.0'} + dependencies: + source-map: 0.6.1 + dev: true + + /cliui/5.0.0: + resolution: {integrity: sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==} + dependencies: + string-width: 3.1.0 + strip-ansi: 5.2.0 + wrap-ansi: 5.1.0 + dev: true + + /cliui/7.0.4: + resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==} + dependencies: + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi: 7.0.0 + dev: true + + /clone-deep/4.0.1: + resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==} + engines: {node: '>=6'} + dependencies: + is-plain-object: 2.0.4 + kind-of: 6.0.3 + shallow-clone: 3.0.1 + dev: true + + /clsx/1.2.1: + resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==} + engines: {node: '>=6'} + dev: false + + /collection-visit/1.0.0: + resolution: {integrity: sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==} + engines: {node: '>=0.10.0'} + dependencies: + map-visit: 1.0.0 + object-visit: 1.0.1 + dev: true + + /color-convert/1.9.3: + resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} + dependencies: + color-name: 1.1.3 + dev: true + + /color-convert/2.0.1: + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} + dependencies: + color-name: 1.1.4 + dev: true + + /color-name/1.1.3: + resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} + dev: true + + /color-name/1.1.4: + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + dev: true + + /colord/2.9.3: + resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==} + dev: true + + /colorette/2.0.19: + resolution: {integrity: sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==} + dev: true + + /commander/2.15.1: + resolution: {integrity: sha512-VlfT9F3V0v+jr4yxPc5gg9s62/fIVWsd2Bk2iD435um1NlGMYdVCq+MjcXnhYq2icNOizHr1kK+5TI6H0Hy0ag==} + dev: true + + /commander/2.20.3: + resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} + dev: true + + /commander/4.1.1: + resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} + engines: {node: '>= 6'} + dev: true + + /commander/7.2.0: + resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} + engines: {node: '>= 10'} + dev: true + + /commander/8.3.0: + resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} + engines: {node: '>= 12'} + dev: true + + /commondir/1.0.1: + resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} + dev: true + + /compare-func/2.0.0: + resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==} + dependencies: + array-ify: 1.0.0 + dot-prop: 5.3.0 + dev: true + + /component-emitter/1.3.0: + resolution: {integrity: sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==} + dev: true + + /compressible/2.0.18: + resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==} + engines: {node: '>= 0.6'} + dependencies: + mime-db: 1.52.0 + dev: true + + /compression/1.7.4_supports-color@6.1.0: + resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==} + engines: {node: '>= 0.8.0'} + dependencies: + accepts: 1.3.8 + bytes: 3.0.0 + compressible: 2.0.18 + debug: 2.6.9_supports-color@6.1.0 + on-headers: 1.0.2 + safe-buffer: 5.1.2 + vary: 1.1.2 + transitivePeerDependencies: + - supports-color + dev: true + + /concat-map/0.0.1: + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + dev: true + + /connect-history-api-fallback/1.6.0: + resolution: {integrity: sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==} + engines: {node: '>=0.8'} + dev: true + + /content-disposition/0.5.4: + resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==} + engines: {node: '>= 0.6'} + dependencies: + safe-buffer: 5.2.1 + dev: true + + /content-type/1.0.4: + resolution: {integrity: sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==} + engines: {node: '>= 0.6'} + dev: true + + /conventional-changelog-angular/5.0.13: + resolution: {integrity: sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==} + engines: {node: '>=10'} + dependencies: + compare-func: 2.0.0 + q: 1.5.1 + dev: true + + /conventional-changelog-atom/2.0.8: + resolution: {integrity: sha512-xo6v46icsFTK3bb7dY/8m2qvc8sZemRgdqLb/bjpBsH2UyOS8rKNTgcb5025Hri6IpANPApbXMg15QLb1LJpBw==} + engines: {node: '>=10'} + dependencies: + q: 1.5.1 + dev: true + + /conventional-changelog-cli/2.2.2: + resolution: {integrity: sha512-8grMV5Jo8S0kP3yoMeJxV2P5R6VJOqK72IiSV9t/4H5r/HiRqEBQ83bYGuz4Yzfdj4bjaAEhZN/FFbsFXr5bOA==} + engines: {node: '>=10'} + hasBin: true + dependencies: + add-stream: 1.0.0 + conventional-changelog: 3.1.25 + lodash: 4.17.21 + meow: 8.1.2 + tempfile: 3.0.0 + dev: true + + /conventional-changelog-codemirror/2.0.8: + resolution: {integrity: sha512-z5DAsn3uj1Vfp7po3gpt2Boc+Bdwmw2++ZHa5Ak9k0UKsYAO5mH1UBTN0qSCuJZREIhX6WU4E1p3IW2oRCNzQw==} + engines: {node: '>=10'} + dependencies: + q: 1.5.1 + dev: true + + /conventional-changelog-conventionalcommits/4.6.3: + resolution: {integrity: sha512-LTTQV4fwOM4oLPad317V/QNQ1FY4Hju5qeBIM1uTHbrnCE+Eg4CdRZ3gO2pUeR+tzWdp80M2j3qFFEDWVqOV4g==} + engines: {node: '>=10'} + dependencies: + compare-func: 2.0.0 + lodash: 4.17.21 + q: 1.5.1 + dev: true + + /conventional-changelog-core/4.2.4: + resolution: {integrity: sha512-gDVS+zVJHE2v4SLc6B0sLsPiloR0ygU7HaDW14aNJE1v4SlqJPILPl/aJC7YdtRE4CybBf8gDwObBvKha8Xlyg==} + engines: {node: '>=10'} + dependencies: + add-stream: 1.0.0 + conventional-changelog-writer: 5.0.1 + conventional-commits-parser: 3.2.4 + dateformat: 3.0.3 + get-pkg-repo: 4.2.1 + git-raw-commits: 2.0.11 + git-remote-origin-url: 2.0.0 + git-semver-tags: 4.1.1 + lodash: 4.17.21 + normalize-package-data: 3.0.3 + q: 1.5.1 + read-pkg: 3.0.0 + read-pkg-up: 3.0.0 + through2: 4.0.2 + dev: true + + /conventional-changelog-ember/2.0.9: + resolution: {integrity: sha512-ulzIReoZEvZCBDhcNYfDIsLTHzYHc7awh+eI44ZtV5cx6LVxLlVtEmcO+2/kGIHGtw+qVabJYjdI5cJOQgXh1A==} + engines: {node: '>=10'} + dependencies: + q: 1.5.1 + dev: true + + /conventional-changelog-eslint/3.0.9: + resolution: {integrity: sha512-6NpUCMgU8qmWmyAMSZO5NrRd7rTgErjrm4VASam2u5jrZS0n38V7Y9CzTtLT2qwz5xEChDR4BduoWIr8TfwvXA==} + engines: {node: '>=10'} + dependencies: + q: 1.5.1 + dev: true + + /conventional-changelog-express/2.0.6: + resolution: {integrity: sha512-SDez2f3iVJw6V563O3pRtNwXtQaSmEfTCaTBPCqn0oG0mfkq0rX4hHBq5P7De2MncoRixrALj3u3oQsNK+Q0pQ==} + engines: {node: '>=10'} + dependencies: + q: 1.5.1 + dev: true + + /conventional-changelog-jquery/3.0.11: + resolution: {integrity: sha512-x8AWz5/Td55F7+o/9LQ6cQIPwrCjfJQ5Zmfqi8thwUEKHstEn4kTIofXub7plf1xvFA2TqhZlq7fy5OmV6BOMw==} + engines: {node: '>=10'} + dependencies: + q: 1.5.1 + dev: true + + /conventional-changelog-jshint/2.0.9: + resolution: {integrity: sha512-wMLdaIzq6TNnMHMy31hql02OEQ8nCQfExw1SE0hYL5KvU+JCTuPaDO+7JiogGT2gJAxiUGATdtYYfh+nT+6riA==} + engines: {node: '>=10'} + dependencies: + compare-func: 2.0.0 + q: 1.5.1 + dev: true + + /conventional-changelog-preset-loader/2.3.4: + resolution: {integrity: sha512-GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g==} + engines: {node: '>=10'} + dev: true + + /conventional-changelog-writer/5.0.1: + resolution: {integrity: sha512-5WsuKUfxW7suLblAbFnxAcrvf6r+0b7GvNaWUwUIk0bXMnENP/PEieGKVUQrjPqwPT4o3EPAASBXiY6iHooLOQ==} + engines: {node: '>=10'} + hasBin: true + dependencies: + conventional-commits-filter: 2.0.7 + dateformat: 3.0.3 + handlebars: 4.7.7 + json-stringify-safe: 5.0.1 + lodash: 4.17.21 + meow: 8.1.2 + semver: 6.3.0 + split: 1.0.1 + through2: 4.0.2 + dev: true + + /conventional-changelog/3.1.25: + resolution: {integrity: sha512-ryhi3fd1mKf3fSjbLXOfK2D06YwKNic1nC9mWqybBHdObPd8KJ2vjaXZfYj1U23t+V8T8n0d7gwnc9XbIdFbyQ==} + engines: {node: '>=10'} + dependencies: + conventional-changelog-angular: 5.0.13 + conventional-changelog-atom: 2.0.8 + conventional-changelog-codemirror: 2.0.8 + conventional-changelog-conventionalcommits: 4.6.3 + conventional-changelog-core: 4.2.4 + conventional-changelog-ember: 2.0.9 + conventional-changelog-eslint: 3.0.9 + conventional-changelog-express: 2.0.6 + conventional-changelog-jquery: 3.0.11 + conventional-changelog-jshint: 2.0.9 + conventional-changelog-preset-loader: 2.3.4 + dev: true + + /conventional-commits-filter/2.0.7: + resolution: {integrity: sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA==} + engines: {node: '>=10'} + dependencies: + lodash.ismatch: 4.4.0 + modify-values: 1.0.1 + dev: true + + /conventional-commits-parser/3.2.4: + resolution: {integrity: sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==} + engines: {node: '>=10'} + hasBin: true + dependencies: + is-text-path: 1.0.1 + JSONStream: 1.3.5 + lodash: 4.17.21 + meow: 8.1.2 + split2: 3.2.2 + through2: 4.0.2 + dev: true + + /convert-source-map/1.8.0: + resolution: {integrity: sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==} + dependencies: + safe-buffer: 5.1.2 + dev: true + + /cookie-signature/1.0.6: + resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==} + dev: true + + /cookie/0.5.0: + resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==} + engines: {node: '>= 0.6'} + dev: true + + /copy-anything/2.0.6: + resolution: {integrity: sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==} + dependencies: + is-what: 3.14.1 + dev: true + + /copy-descriptor/0.1.1: + resolution: {integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==} + engines: {node: '>=0.10.0'} + dev: true + + /core-js-compat/3.24.1: + resolution: {integrity: sha512-XhdNAGeRnTpp8xbD+sR/HFDK9CbeeeqXT6TuofXh3urqEevzkWmLRgrVoykodsw8okqo2pu1BOmuCKrHx63zdw==} + dependencies: + browserslist: 4.21.3 + semver: 7.0.0 + dev: true + + /core-util-is/1.0.3: + resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} + dev: true + + /cosmiconfig/7.0.1: + resolution: {integrity: sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==} + engines: {node: '>=10'} + dependencies: + '@types/parse-json': 4.0.0 + import-fresh: 3.3.0 + parse-json: 5.2.0 + path-type: 4.0.0 + yaml: 1.10.2 + dev: true + + /cross-spawn/6.0.5: + resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==} + engines: {node: '>=4.8'} + dependencies: + nice-try: 1.0.5 + path-key: 2.0.1 + semver: 5.7.1 + shebang-command: 1.2.0 + which: 1.3.1 + dev: true + + /cross-spawn/7.0.3: + resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} + engines: {node: '>= 8'} + dependencies: + path-key: 3.1.1 + shebang-command: 2.0.0 + which: 2.0.2 + dev: true + + /css-declaration-sorter/6.3.0_postcss@8.4.16: + resolution: {integrity: sha512-OGT677UGHJTAVMRhPO+HJ4oKln3wkBTwtDFH0ojbqm+MJm6xuDMHp2nkhh/ThaBqq20IbraBQSWKfSLNHQO9Og==} + engines: {node: ^10 || ^12 || >=14} + peerDependencies: + postcss: ^8.0.9 + dependencies: + postcss: 8.4.16 + dev: true + + /css-loader/6.7.1_webpack@5.74.0: + resolution: {integrity: sha512-yB5CNFa14MbPJcomwNh3wLThtkZgcNyI2bNMRt8iE5Z8Vwl7f8vQXFAzn2HDOJvtDq2NTZBUGMSUNNyrv3/+cw==} + engines: {node: '>= 12.13.0'} + peerDependencies: + webpack: ^5.0.0 + dependencies: + icss-utils: 5.1.0_postcss@8.4.16 + postcss: 8.4.16 + postcss-modules-extract-imports: 3.0.0_postcss@8.4.16 + postcss-modules-local-by-default: 4.0.0_postcss@8.4.16 + postcss-modules-scope: 3.0.0_postcss@8.4.16 + postcss-modules-values: 4.0.0_postcss@8.4.16 + postcss-value-parser: 4.2.0 + semver: 7.3.7 + webpack: 5.74.0_webpack-cli@4.10.0 + dev: true + + /css-select/4.3.0: + resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==} + dependencies: + boolbase: 1.0.0 + css-what: 6.1.0 + domhandler: 4.3.1 + domutils: 2.8.0 + nth-check: 2.1.1 + dev: true + + /css-tree/1.1.3: + resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==} + engines: {node: '>=8.0.0'} + dependencies: + mdn-data: 2.0.14 + source-map: 0.6.1 + dev: true + + /css-what/6.1.0: + resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} + engines: {node: '>= 6'} + dev: true + + /cssesc/3.0.0: + resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} + engines: {node: '>=4'} + hasBin: true + dev: true + + /cssnano-preset-default/5.2.12_postcss@8.4.16: + resolution: {integrity: sha512-OyCBTZi+PXgylz9HAA5kHyoYhfGcYdwFmyaJzWnzxuGRtnMw/kR6ilW9XzlzlRAtB6PLT/r+prYgkef7hngFew==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + css-declaration-sorter: 6.3.0_postcss@8.4.16 + cssnano-utils: 3.1.0_postcss@8.4.16 + postcss: 8.4.16 + postcss-calc: 8.2.4_postcss@8.4.16 + postcss-colormin: 5.3.0_postcss@8.4.16 + postcss-convert-values: 5.1.2_postcss@8.4.16 + postcss-discard-comments: 5.1.2_postcss@8.4.16 + postcss-discard-duplicates: 5.1.0_postcss@8.4.16 + postcss-discard-empty: 5.1.1_postcss@8.4.16 + postcss-discard-overridden: 5.1.0_postcss@8.4.16 + postcss-merge-longhand: 5.1.6_postcss@8.4.16 + postcss-merge-rules: 5.1.2_postcss@8.4.16 + postcss-minify-font-values: 5.1.0_postcss@8.4.16 + postcss-minify-gradients: 5.1.1_postcss@8.4.16 + postcss-minify-params: 5.1.3_postcss@8.4.16 + postcss-minify-selectors: 5.2.1_postcss@8.4.16 + postcss-normalize-charset: 5.1.0_postcss@8.4.16 + postcss-normalize-display-values: 5.1.0_postcss@8.4.16 + postcss-normalize-positions: 5.1.1_postcss@8.4.16 + postcss-normalize-repeat-style: 5.1.1_postcss@8.4.16 + postcss-normalize-string: 5.1.0_postcss@8.4.16 + postcss-normalize-timing-functions: 5.1.0_postcss@8.4.16 + postcss-normalize-unicode: 5.1.0_postcss@8.4.16 + postcss-normalize-url: 5.1.0_postcss@8.4.16 + postcss-normalize-whitespace: 5.1.1_postcss@8.4.16 + postcss-ordered-values: 5.1.3_postcss@8.4.16 + postcss-reduce-initial: 5.1.0_postcss@8.4.16 + postcss-reduce-transforms: 5.1.0_postcss@8.4.16 + postcss-svgo: 5.1.0_postcss@8.4.16 + postcss-unique-selectors: 5.1.1_postcss@8.4.16 + dev: true + + /cssnano-utils/3.1.0_postcss@8.4.16: + resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.16 + dev: true + + /cssnano/5.1.13_postcss@8.4.16: + resolution: {integrity: sha512-S2SL2ekdEz6w6a2epXn4CmMKU4K3KpcyXLKfAYc9UQQqJRkD/2eLUG0vJ3Db/9OvO5GuAdgXw3pFbR6abqghDQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + cssnano-preset-default: 5.2.12_postcss@8.4.16 + lilconfig: 2.0.6 + postcss: 8.4.16 + yaml: 1.10.2 + dev: true + + /csso/4.2.0: + resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==} + engines: {node: '>=8.0.0'} + dependencies: + css-tree: 1.1.3 + dev: true + + /csstype/3.1.0: + resolution: {integrity: sha512-uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA==} + + /dargs/7.0.0: + resolution: {integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==} + engines: {node: '>=8'} + dev: true + + /date-fns/2.29.1: + resolution: {integrity: sha512-dlLD5rKaKxpFdnjrs+5azHDFOPEu4ANy/LTh04A1DTzMM7qoajmKCBc8pkKRFT41CNzw+4gQh79X5C+Jq27HAw==} + engines: {node: '>=0.11'} + dev: false + + /dateformat/3.0.3: + resolution: {integrity: sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==} + dev: true + + /debug/2.6.9: + resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.0.0 + dev: true + + /debug/2.6.9_supports-color@6.1.0: + resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.0.0 + supports-color: 6.1.0 + dev: true + + /debug/3.2.7: + resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.1.3 + dev: true + + /debug/3.2.7_supports-color@6.1.0: + resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.1.3 + supports-color: 6.1.0 + dev: true + + /debug/4.3.4: + resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.1.2 + dev: true + + /debug/4.3.4_supports-color@6.1.0: + resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.1.2 + supports-color: 6.1.0 + dev: true + + /decamelize-keys/1.1.0: + resolution: {integrity: sha512-ocLWuYzRPoS9bfiSdDd3cxvrzovVMZnRDVEzAs+hWIVXGDbHxWMECij2OBuyB/An0FFW/nLuq6Kv1i/YC5Qfzg==} + engines: {node: '>=0.10.0'} + dependencies: + decamelize: 1.2.0 + map-obj: 1.0.1 + dev: true + + /decamelize/1.2.0: + resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} + engines: {node: '>=0.10.0'} + dev: true + + /decode-uri-component/0.2.0: + resolution: {integrity: sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og==} + engines: {node: '>=0.10'} + dev: true + + /deep-equal/1.1.1: + resolution: {integrity: sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==} + dependencies: + is-arguments: 1.1.1 + is-date-object: 1.0.5 + is-regex: 1.1.4 + object-is: 1.1.5 + object-keys: 1.1.1 + regexp.prototype.flags: 1.4.3 + dev: true + + /deep-is/0.1.4: + resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} + dev: true + + /deepmerge/4.2.2: + resolution: {integrity: sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==} + engines: {node: '>=0.10.0'} + dev: true + + /default-gateway/4.2.0: + resolution: {integrity: sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==} + engines: {node: '>=6'} + dependencies: + execa: 1.0.0 + ip-regex: 2.1.0 + dev: true + + /define-properties/1.1.4: + resolution: {integrity: sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==} + engines: {node: '>= 0.4'} + dependencies: + has-property-descriptors: 1.0.0 + object-keys: 1.1.1 + dev: true + + /define-property/0.2.5: + resolution: {integrity: sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==} + engines: {node: '>=0.10.0'} + dependencies: + is-descriptor: 0.1.6 + dev: true + + /define-property/1.0.0: + resolution: {integrity: sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==} + engines: {node: '>=0.10.0'} + dependencies: + is-descriptor: 1.0.2 + dev: true + + /define-property/2.0.2: + resolution: {integrity: sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==} + engines: {node: '>=0.10.0'} + dependencies: + is-descriptor: 1.0.2 + isobject: 3.0.1 + dev: true + + /del/4.1.1: + resolution: {integrity: sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==} + engines: {node: '>=6'} + dependencies: + '@types/glob': 7.2.0 + globby: 6.1.0 + is-path-cwd: 2.2.0 + is-path-in-cwd: 2.1.0 + p-map: 2.1.0 + pify: 4.0.1 + rimraf: 2.7.1 + dev: true + + /depd/1.1.2: + resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==} + engines: {node: '>= 0.6'} + dev: true + + /depd/2.0.0: + resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} + engines: {node: '>= 0.8'} + dev: true + + /destroy/1.2.0: + resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} + engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} + dev: true + + /detect-node/2.1.0: + resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==} + dev: true + + /diff-sequences/28.1.1: + resolution: {integrity: sha512-FU0iFaH/E23a+a718l8Qa/19bF9p06kgE0KipMOMadwa3SjnaElKzPaUC0vnibs6/B/9ni97s61mcejk8W1fQw==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dev: true + + /dir-glob/3.0.1: + resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} + engines: {node: '>=8'} + dependencies: + path-type: 4.0.0 + dev: true + + /dns-equal/1.0.0: + resolution: {integrity: sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==} + dev: true + + /dns-packet/1.3.4: + resolution: {integrity: sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==} + dependencies: + ip: 1.1.8 + safe-buffer: 5.2.1 + dev: true + + /dns-txt/2.0.2: + resolution: {integrity: sha512-Ix5PrWjphuSoUXV/Zv5gaFHjnaJtb02F2+Si3Ht9dyJ87+Z/lMmy+dpNHtTGraNK958ndXq2i+GLkWsWHcKaBQ==} + dependencies: + buffer-indexof: 1.1.1 + dev: true + + /doctrine/2.1.0: + resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} + engines: {node: '>=0.10.0'} + dependencies: + esutils: 2.0.3 + dev: true + + /doctrine/3.0.0: + resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} + engines: {node: '>=6.0.0'} + dependencies: + esutils: 2.0.3 + dev: true + + /dom-converter/0.2.0: + resolution: {integrity: sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==} + dependencies: + utila: 0.4.0 + dev: true + + /dom-helpers/5.2.1: + resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==} + dependencies: + '@babel/runtime': 7.18.9 + csstype: 3.1.0 + dev: false + + /dom-lib/3.1.2: + resolution: {integrity: sha512-FKw/w51guhTwiSnyCQKTxEwglnZG7Q1qJO62asKwedcqCCHwrwQP8DnMPBTXL9y3JTePFDaPS95GLha/Q9nd/w==} + dependencies: + '@babel/runtime': 7.18.9 + dev: false + + /dom-serializer/1.4.1: + resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==} + dependencies: + domelementtype: 2.3.0 + domhandler: 4.3.1 + entities: 2.2.0 + dev: true + + /domelementtype/2.3.0: + resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} + dev: true + + /domhandler/4.3.1: + resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==} + engines: {node: '>= 4'} + dependencies: + domelementtype: 2.3.0 + dev: true + + /domutils/2.8.0: + resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==} + dependencies: + dom-serializer: 1.4.1 + domelementtype: 2.3.0 + domhandler: 4.3.1 + dev: true + + /dot-case/3.0.4: + resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} + dependencies: + no-case: 3.0.4 + tslib: 2.4.0 + dev: true + + /dot-prop/5.3.0: + resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} + engines: {node: '>=8'} + dependencies: + is-obj: 2.0.0 + dev: true + + /ee-first/1.1.1: + resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} + dev: true + + /electron-to-chromium/1.4.222: + resolution: {integrity: sha512-gEM2awN5HZknWdLbngk4uQCVfhucFAfFzuchP3wM3NN6eow1eDU0dFy2kts43FB20ZfhVFF0jmFSTb1h5OhyIg==} + dev: true + + /emoji-regex/7.0.3: + resolution: {integrity: sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==} + dev: true + + /emoji-regex/8.0.0: + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + dev: true + + /emojis-list/3.0.0: + resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==} + engines: {node: '>= 4'} + dev: true + + /encodeurl/1.0.2: + resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} + engines: {node: '>= 0.8'} + dev: true + + /end-of-stream/1.4.4: + resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} + dependencies: + once: 1.4.0 + dev: true + + /enhanced-resolve/5.10.0: + resolution: {integrity: sha512-T0yTFjdpldGY8PmuXXR0PyQ1ufZpEGiHVrp7zHKB7jdR4qlmZHhONVM5AQOAWXuF/w3dnHbEQVrNptJgt7F+cQ==} + engines: {node: '>=10.13.0'} + dependencies: + graceful-fs: 4.2.10 + tapable: 2.2.1 + dev: true + + /enquirer/2.3.6: + resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} + engines: {node: '>=8.6'} + dependencies: + ansi-colors: 4.1.3 + dev: true + + /entities/2.2.0: + resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} + dev: true + + /entities/4.3.1: + resolution: {integrity: sha512-o4q/dYJlmyjP2zfnaWDUC6A3BQFmVTX+tZPezK7k0GLSU9QYCauscf5Y+qcEPzKL+EixVouYDgLQK5H9GrLpkg==} + engines: {node: '>=0.12'} + dev: true + + /envinfo/7.8.1: + resolution: {integrity: sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==} + engines: {node: '>=4'} + hasBin: true + dev: true + + /errno/0.1.8: + resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==} + hasBin: true + dependencies: + prr: 1.0.1 + dev: true + + /error-ex/1.3.2: + resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} + dependencies: + is-arrayish: 0.2.1 + dev: true + + /es-abstract/1.20.1: + resolution: {integrity: sha512-WEm2oBhfoI2sImeM4OF2zE2V3BYdSF+KnSi9Sidz51fQHd7+JuF8Xgcj9/0o+OWeIeIS/MiuNnlruQrJf16GQA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + es-to-primitive: 1.2.1 + function-bind: 1.1.1 + function.prototype.name: 1.1.5 + get-intrinsic: 1.1.2 + get-symbol-description: 1.0.0 + has: 1.0.3 + has-property-descriptors: 1.0.0 + has-symbols: 1.0.3 + internal-slot: 1.0.3 + is-callable: 1.2.4 + is-negative-zero: 2.0.2 + is-regex: 1.1.4 + is-shared-array-buffer: 1.0.2 + is-string: 1.0.7 + is-weakref: 1.0.2 + object-inspect: 1.12.2 + object-keys: 1.1.1 + object.assign: 4.1.4 + regexp.prototype.flags: 1.4.3 + string.prototype.trimend: 1.0.5 + string.prototype.trimstart: 1.0.5 + unbox-primitive: 1.0.2 + dev: true + + /es-module-lexer/0.9.3: + resolution: {integrity: sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==} + dev: true + + /es-shim-unscopables/1.0.0: + resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==} + dependencies: + has: 1.0.3 + dev: true + + /es-to-primitive/1.2.1: + resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} + engines: {node: '>= 0.4'} + dependencies: + is-callable: 1.2.4 + is-date-object: 1.0.5 + is-symbol: 1.0.4 + dev: true + + /escalade/3.1.1: + resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} + engines: {node: '>=6'} + dev: true + + /escape-html/1.0.3: + resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} + dev: true + + /escape-string-regexp/1.0.5: + resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} + engines: {node: '>=0.8.0'} + dev: true + + /escape-string-regexp/2.0.0: + resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==} + engines: {node: '>=8'} + dev: true + + /escape-string-regexp/4.0.0: + resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} + engines: {node: '>=10'} + dev: true + + /eslint-config-prettier/8.5.0_eslint@7.32.0: + resolution: {integrity: sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==} + hasBin: true + peerDependencies: + eslint: '>=7.0.0' + dependencies: + eslint: 7.32.0 + dev: true + + /eslint-import-resolver-node/0.3.6: + resolution: {integrity: sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==} + dependencies: + debug: 3.2.7 + resolve: 1.22.1 + transitivePeerDependencies: + - supports-color + dev: true + + /eslint-module-utils/2.7.4_l5vc4zws6hnbyillomiys5arha: + resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==} + engines: {node: '>=4'} + peerDependencies: + '@typescript-eslint/parser': '*' + eslint: '*' + eslint-import-resolver-node: '*' + eslint-import-resolver-typescript: '*' + eslint-import-resolver-webpack: '*' + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true + eslint: + optional: true + eslint-import-resolver-node: + optional: true + eslint-import-resolver-typescript: + optional: true + eslint-import-resolver-webpack: + optional: true + dependencies: + '@typescript-eslint/parser': 5.33.1_hxadhbs2xogijvk7vq4t2azzbu + debug: 3.2.7 + eslint: 7.32.0 + eslint-import-resolver-node: 0.3.6 + transitivePeerDependencies: + - supports-color + dev: true + + /eslint-plugin-babel/5.3.1_eslint@7.32.0: + resolution: {integrity: sha512-VsQEr6NH3dj664+EyxJwO4FCYm/00JhYb3Sk3ft8o+fpKuIfQ9TaW6uVUfvwMXHcf/lsnRIoyFPsLMyiWCSL/g==} + engines: {node: '>=4'} + peerDependencies: + eslint: '>=4.0.0' + dependencies: + eslint: 7.32.0 + eslint-rule-composer: 0.3.0 + dev: true + + /eslint-plugin-import/2.26.0_nu5s4r56nfvoalq5ozim776tpu: + resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==} + engines: {node: '>=4'} + peerDependencies: + '@typescript-eslint/parser': '*' + eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true + dependencies: + '@typescript-eslint/parser': 5.33.1_hxadhbs2xogijvk7vq4t2azzbu + array-includes: 3.1.5 + array.prototype.flat: 1.3.0 + debug: 2.6.9 + doctrine: 2.1.0 + eslint: 7.32.0 + eslint-import-resolver-node: 0.3.6 + eslint-module-utils: 2.7.4_l5vc4zws6hnbyillomiys5arha + has: 1.0.3 + is-core-module: 2.10.0 + is-glob: 4.0.3 + minimatch: 3.1.2 + object.values: 1.1.5 + resolve: 1.22.1 + tsconfig-paths: 3.14.1 + transitivePeerDependencies: + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - supports-color + dev: true + + /eslint-plugin-react-hooks/4.6.0_eslint@7.32.0: + resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} + engines: {node: '>=10'} + peerDependencies: + eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 + dependencies: + eslint: 7.32.0 + dev: true + + /eslint-plugin-react/7.30.1_eslint@7.32.0: + resolution: {integrity: sha512-NbEvI9jtqO46yJA3wcRF9Mo0lF9T/jhdHqhCHXiXtD+Zcb98812wvokjWpU7Q4QH5edo6dmqrukxVvWWXHlsUg==} + engines: {node: '>=4'} + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + dependencies: + array-includes: 3.1.5 + array.prototype.flatmap: 1.3.0 + doctrine: 2.1.0 + eslint: 7.32.0 + estraverse: 5.3.0 + jsx-ast-utils: 3.3.3 + minimatch: 3.1.2 + object.entries: 1.1.5 + object.fromentries: 2.0.5 + object.hasown: 1.1.1 + object.values: 1.1.5 + prop-types: 15.8.1 + resolve: 2.0.0-next.4 + semver: 6.3.0 + string.prototype.matchall: 4.0.7 + dev: true + + /eslint-rule-composer/0.3.0: + resolution: {integrity: sha512-bt+Sh8CtDmn2OajxvNO+BX7Wn4CIWMpTRm3MaiKPCQcnnlm0CS2mhui6QaoeQugs+3Kj2ESKEEGJUdVafwhiCg==} + engines: {node: '>=4.0.0'} + dev: true + + /eslint-scope/5.1.1: + resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} + engines: {node: '>=8.0.0'} + dependencies: + esrecurse: 4.3.0 + estraverse: 4.3.0 + dev: true + + /eslint-utils/2.1.0: + resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==} + engines: {node: '>=6'} + dependencies: + eslint-visitor-keys: 1.3.0 + dev: true + + /eslint-utils/3.0.0_eslint@7.32.0: + resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} + engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} + peerDependencies: + eslint: '>=5' + dependencies: + eslint: 7.32.0 + eslint-visitor-keys: 2.1.0 + dev: true + + /eslint-visitor-keys/1.3.0: + resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==} + engines: {node: '>=4'} + dev: true + + /eslint-visitor-keys/2.1.0: + resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} + engines: {node: '>=10'} + dev: true + + /eslint-visitor-keys/3.3.0: + resolution: {integrity: sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dev: true + + /eslint/7.32.0: + resolution: {integrity: sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==} + engines: {node: ^10.12.0 || >=12.0.0} + hasBin: true + dependencies: + '@babel/code-frame': 7.12.11 + '@eslint/eslintrc': 0.4.3 + '@humanwhocodes/config-array': 0.5.0 + ajv: 6.12.6 + chalk: 4.1.2 + cross-spawn: 7.0.3 + debug: 4.3.4 + doctrine: 3.0.0 + enquirer: 2.3.6 + escape-string-regexp: 4.0.0 + eslint-scope: 5.1.1 + eslint-utils: 2.1.0 + eslint-visitor-keys: 2.1.0 + espree: 7.3.1 + esquery: 1.4.0 + esutils: 2.0.3 + fast-deep-equal: 3.1.3 + file-entry-cache: 6.0.1 + functional-red-black-tree: 1.0.1 + glob-parent: 5.1.2 + globals: 13.17.0 + ignore: 4.0.6 + import-fresh: 3.3.0 + imurmurhash: 0.1.4 + is-glob: 4.0.3 + js-yaml: 3.14.1 + json-stable-stringify-without-jsonify: 1.0.1 + levn: 0.4.1 + lodash.merge: 4.6.2 + minimatch: 3.1.2 + natural-compare: 1.4.0 + optionator: 0.9.1 + progress: 2.0.3 + regexpp: 3.2.0 + semver: 7.3.7 + strip-ansi: 6.0.1 + strip-json-comments: 3.1.1 + table: 6.8.0 + text-table: 0.2.0 + v8-compile-cache: 2.3.0 + transitivePeerDependencies: + - supports-color + dev: true + + /espree/7.3.1: + resolution: {integrity: sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==} + engines: {node: ^10.12.0 || >=12.0.0} + dependencies: + acorn: 7.4.1 + acorn-jsx: 5.3.2_acorn@7.4.1 + eslint-visitor-keys: 1.3.0 + dev: true + + /esprima/4.0.1: + resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} + engines: {node: '>=4'} + hasBin: true + dev: true + + /esquery/1.4.0: + resolution: {integrity: sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==} + engines: {node: '>=0.10'} + dependencies: + estraverse: 5.3.0 + dev: true + + /esrecurse/4.3.0: + resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} + engines: {node: '>=4.0'} + dependencies: + estraverse: 5.3.0 + dev: true + + /estraverse/4.3.0: + resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} + engines: {node: '>=4.0'} + dev: true + + /estraverse/5.3.0: + resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} + engines: {node: '>=4.0'} + dev: true + + /esutils/2.0.3: + resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} + engines: {node: '>=0.10.0'} + dev: true + + /etag/1.8.1: + resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} + engines: {node: '>= 0.6'} + dev: true + + /eventemitter3/4.0.7: + resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==} + dev: true + + /events/3.3.0: + resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} + engines: {node: '>=0.8.x'} + dev: true + + /eventsource/2.0.2: + resolution: {integrity: sha512-IzUmBGPR3+oUG9dUeXynyNmf91/3zUSJg1lCktzKw47OXuhco54U3r9B7O4XX+Rb1Itm9OZ2b0RkTs10bICOxA==} + engines: {node: '>=12.0.0'} + dev: true + + /execa/1.0.0: + resolution: {integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==} + engines: {node: '>=6'} + dependencies: + cross-spawn: 6.0.5 + get-stream: 4.1.0 + is-stream: 1.1.0 + npm-run-path: 2.0.2 + p-finally: 1.0.0 + signal-exit: 3.0.7 + strip-eof: 1.0.0 + dev: true + + /expand-brackets/2.1.4_supports-color@6.1.0: + resolution: {integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==} + engines: {node: '>=0.10.0'} + dependencies: + debug: 2.6.9_supports-color@6.1.0 + define-property: 0.2.5 + extend-shallow: 2.0.1 + posix-character-classes: 0.1.1 + regex-not: 1.0.2 + snapdragon: 0.8.2_supports-color@6.1.0 + to-regex: 3.0.2 + transitivePeerDependencies: + - supports-color + dev: true + + /expect/28.1.3: + resolution: {integrity: sha512-eEh0xn8HlsuOBxFgIss+2mX85VAS4Qy3OSkjV7rlBWljtA4oWH37glVGyOZSZvErDT/yBywZdPGwCXuTvSG85g==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@jest/expect-utils': 28.1.3 + jest-get-type: 28.0.2 + jest-matcher-utils: 28.1.3 + jest-message-util: 28.1.3 + jest-util: 28.1.3 + dev: true + + /express/4.18.1_supports-color@6.1.0: + resolution: {integrity: sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==} + engines: {node: '>= 0.10.0'} + dependencies: + accepts: 1.3.8 + array-flatten: 1.1.1 + body-parser: 1.20.0_supports-color@6.1.0 + content-disposition: 0.5.4 + content-type: 1.0.4 + cookie: 0.5.0 + cookie-signature: 1.0.6 + debug: 2.6.9_supports-color@6.1.0 + depd: 2.0.0 + encodeurl: 1.0.2 + escape-html: 1.0.3 + etag: 1.8.1 + finalhandler: 1.2.0_supports-color@6.1.0 + fresh: 0.5.2 + http-errors: 2.0.0 + merge-descriptors: 1.0.1 + methods: 1.1.2 + on-finished: 2.4.1 + parseurl: 1.3.3 + path-to-regexp: 0.1.7 + proxy-addr: 2.0.7 + qs: 6.10.3 + range-parser: 1.2.1 + safe-buffer: 5.2.1 + send: 0.18.0_supports-color@6.1.0 + serve-static: 1.15.0_supports-color@6.1.0 + setprototypeof: 1.2.0 + statuses: 2.0.1 + type-is: 1.6.18 + utils-merge: 1.0.1 + vary: 1.1.2 + transitivePeerDependencies: + - supports-color + dev: true + + /extend-shallow/2.0.1: + resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==} + engines: {node: '>=0.10.0'} + dependencies: + is-extendable: 0.1.1 + dev: true + + /extend-shallow/3.0.2: + resolution: {integrity: sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==} + engines: {node: '>=0.10.0'} + dependencies: + assign-symbols: 1.0.0 + is-extendable: 1.0.1 + dev: true + + /extglob/2.0.4_supports-color@6.1.0: + resolution: {integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==} + engines: {node: '>=0.10.0'} + dependencies: + array-unique: 0.3.2 + define-property: 1.0.0 + expand-brackets: 2.1.4_supports-color@6.1.0 + extend-shallow: 2.0.1 + fragment-cache: 0.2.1 + regex-not: 1.0.2 + snapdragon: 0.8.2_supports-color@6.1.0 + to-regex: 3.0.2 + transitivePeerDependencies: + - supports-color + dev: true + + /faker/6.6.6: + resolution: {integrity: sha512-9tCqYEDHI5RYFQigXFwF1hnCwcWCOJl/hmll0lr5D2Ljjb0o4wphb69wikeJDz5qCEzXCoPvG6ss5SDP6IfOdg==} + dev: false + + /fast-deep-equal/3.1.3: + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + dev: true + + /fast-glob/3.2.11: + resolution: {integrity: sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==} + engines: {node: '>=8.6.0'} + dependencies: + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 + glob-parent: 5.1.2 + merge2: 1.4.1 + micromatch: 4.0.5 + dev: true + + /fast-json-stable-stringify/2.1.0: + resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} + dev: true + + /fast-levenshtein/2.0.6: + resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} + dev: true + + /fastest-levenshtein/1.0.16: + resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==} + engines: {node: '>= 4.9.1'} + dev: true + + /fastq/1.13.0: + resolution: {integrity: sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==} + dependencies: + reusify: 1.0.4 + dev: true + + /faye-websocket/0.11.4: + resolution: {integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==} + engines: {node: '>=0.8.0'} + dependencies: + websocket-driver: 0.7.4 + dev: true + + /file-entry-cache/6.0.1: + resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} + engines: {node: ^10.12.0 || >=12.0.0} + dependencies: + flat-cache: 3.0.4 + dev: true + + /file-loader/6.2.0_webpack@5.74.0: + resolution: {integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==} + engines: {node: '>= 10.13.0'} + peerDependencies: + webpack: ^4.0.0 || ^5.0.0 + dependencies: + loader-utils: 2.0.2 + schema-utils: 3.1.1 + webpack: 5.74.0_webpack-cli@4.10.0 + dev: true + + /file-uri-to-path/1.0.0: + resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==} + dev: true + optional: true + + /filename-reserved-regex/1.0.0: + resolution: {integrity: sha512-UZArj7+U+2reBBVCvVmRlyq9D7EYQdUtuNN+1iz7pF1jGcJ2L0TjiRCxsTZfj2xFbM4c25uGCUDpKTHA7L2TKg==} + engines: {node: '>=0.10.0'} + dev: true + + /filenamify-url/1.0.0: + resolution: {integrity: sha512-O9K9JcZeF5VdZWM1qR92NSv1WY2EofwudQayPx5dbnnFl9k0IcZha4eV/FGkjnBK+1irOQInij0yiooCHu/0Fg==} + engines: {node: '>=0.10.0'} + dependencies: + filenamify: 1.2.1 + humanize-url: 1.0.1 + dev: true + + /filenamify/1.2.1: + resolution: {integrity: sha512-DKVP0WQcB7WaIMSwDETqImRej2fepPqvXQjaVib7LRZn9Rxn5UbvK2tYTqGf1A1DkIprQQkG4XSQXSOZp7Q3GQ==} + engines: {node: '>=0.10.0'} + dependencies: + filename-reserved-regex: 1.0.0 + strip-outer: 1.0.1 + trim-repeated: 1.0.0 + dev: true + + /fill-range/4.0.0: + resolution: {integrity: sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==} + engines: {node: '>=0.10.0'} + dependencies: + extend-shallow: 2.0.1 + is-number: 3.0.0 + repeat-string: 1.6.1 + to-regex-range: 2.1.1 + dev: true + + /fill-range/7.0.1: + resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} + engines: {node: '>=8'} + dependencies: + to-regex-range: 5.0.1 + dev: true + + /finalhandler/1.2.0_supports-color@6.1.0: + resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==} + engines: {node: '>= 0.8'} + dependencies: + debug: 2.6.9_supports-color@6.1.0 + encodeurl: 1.0.2 + escape-html: 1.0.3 + on-finished: 2.4.1 + parseurl: 1.3.3 + statuses: 2.0.1 + unpipe: 1.0.0 + transitivePeerDependencies: + - supports-color + dev: true + + /find-babel-config/1.2.0: + resolution: {integrity: sha512-jB2CHJeqy6a820ssiqwrKMeyC6nNdmrcgkKWJWmpoxpE8RKciYJXCcXRq1h2AzCo5I5BJeN2tkGEO3hLTuePRA==} + engines: {node: '>=4.0.0'} + dependencies: + json5: 0.5.1 + path-exists: 3.0.0 + dev: true + + /find-cache-dir/3.3.2: + resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==} + engines: {node: '>=8'} + dependencies: + commondir: 1.0.1 + make-dir: 3.1.0 + pkg-dir: 4.2.0 + dev: true + + /find-up/2.1.0: + resolution: {integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==} + engines: {node: '>=4'} + dependencies: + locate-path: 2.0.0 + dev: true + + /find-up/3.0.0: + resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==} + engines: {node: '>=6'} + dependencies: + locate-path: 3.0.0 + dev: true + + /find-up/4.1.0: + resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} + engines: {node: '>=8'} + dependencies: + locate-path: 5.0.0 + path-exists: 4.0.0 + dev: true + + /flat-cache/3.0.4: + resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==} + engines: {node: ^10.12.0 || >=12.0.0} + dependencies: + flatted: 3.2.6 + rimraf: 3.0.2 + dev: true + + /flatted/3.2.6: + resolution: {integrity: sha512-0sQoMh9s0BYsm+12Huy/rkKxVu4R1+r96YX5cG44rHV0pQ6iC3Q+mkoMFaGWObMFYQxCVT+ssG1ksneA2MI9KQ==} + dev: true + + /follow-redirects/1.15.1_debug@4.3.4: + resolution: {integrity: sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA==} + engines: {node: '>=4.0'} + peerDependencies: + debug: '*' + peerDependenciesMeta: + debug: + optional: true + dependencies: + debug: 4.3.4_supports-color@6.1.0 + dev: true + + /for-in/1.0.2: + resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==} + engines: {node: '>=0.10.0'} + dev: true + + /forwarded/0.2.0: + resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} + engines: {node: '>= 0.6'} + dev: true + + /fraction.js/4.2.0: + resolution: {integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==} + dev: true + + /fragment-cache/0.2.1: + resolution: {integrity: sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==} + engines: {node: '>=0.10.0'} + dependencies: + map-cache: 0.2.2 + dev: true + + /fresh/0.5.2: + resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} + engines: {node: '>= 0.6'} + dev: true + + /fs-extra/5.0.0: + resolution: {integrity: sha512-66Pm4RYbjzdyeuqudYqhFiNBbCIuI9kgRqLPSHIlXHidW8NIQtVdkM1yeZ4lXwuhbTETv3EUGMNHAAw6hiundQ==} + dependencies: + graceful-fs: 4.1.11 + jsonfile: 4.0.0 + universalify: 0.1.2 + dev: true + + /fs-readdir-recursive/1.1.0: + resolution: {integrity: sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA==} + dev: true + + /fs.realpath/1.0.0: + resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} + dev: true + + /fsevents/1.2.13: + resolution: {integrity: sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==} + engines: {node: '>= 4.0'} + os: [darwin] + deprecated: fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to fsevents 2. + requiresBuild: true + dependencies: + bindings: 1.5.0 + nan: 2.16.0 + dev: true + optional: true + + /fsevents/2.3.2: + resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /function-bind/1.1.1: + resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} + dev: true + + /function.prototype.name/1.1.5: + resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.1 + functions-have-names: 1.2.3 + dev: true + + /functional-red-black-tree/1.0.1: + resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==} + dev: true + + /functions-have-names/1.2.3: + resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} + dev: true + + /gensync/1.0.0-beta.2: + resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} + engines: {node: '>=6.9.0'} + dev: true + + /get-caller-file/2.0.5: + resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} + engines: {node: 6.* || 8.* || >= 10.*} + dev: true + + /get-intrinsic/1.1.2: + resolution: {integrity: sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA==} + dependencies: + function-bind: 1.1.1 + has: 1.0.3 + has-symbols: 1.0.3 + dev: true + + /get-pkg-repo/4.2.1: + resolution: {integrity: sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA==} + engines: {node: '>=6.9.0'} + hasBin: true + dependencies: + '@hutson/parse-repository-url': 3.0.2 + hosted-git-info: 4.1.0 + through2: 2.0.5 + yargs: 16.2.0 + dev: true + + /get-stream/4.1.0: + resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==} + engines: {node: '>=6'} + dependencies: + pump: 3.0.0 + dev: true + + /get-symbol-description/1.0.0: + resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.1.2 + dev: true + + /get-value/2.0.6: + resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==} + engines: {node: '>=0.10.0'} + dev: true + + /gh-pages/1.2.0: + resolution: {integrity: sha512-cGLYAvxtlQ1iTwAS4g7FreZPXoE/g62Fsxln2mmR19mgs4zZI+XJ+wVVUhBFCF/0+Nmvbq+abyTWue1m1BSnmg==} + engines: {node: '>=4'} + hasBin: true + dependencies: + async: 2.6.1 + commander: 2.15.1 + filenamify-url: 1.0.0 + fs-extra: 5.0.0 + globby: 6.1.0 + graceful-fs: 4.1.11 + rimraf: 2.7.1 + dev: true + + /git-raw-commits/2.0.11: + resolution: {integrity: sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==} + engines: {node: '>=10'} + hasBin: true + dependencies: + dargs: 7.0.0 + lodash: 4.17.21 + meow: 8.1.2 + split2: 3.2.2 + through2: 4.0.2 + dev: true + + /git-remote-origin-url/2.0.0: + resolution: {integrity: sha512-eU+GGrZgccNJcsDH5LkXR3PB9M958hxc7sbA8DFJjrv9j4L2P/eZfKhM+QD6wyzpiv+b1BpK0XrYCxkovtjSLw==} + engines: {node: '>=4'} + dependencies: + gitconfiglocal: 1.0.0 + pify: 2.3.0 + dev: true + + /git-semver-tags/4.1.1: + resolution: {integrity: sha512-OWyMt5zBe7xFs8vglMmhM9lRQzCWL3WjHtxNNfJTMngGym7pC1kh8sP6jevfydJ6LP3ZvGxfb6ABYgPUM0mtsA==} + engines: {node: '>=10'} + hasBin: true + dependencies: + meow: 8.1.2 + semver: 6.3.0 + dev: true + + /gitconfiglocal/1.0.0: + resolution: {integrity: sha512-spLUXeTAVHxDtKsJc8FkFVgFtMdEN9qPGpL23VfSHx4fP4+Ds097IXLvymbnDH8FnmxX5Nr9bPw3A+AQ6mWEaQ==} + dependencies: + ini: 1.3.8 + dev: true + + /glob-parent/3.1.0: + resolution: {integrity: sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==} + dependencies: + is-glob: 3.1.0 + path-dirname: 1.0.2 + dev: true + + /glob-parent/5.1.2: + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} + engines: {node: '>= 6'} + dependencies: + is-glob: 4.0.3 + dev: true + + /glob-to-regexp/0.4.1: + resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} + dev: true + + /glob/7.2.3: + resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 3.1.2 + once: 1.4.0 + path-is-absolute: 1.0.1 + dev: true + + /globals/11.12.0: + resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} + engines: {node: '>=4'} + dev: true + + /globals/13.17.0: + resolution: {integrity: sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw==} + engines: {node: '>=8'} + dependencies: + type-fest: 0.20.2 + dev: true + + /globby/11.1.0: + resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} + engines: {node: '>=10'} + dependencies: + array-union: 2.1.0 + dir-glob: 3.0.1 + fast-glob: 3.2.11 + ignore: 5.2.0 + merge2: 1.4.1 + slash: 3.0.0 + dev: true + + /globby/6.1.0: + resolution: {integrity: sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==} + engines: {node: '>=0.10.0'} + dependencies: + array-union: 1.0.2 + glob: 7.2.3 + object-assign: 4.1.1 + pify: 2.3.0 + pinkie-promise: 2.0.1 + dev: true + + /graceful-fs/4.1.11: + resolution: {integrity: sha512-9x6DLUuW+ROFdMTII9ec9t/FK8va6kYcC8/LggumssLM8kNv7IdFl3VrNUqgir2tJuBVxBga1QBoRziZacO5Zg==} + engines: {node: '>=0.4.0'} + dev: true + + /graceful-fs/4.2.10: + resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==} + dev: true + + /handle-thing/2.0.1: + resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==} + dev: true + + /handlebars/4.7.7: + resolution: {integrity: sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==} + engines: {node: '>=0.4.7'} + hasBin: true + dependencies: + minimist: 1.2.6 + neo-async: 2.6.2 + source-map: 0.6.1 + wordwrap: 1.0.0 + optionalDependencies: + uglify-js: 3.17.0 + dev: true + + /hard-rejection/2.1.0: + resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==} + engines: {node: '>=6'} + dev: true + + /has-bigints/1.0.2: + resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} + dev: true + + /has-flag/3.0.0: + resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} + engines: {node: '>=4'} + dev: true + + /has-flag/4.0.0: + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} + dev: true + + /has-property-descriptors/1.0.0: + resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==} + dependencies: + get-intrinsic: 1.1.2 + dev: true + + /has-symbols/1.0.3: + resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} + engines: {node: '>= 0.4'} + dev: true + + /has-tostringtag/1.0.0: + resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} + engines: {node: '>= 0.4'} + dependencies: + has-symbols: 1.0.3 + dev: true + + /has-value/0.3.1: + resolution: {integrity: sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==} + engines: {node: '>=0.10.0'} + dependencies: + get-value: 2.0.6 + has-values: 0.1.4 + isobject: 2.1.0 + dev: true + + /has-value/1.0.0: + resolution: {integrity: sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==} + engines: {node: '>=0.10.0'} + dependencies: + get-value: 2.0.6 + has-values: 1.0.0 + isobject: 3.0.1 + dev: true + + /has-values/0.1.4: + resolution: {integrity: sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==} + engines: {node: '>=0.10.0'} + dev: true + + /has-values/1.0.0: + resolution: {integrity: sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==} + engines: {node: '>=0.10.0'} + dependencies: + is-number: 3.0.0 + kind-of: 4.0.0 + dev: true + + /has/1.0.3: + resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} + engines: {node: '>= 0.4.0'} + dependencies: + function-bind: 1.1.1 + dev: true + + /he/1.2.0: + resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} + hasBin: true + dev: true + + /history/5.3.0: + resolution: {integrity: sha512-ZqaKwjjrAYUYfLG+htGaIIZ4nioX2L70ZUMIFysS3xvBsSG4x/n1V6TXV3N8ZYNuFGlDirFg32T7B6WOUPDYcQ==} + dependencies: + '@babel/runtime': 7.18.9 + dev: false + + /hoist-non-react-statics/3.3.2: + resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==} + dependencies: + react-is: 16.13.1 + dev: false + + /hosted-git-info/2.8.9: + resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} + dev: true + + /hosted-git-info/4.1.0: + resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==} + engines: {node: '>=10'} + dependencies: + lru-cache: 6.0.0 + dev: true + + /hpack.js/2.1.6: + resolution: {integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==} + dependencies: + inherits: 2.0.4 + obuf: 1.1.2 + readable-stream: 2.3.7 + wbuf: 1.7.3 + dev: true + + /html-entities/1.4.0: + resolution: {integrity: sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==} + dev: true + + /html-minifier-terser/6.1.0: + resolution: {integrity: sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==} + engines: {node: '>=12'} + hasBin: true + dependencies: + camel-case: 4.1.2 + clean-css: 5.3.1 + commander: 8.3.0 + he: 1.2.0 + param-case: 3.0.4 + relateurl: 0.2.7 + terser: 5.14.2 + dev: true + + /html-webpack-plugin/5.5.0_webpack@5.74.0: + resolution: {integrity: sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==} + engines: {node: '>=10.13.0'} + peerDependencies: + webpack: ^5.20.0 + dependencies: + '@types/html-minifier-terser': 6.1.0 + html-minifier-terser: 6.1.0 + lodash: 4.17.21 + pretty-error: 4.0.0 + tapable: 2.2.1 + webpack: 5.74.0_webpack-cli@4.10.0 + dev: true + + /htmlparser2/6.1.0: + resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==} + dependencies: + domelementtype: 2.3.0 + domhandler: 4.3.1 + domutils: 2.8.0 + entities: 2.2.0 + dev: true + + /http-deceiver/1.2.7: + resolution: {integrity: sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==} + dev: true + + /http-errors/1.6.3: + resolution: {integrity: sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==} + engines: {node: '>= 0.6'} + dependencies: + depd: 1.1.2 + inherits: 2.0.3 + setprototypeof: 1.1.0 + statuses: 1.5.0 + dev: true + + /http-errors/2.0.0: + resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} + engines: {node: '>= 0.8'} + dependencies: + depd: 2.0.0 + inherits: 2.0.4 + setprototypeof: 1.2.0 + statuses: 2.0.1 + toidentifier: 1.0.1 + dev: true + + /http-parser-js/0.5.8: + resolution: {integrity: sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==} + dev: true + + /http-proxy-middleware/0.19.1_tmpgdztspuwvsxzgjkhoqk7duq: + resolution: {integrity: sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==} + engines: {node: '>=4.0.0'} + dependencies: + http-proxy: 1.18.1_debug@4.3.4 + is-glob: 4.0.3 + lodash: 4.17.21 + micromatch: 3.1.10_supports-color@6.1.0 + transitivePeerDependencies: + - debug + - supports-color + dev: true + + /http-proxy/1.18.1_debug@4.3.4: + resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==} + engines: {node: '>=8.0.0'} + dependencies: + eventemitter3: 4.0.7 + follow-redirects: 1.15.1_debug@4.3.4 + requires-port: 1.0.0 + transitivePeerDependencies: + - debug + dev: true + + /humanize-url/1.0.1: + resolution: {integrity: sha512-RtgTzXCPVb/te+e82NDhAc5paj+DuKSratIGAr+v+HZK24eAQ8LMoBGYoL7N/O+9iEc33AKHg45dOMKw3DNldQ==} + engines: {node: '>=0.10.0'} + dependencies: + normalize-url: 1.9.1 + strip-url-auth: 1.0.1 + dev: true + + /husky/8.0.1: + resolution: {integrity: sha512-xs7/chUH/CKdOCs7Zy0Aev9e/dKOMZf3K1Az1nar3tzlv0jfqnYtu235bstsWTmXOR0EfINrPa97yy4Lz6RiKw==} + engines: {node: '>=14'} + hasBin: true + dev: true + + /iconv-lite/0.4.24: + resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} + engines: {node: '>=0.10.0'} + dependencies: + safer-buffer: 2.1.2 + dev: true + + /iconv-lite/0.6.3: + resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} + engines: {node: '>=0.10.0'} + dependencies: + safer-buffer: 2.1.2 + dev: true + optional: true + + /icss-utils/5.1.0_postcss@8.4.16: + resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + dependencies: + postcss: 8.4.16 + dev: true + + /ignore/4.0.6: + resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==} + engines: {node: '>= 4'} + dev: true + + /ignore/5.2.0: + resolution: {integrity: sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==} + engines: {node: '>= 4'} + dev: true + + /image-size/0.5.5: + resolution: {integrity: sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==} + engines: {node: '>=0.10.0'} + hasBin: true + requiresBuild: true + dev: true + optional: true + + /import-fresh/3.3.0: + resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} + engines: {node: '>=6'} + dependencies: + parent-module: 1.0.1 + resolve-from: 4.0.0 + dev: true + + /import-local/2.0.0: + resolution: {integrity: sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==} + engines: {node: '>=6'} + hasBin: true + dependencies: + pkg-dir: 3.0.0 + resolve-cwd: 2.0.0 + dev: true + + /import-local/3.1.0: + resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==} + engines: {node: '>=8'} + hasBin: true + dependencies: + pkg-dir: 4.2.0 + resolve-cwd: 3.0.0 + dev: true + + /imurmurhash/0.1.4: + resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} + engines: {node: '>=0.8.19'} + dev: true + + /indent-string/4.0.0: + resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} + engines: {node: '>=8'} + dev: true + + /inflight/1.0.6: + resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} + dependencies: + once: 1.4.0 + wrappy: 1.0.2 + dev: true + + /inherits/2.0.3: + resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==} + dev: true + + /inherits/2.0.4: + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + dev: true + + /ini/1.3.8: + resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} + dev: true + + /insert-css/2.0.0: + resolution: {integrity: sha512-xGq5ISgcUP5cvGkS2MMFLtPDBtrtQPSFfC6gA6U8wHKqfjTIMZLZNxOItQnoSjdOzlXOLU/yD32RKC4SvjNbtA==} + dev: false + + /internal-ip/4.3.0: + resolution: {integrity: sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==} + engines: {node: '>=6'} + dependencies: + default-gateway: 4.2.0 + ipaddr.js: 1.9.1 + dev: true + + /internal-slot/1.0.3: + resolution: {integrity: sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==} + engines: {node: '>= 0.4'} + dependencies: + get-intrinsic: 1.1.2 + has: 1.0.3 + side-channel: 1.0.4 + dev: true + + /interpret/2.2.0: + resolution: {integrity: sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==} + engines: {node: '>= 0.10'} + dev: true + + /intl-messageformat/10.1.1: + resolution: {integrity: sha512-FeJne2oooYW6shLPbrqyjRX6hTELVrQ90Dn88z7NomLk/xZBCLxLPAkgaYaTQJBRBV78nZ933d8APHHkTQrD9Q==} + dependencies: + '@formatjs/ecma402-abstract': 1.11.8 + '@formatjs/fast-memoize': 1.2.4 + '@formatjs/icu-messageformat-parser': 2.1.4 + tslib: 2.4.0 + dev: false + + /ip-regex/2.1.0: + resolution: {integrity: sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==} + engines: {node: '>=4'} + dev: true + + /ip/1.1.8: + resolution: {integrity: sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==} + dev: true + + /ipaddr.js/1.9.1: + resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} + engines: {node: '>= 0.10'} + dev: true + + /is-absolute-url/3.0.3: + resolution: {integrity: sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==} + engines: {node: '>=8'} + dev: true + + /is-accessor-descriptor/0.1.6: + resolution: {integrity: sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==} + engines: {node: '>=0.10.0'} + dependencies: + kind-of: 3.2.2 + dev: true + + /is-accessor-descriptor/1.0.0: + resolution: {integrity: sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==} + engines: {node: '>=0.10.0'} + dependencies: + kind-of: 6.0.3 + dev: true + + /is-arguments/1.1.1: + resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + has-tostringtag: 1.0.0 + dev: true + + /is-arrayish/0.2.1: + resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} + dev: true + + /is-bigint/1.0.4: + resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} + dependencies: + has-bigints: 1.0.2 + dev: true + + /is-binary-path/1.0.1: + resolution: {integrity: sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==} + engines: {node: '>=0.10.0'} + dependencies: + binary-extensions: 1.13.1 + dev: true + + /is-binary-path/2.1.0: + resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} + engines: {node: '>=8'} + dependencies: + binary-extensions: 2.2.0 + dev: true + optional: true + + /is-boolean-object/1.1.2: + resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + has-tostringtag: 1.0.0 + dev: true + + /is-buffer/1.1.6: + resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==} + dev: true + + /is-callable/1.2.4: + resolution: {integrity: sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==} + engines: {node: '>= 0.4'} + dev: true + + /is-core-module/2.10.0: + resolution: {integrity: sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg==} + dependencies: + has: 1.0.3 + dev: true + + /is-data-descriptor/0.1.4: + resolution: {integrity: sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==} + engines: {node: '>=0.10.0'} + dependencies: + kind-of: 3.2.2 + dev: true + + /is-data-descriptor/1.0.0: + resolution: {integrity: sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==} + engines: {node: '>=0.10.0'} + dependencies: + kind-of: 6.0.3 + dev: true + + /is-date-object/1.0.5: + resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.0 + dev: true + + /is-descriptor/0.1.6: + resolution: {integrity: sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==} + engines: {node: '>=0.10.0'} + dependencies: + is-accessor-descriptor: 0.1.6 + is-data-descriptor: 0.1.4 + kind-of: 5.1.0 + dev: true + + /is-descriptor/1.0.2: + resolution: {integrity: sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==} + engines: {node: '>=0.10.0'} + dependencies: + is-accessor-descriptor: 1.0.0 + is-data-descriptor: 1.0.0 + kind-of: 6.0.3 + dev: true + + /is-extendable/0.1.1: + resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} + engines: {node: '>=0.10.0'} + dev: true + + /is-extendable/1.0.1: + resolution: {integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==} + engines: {node: '>=0.10.0'} + dependencies: + is-plain-object: 2.0.4 + dev: true + + /is-extglob/2.1.1: + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} + engines: {node: '>=0.10.0'} + dev: true + + /is-fullwidth-code-point/2.0.0: + resolution: {integrity: sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==} + engines: {node: '>=4'} + dev: true + + /is-fullwidth-code-point/3.0.0: + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} + engines: {node: '>=8'} + dev: true + + /is-glob/3.1.0: + resolution: {integrity: sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==} + engines: {node: '>=0.10.0'} + dependencies: + is-extglob: 2.1.1 + dev: true + + /is-glob/4.0.3: + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + engines: {node: '>=0.10.0'} + dependencies: + is-extglob: 2.1.1 + dev: true + + /is-negative-zero/2.0.2: + resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} + engines: {node: '>= 0.4'} + dev: true + + /is-number-object/1.0.7: + resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.0 + dev: true + + /is-number/3.0.0: + resolution: {integrity: sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==} + engines: {node: '>=0.10.0'} + dependencies: + kind-of: 3.2.2 + dev: true + + /is-number/7.0.0: + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} + dev: true + + /is-obj/2.0.0: + resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==} + engines: {node: '>=8'} + dev: true + + /is-path-cwd/2.2.0: + resolution: {integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==} + engines: {node: '>=6'} + dev: true + + /is-path-in-cwd/2.1.0: + resolution: {integrity: sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==} + engines: {node: '>=6'} + dependencies: + is-path-inside: 2.1.0 + dev: true + + /is-path-inside/2.1.0: + resolution: {integrity: sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==} + engines: {node: '>=6'} + dependencies: + path-is-inside: 1.0.2 + dev: true + + /is-plain-obj/1.1.0: + resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} + engines: {node: '>=0.10.0'} + dev: true + + /is-plain-object/2.0.4: + resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} + engines: {node: '>=0.10.0'} + dependencies: + isobject: 3.0.1 + dev: true + + /is-regex/1.1.4: + resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + has-tostringtag: 1.0.0 + dev: true + + /is-shared-array-buffer/1.0.2: + resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} + dependencies: + call-bind: 1.0.2 + dev: true + + /is-stream/1.1.0: + resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==} + engines: {node: '>=0.10.0'} + dev: true + + /is-string/1.0.7: + resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.0 + dev: true + + /is-symbol/1.0.4: + resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} + engines: {node: '>= 0.4'} + dependencies: + has-symbols: 1.0.3 + dev: true + + /is-text-path/1.0.1: + resolution: {integrity: sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==} + engines: {node: '>=0.10.0'} + dependencies: + text-extensions: 1.9.0 + dev: true + + /is-weakref/1.0.2: + resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} + dependencies: + call-bind: 1.0.2 + dev: true + + /is-what/3.14.1: + resolution: {integrity: sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==} + dev: true + + /is-windows/1.0.2: + resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} + engines: {node: '>=0.10.0'} + dev: true + + /is-wsl/1.1.0: + resolution: {integrity: sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==} + engines: {node: '>=4'} + dev: true + + /isarray/1.0.0: + resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} + dev: true + + /isexe/2.0.0: + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + dev: true + + /isobject/2.1.0: + resolution: {integrity: sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==} + engines: {node: '>=0.10.0'} + dependencies: + isarray: 1.0.0 + dev: true + + /isobject/3.0.1: + resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} + engines: {node: '>=0.10.0'} + dev: true + + /jest-diff/28.1.3: + resolution: {integrity: sha512-8RqP1B/OXzjjTWkqMX67iqgwBVJRgCyKD3L9nq+6ZqJMdvjE8RgHktqZ6jNrkdMT+dJuYNI3rhQpxaz7drJHfw==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + chalk: 4.1.2 + diff-sequences: 28.1.1 + jest-get-type: 28.0.2 + pretty-format: 28.1.3 + dev: true + + /jest-get-type/28.0.2: + resolution: {integrity: sha512-ioj2w9/DxSYHfOm5lJKCdcAmPJzQXmbM/Url3rhlghrPvT3tt+7a/+oXc9azkKmLvoiXjtV83bEWqi+vs5nlPA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dev: true + + /jest-matcher-utils/28.1.3: + resolution: {integrity: sha512-kQeJ7qHemKfbzKoGjHHrRKH6atgxMk8Enkk2iPQ3XwO6oE/KYD8lMYOziCkeSB9G4adPM4nR1DE8Tf5JeWH6Bw==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + chalk: 4.1.2 + jest-diff: 28.1.3 + jest-get-type: 28.0.2 + pretty-format: 28.1.3 + dev: true + + /jest-message-util/28.1.3: + resolution: {integrity: sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@babel/code-frame': 7.18.6 + '@jest/types': 28.1.3 + '@types/stack-utils': 2.0.1 + chalk: 4.1.2 + graceful-fs: 4.2.10 + micromatch: 4.0.5 + pretty-format: 28.1.3 + slash: 3.0.0 + stack-utils: 2.0.5 + dev: true + + /jest-util/28.1.3: + resolution: {integrity: sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@jest/types': 28.1.3 + '@types/node': 18.7.6 + chalk: 4.1.2 + ci-info: 3.3.2 + graceful-fs: 4.2.10 + picomatch: 2.3.1 + dev: true + + /jest-worker/27.5.1: + resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} + engines: {node: '>= 10.13.0'} + dependencies: + '@types/node': 18.7.6 + merge-stream: 2.0.0 + supports-color: 8.1.1 + dev: true + + /js-tokens/4.0.0: + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + + /js-yaml/3.14.1: + resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} + hasBin: true + dependencies: + argparse: 1.0.10 + esprima: 4.0.1 + dev: true + + /jsesc/0.5.0: + resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} + hasBin: true + dev: true + + /jsesc/2.5.2: + resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} + engines: {node: '>=4'} + hasBin: true + dev: true + + /json-parse-better-errors/1.0.2: + resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==} + dev: true + + /json-parse-even-better-errors/2.3.1: + resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} + dev: true + + /json-schema-traverse/0.4.1: + resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} + dev: true + + /json-schema-traverse/1.0.0: + resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} + dev: true + + /json-stable-stringify-without-jsonify/1.0.1: + resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} + dev: true + + /json-stringify-safe/5.0.1: + resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==} + dev: true + + /json5/0.5.1: + resolution: {integrity: sha512-4xrs1aW+6N5DalkqSVA8fxh458CXvR99WU8WLKmq4v8eWAL86Xo3BVqyd3SkA9wEVjCMqyvvRRkshAdOnBp5rw==} + hasBin: true + dev: true + + /json5/1.0.1: + resolution: {integrity: sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==} + hasBin: true + dependencies: + minimist: 1.2.6 + dev: true + + /json5/2.2.1: + resolution: {integrity: sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==} + engines: {node: '>=6'} + hasBin: true + dev: true + + /jsonfile/4.0.0: + resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} + optionalDependencies: + graceful-fs: 4.2.10 + dev: true + + /jsonparse/1.3.1: + resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} + engines: {'0': node >= 0.2.0} + dev: true + + /jsx-ast-utils/3.3.3: + resolution: {integrity: sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==} + engines: {node: '>=4.0'} + dependencies: + array-includes: 3.1.5 + object.assign: 4.1.4 + dev: true + + /killable/1.0.1: + resolution: {integrity: sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==} + dev: true + + /kind-of/3.2.2: + resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==} + engines: {node: '>=0.10.0'} + dependencies: + is-buffer: 1.1.6 + dev: true + + /kind-of/4.0.0: + resolution: {integrity: sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==} + engines: {node: '>=0.10.0'} + dependencies: + is-buffer: 1.1.6 + dev: true + + /kind-of/5.1.0: + resolution: {integrity: sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==} + engines: {node: '>=0.10.0'} + dev: true + + /kind-of/6.0.3: + resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} + engines: {node: '>=0.10.0'} + dev: true + + /klona/2.0.5: + resolution: {integrity: sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==} + engines: {node: '>= 8'} + dev: true + + /less-loader/11.0.0_less@4.1.3+webpack@5.74.0: + resolution: {integrity: sha512-9+LOWWjuoectIEx3zrfN83NAGxSUB5pWEabbbidVQVgZhN+wN68pOvuyirVlH1IK4VT1f3TmlyvAnCXh8O5KEw==} + engines: {node: '>= 14.15.0'} + peerDependencies: + less: ^3.5.0 || ^4.0.0 + webpack: ^5.0.0 + dependencies: + klona: 2.0.5 + less: 4.1.3 + webpack: 5.74.0_webpack-cli@4.10.0 + dev: true + + /less/4.1.3: + resolution: {integrity: sha512-w16Xk/Ta9Hhyei0Gpz9m7VS8F28nieJaL/VyShID7cYvP6IL5oHeL6p4TXSDJqZE/lNv0oJ2pGVjJsRkfwm5FA==} + engines: {node: '>=6'} + hasBin: true + dependencies: + copy-anything: 2.0.6 + parse-node-version: 1.0.1 + tslib: 2.4.0 + optionalDependencies: + errno: 0.1.8 + graceful-fs: 4.2.10 + image-size: 0.5.5 + make-dir: 2.1.0 + mime: 1.6.0 + needle: 3.1.0 + source-map: 0.6.1 + transitivePeerDependencies: + - supports-color + dev: true + + /levn/0.4.1: + resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} + engines: {node: '>= 0.8.0'} + dependencies: + prelude-ls: 1.2.1 + type-check: 0.4.0 + dev: true + + /lilconfig/2.0.6: + resolution: {integrity: sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==} + engines: {node: '>=10'} + dev: true + + /lines-and-columns/1.2.4: + resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} + dev: true + + /load-json-file/4.0.0: + resolution: {integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==} + engines: {node: '>=4'} + dependencies: + graceful-fs: 4.2.10 + parse-json: 4.0.0 + pify: 3.0.0 + strip-bom: 3.0.0 + dev: true + + /loader-runner/4.3.0: + resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==} + engines: {node: '>=6.11.5'} + dev: true + + /loader-utils/2.0.2: + resolution: {integrity: sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==} + engines: {node: '>=8.9.0'} + dependencies: + big.js: 5.2.2 + emojis-list: 3.0.0 + json5: 2.2.1 + dev: true + + /locate-path/2.0.0: + resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==} + engines: {node: '>=4'} + dependencies: + p-locate: 2.0.0 + path-exists: 3.0.0 + dev: true + + /locate-path/3.0.0: + resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==} + engines: {node: '>=6'} + dependencies: + p-locate: 3.0.0 + path-exists: 3.0.0 + dev: true + + /locate-path/5.0.0: + resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} + engines: {node: '>=8'} + dependencies: + p-locate: 4.1.0 + dev: true + + /lodash.debounce/4.0.8: + resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} + dev: true + + /lodash.ismatch/4.4.0: + resolution: {integrity: sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==} + dev: true + + /lodash.memoize/4.1.2: + resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==} + dev: true + + /lodash.merge/4.6.2: + resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} + dev: true + + /lodash.truncate/4.4.2: + resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==} + dev: true + + /lodash.uniq/4.5.0: + resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} + dev: true + + /lodash/4.17.21: + resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + + /loglevel/1.8.0: + resolution: {integrity: sha512-G6A/nJLRgWOuuwdNuA6koovfEV1YpqqAG4pRUlFaz3jj2QNZ8M4vBqnVA+HBTmU/AMNUtlOsMmSpF6NyOjztbA==} + engines: {node: '>= 0.6.0'} + dev: true + + /loose-envify/1.4.0: + resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} + hasBin: true + dependencies: + js-tokens: 4.0.0 + + /lower-case/2.0.2: + resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} + dependencies: + tslib: 2.4.0 + dev: true + + /lru-cache/6.0.0: + resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} + engines: {node: '>=10'} + dependencies: + yallist: 4.0.0 + dev: true + + /make-dir/2.1.0: + resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} + engines: {node: '>=6'} + dependencies: + pify: 4.0.1 + semver: 5.7.1 + dev: true + + /make-dir/3.1.0: + resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} + engines: {node: '>=8'} + dependencies: + semver: 6.3.0 + dev: true + + /map-cache/0.2.2: + resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==} + engines: {node: '>=0.10.0'} + dev: true + + /map-obj/1.0.1: + resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} + engines: {node: '>=0.10.0'} + dev: true + + /map-obj/4.3.0: + resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==} + engines: {node: '>=8'} + dev: true + + /map-visit/1.0.0: + resolution: {integrity: sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==} + engines: {node: '>=0.10.0'} + dependencies: + object-visit: 1.0.1 + dev: true + + /mdn-data/2.0.14: + resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==} + dev: true + + /media-typer/0.3.0: + resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} + engines: {node: '>= 0.6'} + dev: true + + /memory-fs/0.4.1: + resolution: {integrity: sha512-cda4JKCxReDXFXRqOHPQscuIYg1PvxbE2S2GP45rnwfEK+vZaXC8C1OFvdHIbgw0DLzowXGVoxLaAmlgRy14GQ==} + dependencies: + errno: 0.1.8 + readable-stream: 2.3.7 + dev: true + + /meow/8.1.2: + resolution: {integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==} + engines: {node: '>=10'} + dependencies: + '@types/minimist': 1.2.2 + camelcase-keys: 6.2.2 + decamelize-keys: 1.1.0 + hard-rejection: 2.1.0 + minimist-options: 4.1.0 + normalize-package-data: 3.0.3 + read-pkg-up: 7.0.1 + redent: 3.0.0 + trim-newlines: 3.0.1 + type-fest: 0.18.1 + yargs-parser: 20.2.9 + dev: true + + /merge-descriptors/1.0.1: + resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==} + dev: true + + /merge-stream/2.0.0: + resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} + dev: true + + /merge2/1.4.1: + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} + engines: {node: '>= 8'} + dev: true + + /methods/1.1.2: + resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} + engines: {node: '>= 0.6'} + dev: true + + /micromatch/3.1.10_supports-color@6.1.0: + resolution: {integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==} + engines: {node: '>=0.10.0'} + dependencies: + arr-diff: 4.0.0 + array-unique: 0.3.2 + braces: 2.3.2_supports-color@6.1.0 + define-property: 2.0.2 + extend-shallow: 3.0.2 + extglob: 2.0.4_supports-color@6.1.0 + fragment-cache: 0.2.1 + kind-of: 6.0.3 + nanomatch: 1.2.13_supports-color@6.1.0 + object.pick: 1.3.0 + regex-not: 1.0.2 + snapdragon: 0.8.2_supports-color@6.1.0 + to-regex: 3.0.2 + transitivePeerDependencies: + - supports-color + dev: true + + /micromatch/4.0.5: + resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} + engines: {node: '>=8.6'} + dependencies: + braces: 3.0.2 + picomatch: 2.3.1 + dev: true + + /mime-db/1.52.0: + resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} + engines: {node: '>= 0.6'} + dev: true + + /mime-types/2.1.35: + resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} + engines: {node: '>= 0.6'} + dependencies: + mime-db: 1.52.0 + dev: true + + /mime/1.6.0: + resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} + engines: {node: '>=4'} + hasBin: true + dev: true + + /mime/2.6.0: + resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==} + engines: {node: '>=4.0.0'} + hasBin: true + dev: true + + /min-indent/1.0.1: + resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} + engines: {node: '>=4'} + dev: true + + /mini-css-extract-plugin/2.6.1_webpack@5.74.0: + resolution: {integrity: sha512-wd+SD57/K6DiV7jIR34P+s3uckTRuQvx0tKPcvjFlrEylk6P4mQ2KSWk1hblj1Kxaqok7LogKOieygXqBczNlg==} + engines: {node: '>= 12.13.0'} + peerDependencies: + webpack: ^5.0.0 + dependencies: + schema-utils: 4.0.0 + webpack: 5.74.0_webpack-cli@4.10.0 + dev: true + + /minimalistic-assert/1.0.1: + resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==} + dev: true + + /minimatch/3.1.2: + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + dependencies: + brace-expansion: 1.1.11 + dev: true + + /minimist-options/4.1.0: + resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} + engines: {node: '>= 6'} + dependencies: + arrify: 1.0.1 + is-plain-obj: 1.1.0 + kind-of: 6.0.3 + dev: true + + /minimist/1.2.6: + resolution: {integrity: sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==} + dev: true + + /mixin-deep/1.3.2: + resolution: {integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==} + engines: {node: '>=0.10.0'} + dependencies: + for-in: 1.0.2 + is-extendable: 1.0.1 + dev: true + + /mkdirp/0.5.6: + resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} + hasBin: true + dependencies: + minimist: 1.2.6 + dev: true + + /modify-values/1.0.1: + resolution: {integrity: sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==} + engines: {node: '>=0.10.0'} + dev: true + + /ms/2.0.0: + resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} + dev: true + + /ms/2.1.2: + resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} + dev: true + + /ms/2.1.3: + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + dev: true + + /multicast-dns-service-types/1.1.0: + resolution: {integrity: sha512-cnAsSVxIDsYt0v7HmC0hWZFwwXSh+E6PgCrREDuN/EsjgLwA5XRmlMHhSiDPrt6HxY1gTivEa/Zh7GtODoLevQ==} + dev: true + + /multicast-dns/6.2.3: + resolution: {integrity: sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==} + hasBin: true + dependencies: + dns-packet: 1.3.4 + thunky: 1.1.0 + dev: true + + /nan/2.16.0: + resolution: {integrity: sha512-UdAqHyFngu7TfQKsCBgAA6pWDkT8MAO7d0jyOecVhN5354xbLqdn8mV9Tat9gepAupm0bt2DbeaSC8vS52MuFA==} + dev: true + optional: true + + /nanoid/3.3.4: + resolution: {integrity: sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + dev: true + + /nanomatch/1.2.13_supports-color@6.1.0: + resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==} + engines: {node: '>=0.10.0'} + dependencies: + arr-diff: 4.0.0 + array-unique: 0.3.2 + define-property: 2.0.2 + extend-shallow: 3.0.2 + fragment-cache: 0.2.1 + is-windows: 1.0.2 + kind-of: 6.0.3 + object.pick: 1.3.0 + regex-not: 1.0.2 + snapdragon: 0.8.2_supports-color@6.1.0 + to-regex: 3.0.2 + transitivePeerDependencies: + - supports-color + dev: true + + /natural-compare/1.4.0: + resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} + dev: true + + /needle/3.1.0: + resolution: {integrity: sha512-gCE9weDhjVGCRqS8dwDR/D3GTAeyXLXuqp7I8EzH6DllZGXSUyxuqqLh+YX9rMAWaaTFyVAg6rHGL25dqvczKw==} + engines: {node: '>= 4.4.x'} + hasBin: true + requiresBuild: true + dependencies: + debug: 3.2.7 + iconv-lite: 0.6.3 + sax: 1.2.4 + transitivePeerDependencies: + - supports-color + dev: true + optional: true + + /negotiator/0.6.3: + resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} + engines: {node: '>= 0.6'} + dev: true + + /neo-async/2.6.2: + resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} + dev: true + + /nice-try/1.0.5: + resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==} + dev: true + + /no-case/3.0.4: + resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} + dependencies: + lower-case: 2.0.2 + tslib: 2.4.0 + dev: true + + /node-forge/0.10.0: + resolution: {integrity: sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==} + engines: {node: '>= 6.0.0'} + dev: true + + /node-releases/2.0.6: + resolution: {integrity: sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==} + dev: true + + /normalize-package-data/2.5.0: + resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} + dependencies: + hosted-git-info: 2.8.9 + resolve: 1.22.1 + semver: 5.7.1 + validate-npm-package-license: 3.0.4 + dev: true + + /normalize-package-data/3.0.3: + resolution: {integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==} + engines: {node: '>=10'} + dependencies: + hosted-git-info: 4.1.0 + is-core-module: 2.10.0 + semver: 7.3.7 + validate-npm-package-license: 3.0.4 + dev: true + + /normalize-path/2.1.1: + resolution: {integrity: sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==} + engines: {node: '>=0.10.0'} + dependencies: + remove-trailing-separator: 1.1.0 + dev: true + + /normalize-path/3.0.0: + resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} + engines: {node: '>=0.10.0'} + dev: true + + /normalize-range/0.1.2: + resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} + engines: {node: '>=0.10.0'} + dev: true + + /normalize-url/1.9.1: + resolution: {integrity: sha512-A48My/mtCklowHBlI8Fq2jFWK4tX4lJ5E6ytFsSOq1fzpvT0SQSgKhSg7lN5c2uYFOrUAOQp6zhhJnpp1eMloQ==} + engines: {node: '>=4'} + dependencies: + object-assign: 4.1.1 + prepend-http: 1.0.4 + query-string: 4.3.4 + sort-keys: 1.1.2 + dev: true + + /normalize-url/6.1.0: + resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==} + engines: {node: '>=10'} + dev: true + + /npm-run-path/2.0.2: + resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==} + engines: {node: '>=4'} + dependencies: + path-key: 2.0.1 + dev: true + + /nth-check/2.1.1: + resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} + dependencies: + boolbase: 1.0.0 + dev: true + + /object-assign/4.1.1: + resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} + engines: {node: '>=0.10.0'} + + /object-copy/0.1.0: + resolution: {integrity: sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==} + engines: {node: '>=0.10.0'} + dependencies: + copy-descriptor: 0.1.1 + define-property: 0.2.5 + kind-of: 3.2.2 + dev: true + + /object-inspect/1.12.2: + resolution: {integrity: sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==} + dev: true + + /object-is/1.1.5: + resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + dev: true + + /object-keys/1.1.1: + resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} + engines: {node: '>= 0.4'} + dev: true + + /object-visit/1.0.1: + resolution: {integrity: sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==} + engines: {node: '>=0.10.0'} + dependencies: + isobject: 3.0.1 + dev: true + + /object.assign/4.1.4: + resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + has-symbols: 1.0.3 + object-keys: 1.1.1 + dev: true + + /object.entries/1.1.5: + resolution: {integrity: sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.1 + dev: true + + /object.fromentries/2.0.5: + resolution: {integrity: sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.1 + dev: true + + /object.hasown/1.1.1: + resolution: {integrity: sha512-LYLe4tivNQzq4JdaWW6WO3HMZZJWzkkH8fnI6EebWl0VZth2wL2Lovm74ep2/gZzlaTdV62JZHEqHQ2yVn8Q/A==} + dependencies: + define-properties: 1.1.4 + es-abstract: 1.20.1 + dev: true + + /object.pick/1.3.0: + resolution: {integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==} + engines: {node: '>=0.10.0'} + dependencies: + isobject: 3.0.1 + dev: true + + /object.values/1.1.5: + resolution: {integrity: sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.1 + dev: true + + /obuf/1.1.2: + resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==} + dev: true + + /on-finished/2.4.1: + resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} + engines: {node: '>= 0.8'} + dependencies: + ee-first: 1.1.1 + dev: true + + /on-headers/1.0.2: + resolution: {integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==} + engines: {node: '>= 0.8'} + dev: true + + /once/1.4.0: + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + dependencies: + wrappy: 1.0.2 + dev: true + + /opn/5.5.0: + resolution: {integrity: sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==} + engines: {node: '>=4'} + dependencies: + is-wsl: 1.1.0 + dev: true + + /optionator/0.9.1: + resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==} + engines: {node: '>= 0.8.0'} + dependencies: + deep-is: 0.1.4 + fast-levenshtein: 2.0.6 + levn: 0.4.1 + prelude-ls: 1.2.1 + type-check: 0.4.0 + word-wrap: 1.2.3 + dev: true + + /p-finally/1.0.0: + resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==} + engines: {node: '>=4'} + dev: true + + /p-limit/1.3.0: + resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==} + engines: {node: '>=4'} + dependencies: + p-try: 1.0.0 + dev: true + + /p-limit/2.3.0: + resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} + engines: {node: '>=6'} + dependencies: + p-try: 2.2.0 + dev: true + + /p-locate/2.0.0: + resolution: {integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==} + engines: {node: '>=4'} + dependencies: + p-limit: 1.3.0 + dev: true + + /p-locate/3.0.0: + resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==} + engines: {node: '>=6'} + dependencies: + p-limit: 2.3.0 + dev: true + + /p-locate/4.1.0: + resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} + engines: {node: '>=8'} + dependencies: + p-limit: 2.3.0 + dev: true + + /p-map/2.1.0: + resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==} + engines: {node: '>=6'} + dev: true + + /p-retry/3.0.1: + resolution: {integrity: sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==} + engines: {node: '>=6'} + dependencies: + retry: 0.12.0 + dev: true + + /p-try/1.0.0: + resolution: {integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==} + engines: {node: '>=4'} + dev: true + + /p-try/2.2.0: + resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} + engines: {node: '>=6'} + dev: true + + /param-case/3.0.4: + resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==} + dependencies: + dot-case: 3.0.4 + tslib: 2.4.0 + dev: true + + /parent-module/1.0.1: + resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} + engines: {node: '>=6'} + dependencies: + callsites: 3.1.0 + dev: true + + /parse-json/4.0.0: + resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==} + engines: {node: '>=4'} + dependencies: + error-ex: 1.3.2 + json-parse-better-errors: 1.0.2 + dev: true + + /parse-json/5.2.0: + resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} + engines: {node: '>=8'} + dependencies: + '@babel/code-frame': 7.18.6 + error-ex: 1.3.2 + json-parse-even-better-errors: 2.3.1 + lines-and-columns: 1.2.4 + dev: true + + /parse-node-version/1.0.1: + resolution: {integrity: sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==} + engines: {node: '>= 0.10'} + dev: true + + /parseurl/1.3.3: + resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} + engines: {node: '>= 0.8'} + dev: true + + /pascal-case/3.1.2: + resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} + dependencies: + no-case: 3.0.4 + tslib: 2.4.0 + dev: true + + /pascalcase/0.1.1: + resolution: {integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==} + engines: {node: '>=0.10.0'} + dev: true + + /path-dirname/1.0.2: + resolution: {integrity: sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==} + dev: true + + /path-exists/3.0.0: + resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==} + engines: {node: '>=4'} + dev: true + + /path-exists/4.0.0: + resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} + engines: {node: '>=8'} + dev: true + + /path-is-absolute/1.0.1: + resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} + engines: {node: '>=0.10.0'} + dev: true + + /path-is-inside/1.0.2: + resolution: {integrity: sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==} + dev: true + + /path-key/2.0.1: + resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==} + engines: {node: '>=4'} + dev: true + + /path-key/3.1.1: + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} + engines: {node: '>=8'} + dev: true + + /path-parse/1.0.7: + resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + dev: true + + /path-to-regexp/0.1.7: + resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==} + dev: true + + /path-type/3.0.0: + resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==} + engines: {node: '>=4'} + dependencies: + pify: 3.0.0 + dev: true + + /path-type/4.0.0: + resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} + engines: {node: '>=8'} + dev: true + + /picocolors/1.0.0: + resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} + dev: true + + /picomatch/2.3.1: + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} + dev: true + + /pify/2.3.0: + resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} + engines: {node: '>=0.10.0'} + dev: true + + /pify/3.0.0: + resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==} + engines: {node: '>=4'} + dev: true + + /pify/4.0.1: + resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} + engines: {node: '>=6'} + dev: true + + /pinkie-promise/2.0.1: + resolution: {integrity: sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==} + engines: {node: '>=0.10.0'} + dependencies: + pinkie: 2.0.4 + dev: true + + /pinkie/2.0.4: + resolution: {integrity: sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==} + engines: {node: '>=0.10.0'} + dev: true + + /pkg-dir/3.0.0: + resolution: {integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==} + engines: {node: '>=6'} + dependencies: + find-up: 3.0.0 + dev: true + + /pkg-dir/4.2.0: + resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} + engines: {node: '>=8'} + dependencies: + find-up: 4.1.0 + dev: true + + /pkg-up/3.1.0: + resolution: {integrity: sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==} + engines: {node: '>=8'} + dependencies: + find-up: 3.0.0 + dev: true + + /portfinder/1.0.32_supports-color@6.1.0: + resolution: {integrity: sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==} + engines: {node: '>= 0.12.0'} + dependencies: + async: 2.6.4 + debug: 3.2.7_supports-color@6.1.0 + mkdirp: 0.5.6 + transitivePeerDependencies: + - supports-color + dev: true + + /posix-character-classes/0.1.1: + resolution: {integrity: sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==} + engines: {node: '>=0.10.0'} + dev: true + + /postcss-calc/8.2.4_postcss@8.4.16: + resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==} + peerDependencies: + postcss: ^8.2.2 + dependencies: + postcss: 8.4.16 + postcss-selector-parser: 6.0.10 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-colormin/5.3.0_postcss@8.4.16: + resolution: {integrity: sha512-WdDO4gOFG2Z8n4P8TWBpshnL3JpmNmJwdnfP2gbk2qBA8PWwOYcmjmI/t3CmMeL72a7Hkd+x/Mg9O2/0rD54Pg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + browserslist: 4.21.3 + caniuse-api: 3.0.0 + colord: 2.9.3 + postcss: 8.4.16 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-convert-values/5.1.2_postcss@8.4.16: + resolution: {integrity: sha512-c6Hzc4GAv95B7suy4udszX9Zy4ETyMCgFPUDtWjdFTKH1SE9eFY/jEpHSwTH1QPuwxHpWslhckUQWbNRM4ho5g==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + browserslist: 4.21.3 + postcss: 8.4.16 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-discard-comments/5.1.2_postcss@8.4.16: + resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.16 + dev: true + + /postcss-discard-duplicates/5.1.0_postcss@8.4.16: + resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.16 + dev: true + + /postcss-discard-empty/5.1.1_postcss@8.4.16: + resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.16 + dev: true + + /postcss-discard-overridden/5.1.0_postcss@8.4.16: + resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.16 + dev: true + + /postcss-merge-longhand/5.1.6_postcss@8.4.16: + resolution: {integrity: sha512-6C/UGF/3T5OE2CEbOuX7iNO63dnvqhGZeUnKkDeifebY0XqkkvrctYSZurpNE902LDf2yKwwPFgotnfSoPhQiw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.16 + postcss-value-parser: 4.2.0 + stylehacks: 5.1.0_postcss@8.4.16 + dev: true + + /postcss-merge-rules/5.1.2_postcss@8.4.16: + resolution: {integrity: sha512-zKMUlnw+zYCWoPN6yhPjtcEdlJaMUZ0WyVcxTAmw3lkkN/NDMRkOkiuctQEoWAOvH7twaxUUdvBWl0d4+hifRQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + browserslist: 4.21.3 + caniuse-api: 3.0.0 + cssnano-utils: 3.1.0_postcss@8.4.16 + postcss: 8.4.16 + postcss-selector-parser: 6.0.10 + dev: true + + /postcss-minify-font-values/5.1.0_postcss@8.4.16: + resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.16 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-minify-gradients/5.1.1_postcss@8.4.16: + resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + colord: 2.9.3 + cssnano-utils: 3.1.0_postcss@8.4.16 + postcss: 8.4.16 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-minify-params/5.1.3_postcss@8.4.16: + resolution: {integrity: sha512-bkzpWcjykkqIujNL+EVEPOlLYi/eZ050oImVtHU7b4lFS82jPnsCb44gvC6pxaNt38Els3jWYDHTjHKf0koTgg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + browserslist: 4.21.3 + cssnano-utils: 3.1.0_postcss@8.4.16 + postcss: 8.4.16 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-minify-selectors/5.2.1_postcss@8.4.16: + resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.16 + postcss-selector-parser: 6.0.10 + dev: true + + /postcss-modules-extract-imports/3.0.0_postcss@8.4.16: + resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + dependencies: + postcss: 8.4.16 + dev: true + + /postcss-modules-local-by-default/4.0.0_postcss@8.4.16: + resolution: {integrity: sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + dependencies: + icss-utils: 5.1.0_postcss@8.4.16 + postcss: 8.4.16 + postcss-selector-parser: 6.0.10 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-modules-scope/3.0.0_postcss@8.4.16: + resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + dependencies: + postcss: 8.4.16 + postcss-selector-parser: 6.0.10 + dev: true + + /postcss-modules-values/4.0.0_postcss@8.4.16: + resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + dependencies: + icss-utils: 5.1.0_postcss@8.4.16 + postcss: 8.4.16 + dev: true + + /postcss-normalize-charset/5.1.0_postcss@8.4.16: + resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.16 + dev: true + + /postcss-normalize-display-values/5.1.0_postcss@8.4.16: + resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.16 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-normalize-positions/5.1.1_postcss@8.4.16: + resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.16 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-normalize-repeat-style/5.1.1_postcss@8.4.16: + resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.16 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-normalize-string/5.1.0_postcss@8.4.16: + resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.16 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-normalize-timing-functions/5.1.0_postcss@8.4.16: + resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.16 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-normalize-unicode/5.1.0_postcss@8.4.16: + resolution: {integrity: sha512-J6M3MizAAZ2dOdSjy2caayJLQT8E8K9XjLce8AUQMwOrCvjCHv24aLC/Lps1R1ylOfol5VIDMaM/Lo9NGlk1SQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + browserslist: 4.21.3 + postcss: 8.4.16 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-normalize-url/5.1.0_postcss@8.4.16: + resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + normalize-url: 6.1.0 + postcss: 8.4.16 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-normalize-whitespace/5.1.1_postcss@8.4.16: + resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.16 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-ordered-values/5.1.3_postcss@8.4.16: + resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + cssnano-utils: 3.1.0_postcss@8.4.16 + postcss: 8.4.16 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-reduce-initial/5.1.0_postcss@8.4.16: + resolution: {integrity: sha512-5OgTUviz0aeH6MtBjHfbr57tml13PuedK/Ecg8szzd4XRMbYxH4572JFG067z+FqBIf6Zp/d+0581glkvvWMFw==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + browserslist: 4.21.3 + caniuse-api: 3.0.0 + postcss: 8.4.16 + dev: true + + /postcss-reduce-transforms/5.1.0_postcss@8.4.16: + resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.16 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-selector-parser/6.0.10: + resolution: {integrity: sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==} + engines: {node: '>=4'} + dependencies: + cssesc: 3.0.0 + util-deprecate: 1.0.2 + dev: true + + /postcss-svgo/5.1.0_postcss@8.4.16: + resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.16 + postcss-value-parser: 4.2.0 + svgo: 2.8.0 + dev: true + + /postcss-unique-selectors/5.1.1_postcss@8.4.16: + resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.16 + postcss-selector-parser: 6.0.10 + dev: true + + /postcss-value-parser/4.2.0: + resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} + dev: true + + /postcss/8.4.16: + resolution: {integrity: sha512-ipHE1XBvKzm5xI7hiHCZJCSugxvsdq2mPnsq5+UF+VHCjiBvtDrlxJfMBToWaP9D5XlgNmcFGqoHmUn0EYEaRQ==} + engines: {node: ^10 || ^12 || >=14} + dependencies: + nanoid: 3.3.4 + picocolors: 1.0.0 + source-map-js: 1.0.2 + dev: true + + /prelude-ls/1.2.1: + resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} + engines: {node: '>= 0.8.0'} + dev: true + + /prepend-http/1.0.4: + resolution: {integrity: sha512-PhmXi5XmoyKw1Un4E+opM2KcsJInDvKyuOumcjjw3waw86ZNjHwVUOOWLc4bCzLdcKNaWBH9e99sbWzDQsVaYg==} + engines: {node: '>=0.10.0'} + dev: true + + /prettier/2.7.1: + resolution: {integrity: sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==} + engines: {node: '>=10.13.0'} + hasBin: true + dev: true + + /pretty-error/4.0.0: + resolution: {integrity: sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==} + dependencies: + lodash: 4.17.21 + renderkid: 3.0.0 + dev: true + + /pretty-format/28.1.3: + resolution: {integrity: sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + dependencies: + '@jest/schemas': 28.1.3 + ansi-regex: 5.0.1 + ansi-styles: 5.2.0 + react-is: 18.2.0 + dev: true + + /process-nextick-args/2.0.1: + resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} + dev: true + + /progress/2.0.3: + resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} + engines: {node: '>=0.4.0'} + dev: true + + /prop-types/15.8.1: + resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} + dependencies: + loose-envify: 1.4.0 + object-assign: 4.1.1 + react-is: 16.13.1 + + /proxy-addr/2.0.7: + resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} + engines: {node: '>= 0.10'} + dependencies: + forwarded: 0.2.0 + ipaddr.js: 1.9.1 + dev: true + + /prr/1.0.1: + resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==} + dev: true + + /pump/3.0.0: + resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} + dependencies: + end-of-stream: 1.4.4 + once: 1.4.0 + dev: true + + /punycode/1.3.2: + resolution: {integrity: sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==} + dev: true + + /punycode/2.1.1: + resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==} + engines: {node: '>=6'} + dev: true + + /q/1.5.1: + resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==} + engines: {node: '>=0.6.0', teleport: '>=0.2.0'} + dev: true + + /qs/6.10.3: + resolution: {integrity: sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==} + engines: {node: '>=0.6'} + dependencies: + side-channel: 1.0.4 + dev: true + + /query-string/4.3.4: + resolution: {integrity: sha512-O2XLNDBIg1DnTOa+2XrIwSiXEV8h2KImXUnjhhn2+UsvZ+Es2uyd5CCRTNQlDGbzUQOW3aYCBx9rVA6dzsiY7Q==} + engines: {node: '>=0.10.0'} + dependencies: + object-assign: 4.1.1 + strict-uri-encode: 1.1.0 + dev: true + + /querystring/0.2.0: + resolution: {integrity: sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==} + engines: {node: '>=0.4.x'} + deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead. + dev: true + + /querystringify/2.2.0: + resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} + dev: true + + /queue-microtask/1.2.3: + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + dev: true + + /quick-lru/4.0.1: + resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==} + engines: {node: '>=8'} + dev: true + + /randombytes/2.1.0: + resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} + dependencies: + safe-buffer: 5.2.1 + dev: true + + /range-parser/1.2.1: + resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} + engines: {node: '>= 0.6'} + dev: true + + /raw-body/2.5.1: + resolution: {integrity: sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==} + engines: {node: '>= 0.8'} + dependencies: + bytes: 3.1.2 + http-errors: 2.0.0 + iconv-lite: 0.4.24 + unpipe: 1.0.0 + dev: true + + /react-chartist/0.14.4_uq4xdmbranb5dmrhsn4hftzjqe: + resolution: {integrity: sha512-1riwO5CjT5IdrilCM788waUYpIdl8Y4vsIc6Y5bbR3PIX46NYYtcq5bcaBEkIZfKEThuoJDEV6FU1rDmfbogsg==} + peerDependencies: + chartist: ^0.10.1 + react: ^0.14.9 || ^15.0.0 || ^16.0.0 || ^17.0.0 + dependencies: + chartist: 0.10.1 + prop-types: 15.8.1 + react: 18.2.0 + dev: false + + /react-dom/18.2.0_react@18.2.0: + resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==} + peerDependencies: + react: ^18.2.0 + dependencies: + loose-envify: 1.4.0 + react: 18.2.0 + scheduler: 0.23.0 + dev: false + + /react-intl/6.0.5_qtbnez4q7bzoc4eqybg3efzzxe: + resolution: {integrity: sha512-nDZ3BosuE8WdovcGxsrjj1aIgJZklSL5aORs5oah+5tLQTzUdOEstzJEYQPM+sxl1dkDOu7RCuw0z9oI9ENf9g==} + peerDependencies: + react: ^16.6.0 || 17 || 18 + typescript: ^4.5 + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@formatjs/ecma402-abstract': 1.11.8 + '@formatjs/icu-messageformat-parser': 2.1.4 + '@formatjs/intl': 2.3.1_typescript@4.7.4 + '@formatjs/intl-displaynames': 6.0.3 + '@formatjs/intl-listformat': 7.0.3 + '@types/hoist-non-react-statics': 3.3.1 + '@types/react': 17.0.48 + hoist-non-react-statics: 3.3.2 + intl-messageformat: 10.1.1 + react: 18.2.0 + tslib: 2.4.0 + typescript: 4.7.4 + dev: false + + /react-is/16.13.1: + resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} + + /react-is/17.0.2: + resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==} + dev: false + + /react-is/18.2.0: + resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==} + dev: true + + /react-lifecycles-compat/3.0.4: + resolution: {integrity: sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==} + dev: false + + /react-router-dom/6.3.0_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-uaJj7LKytRxZNQV8+RbzJWnJ8K2nPsOOEuX7aQstlMZKQT0164C+X2w6bnkqU3sjtLvpd5ojrezAyfZ1+0sStw==} + peerDependencies: + react: '>=16.8' + react-dom: '>=16.8' + dependencies: + history: 5.3.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + react-router: 6.3.0_react@18.2.0 + dev: false + + /react-router/6.3.0_react@18.2.0: + resolution: {integrity: sha512-7Wh1DzVQ+tlFjkeo+ujvjSqSJmkt1+8JO+T5xklPlgrh70y7ogx75ODRW0ThWhY7S+6yEDks8TYrtQe/aoboBQ==} + peerDependencies: + react: '>=16.8' + dependencies: + history: 5.3.0 + react: 18.2.0 + dev: false + + /react-virtualized/9.22.3_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-MKovKMxWTcwPSxE1kK1HcheQTWfuCxAuBoSTf2gwyMM21NdX/PXUhnoP8Uc5dRKd+nKm8v41R36OellhdCpkrw==} + peerDependencies: + react: ^15.3.0 || ^16.0.0-alpha + react-dom: ^15.3.0 || ^16.0.0-alpha + dependencies: + '@babel/runtime': 7.18.9 + clsx: 1.2.1 + dom-helpers: 5.2.1 + loose-envify: 1.4.0 + prop-types: 15.8.1 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + react-lifecycles-compat: 3.0.4 + dev: false + + /react/18.2.0: + resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} + engines: {node: '>=0.10.0'} + dependencies: + loose-envify: 1.4.0 + dev: false + + /read-pkg-up/3.0.0: + resolution: {integrity: sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw==} + engines: {node: '>=4'} + dependencies: + find-up: 2.1.0 + read-pkg: 3.0.0 + dev: true + + /read-pkg-up/7.0.1: + resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} + engines: {node: '>=8'} + dependencies: + find-up: 4.1.0 + read-pkg: 5.2.0 + type-fest: 0.8.1 + dev: true + + /read-pkg/3.0.0: + resolution: {integrity: sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==} + engines: {node: '>=4'} + dependencies: + load-json-file: 4.0.0 + normalize-package-data: 2.5.0 + path-type: 3.0.0 + dev: true + + /read-pkg/5.2.0: + resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} + engines: {node: '>=8'} + dependencies: + '@types/normalize-package-data': 2.4.1 + normalize-package-data: 2.5.0 + parse-json: 5.2.0 + type-fest: 0.6.0 + dev: true + + /readable-stream/2.3.7: + resolution: {integrity: sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==} + dependencies: + core-util-is: 1.0.3 + inherits: 2.0.4 + isarray: 1.0.0 + process-nextick-args: 2.0.1 + safe-buffer: 5.1.2 + string_decoder: 1.1.1 + util-deprecate: 1.0.2 + dev: true + + /readable-stream/3.6.0: + resolution: {integrity: sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==} + engines: {node: '>= 6'} + dependencies: + inherits: 2.0.4 + string_decoder: 1.3.0 + util-deprecate: 1.0.2 + dev: true + + /readdirp/2.2.1_supports-color@6.1.0: + resolution: {integrity: sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==} + engines: {node: '>=0.10'} + dependencies: + graceful-fs: 4.2.10 + micromatch: 3.1.10_supports-color@6.1.0 + readable-stream: 2.3.7 + transitivePeerDependencies: + - supports-color + dev: true + + /readdirp/3.6.0: + resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} + engines: {node: '>=8.10.0'} + dependencies: + picomatch: 2.3.1 + dev: true + optional: true + + /rechoir/0.7.1: + resolution: {integrity: sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==} + engines: {node: '>= 0.10'} + dependencies: + resolve: 1.22.1 + dev: true + + /redent/3.0.0: + resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} + engines: {node: '>=8'} + dependencies: + indent-string: 4.0.0 + strip-indent: 3.0.0 + dev: true + + /regenerate-unicode-properties/10.0.1: + resolution: {integrity: sha512-vn5DU6yg6h8hP/2OkQo3K7uVILvY4iu0oI4t3HFa81UPkhGJwkRwM10JEc3upjdhHjs/k8GJY1sRBhk5sr69Bw==} + engines: {node: '>=4'} + dependencies: + regenerate: 1.4.2 + dev: true + + /regenerate/1.4.2: + resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} + dev: true + + /regenerator-runtime/0.13.9: + resolution: {integrity: sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==} + + /regenerator-transform/0.15.0: + resolution: {integrity: sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==} + dependencies: + '@babel/runtime': 7.18.9 + dev: true + + /regex-not/1.0.2: + resolution: {integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==} + engines: {node: '>=0.10.0'} + dependencies: + extend-shallow: 3.0.2 + safe-regex: 1.1.0 + dev: true + + /regexp.prototype.flags/1.4.3: + resolution: {integrity: sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + functions-have-names: 1.2.3 + dev: true + + /regexpp/3.2.0: + resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} + engines: {node: '>=8'} + dev: true + + /regexpu-core/5.1.0: + resolution: {integrity: sha512-bb6hk+xWd2PEOkj5It46A16zFMs2mv86Iwpdu94la4S3sJ7C973h2dHpYKwIBGaWSO7cIRJ+UX0IeMaWcO4qwA==} + engines: {node: '>=4'} + dependencies: + regenerate: 1.4.2 + regenerate-unicode-properties: 10.0.1 + regjsgen: 0.6.0 + regjsparser: 0.8.4 + unicode-match-property-ecmascript: 2.0.0 + unicode-match-property-value-ecmascript: 2.0.0 + dev: true + + /regjsgen/0.6.0: + resolution: {integrity: sha512-ozE883Uigtqj3bx7OhL1KNbCzGyW2NQZPl6Hs09WTvCuZD5sTI4JY58bkbQWa/Y9hxIsvJ3M8Nbf7j54IqeZbA==} + dev: true + + /regjsparser/0.8.4: + resolution: {integrity: sha512-J3LABycON/VNEu3abOviqGHuB/LOtOQj8SKmfP9anY5GfAVw/SPjwzSjxGjbZXIxbGfqTHtJw58C2Li/WkStmA==} + hasBin: true + dependencies: + jsesc: 0.5.0 + dev: true + + /relateurl/0.2.7: + resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==} + engines: {node: '>= 0.10'} + dev: true + + /remove-trailing-separator/1.1.0: + resolution: {integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==} + dev: true + + /renderkid/3.0.0: + resolution: {integrity: sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==} + dependencies: + css-select: 4.3.0 + dom-converter: 0.2.0 + htmlparser2: 6.1.0 + lodash: 4.17.21 + strip-ansi: 6.0.1 + dev: true + + /repeat-element/1.1.4: + resolution: {integrity: sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==} + engines: {node: '>=0.10.0'} + dev: true + + /repeat-string/1.6.1: + resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==} + engines: {node: '>=0.10'} + dev: true + + /require-directory/2.1.1: + resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} + engines: {node: '>=0.10.0'} + dev: true + + /require-from-string/2.0.2: + resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} + engines: {node: '>=0.10.0'} + dev: true + + /require-main-filename/2.0.0: + resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==} + dev: true + + /requires-port/1.0.0: + resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} + dev: true + + /reselect/4.1.6: + resolution: {integrity: sha512-ZovIuXqto7elwnxyXbBtCPo9YFEr3uJqj2rRbcOOog1bmu2Ag85M4hixSwFWyaBMKXNgvPaJ9OSu9SkBPIeJHQ==} + dev: true + + /resolve-cwd/2.0.0: + resolution: {integrity: sha512-ccu8zQTrzVr954472aUVPLEcB3YpKSYR3cg/3lo1okzobPBM+1INXBbBZlDbnI/hbEocnf8j0QVo43hQKrbchg==} + engines: {node: '>=4'} + dependencies: + resolve-from: 3.0.0 + dev: true + + /resolve-cwd/3.0.0: + resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==} + engines: {node: '>=8'} + dependencies: + resolve-from: 5.0.0 + dev: true + + /resolve-from/3.0.0: + resolution: {integrity: sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==} + engines: {node: '>=4'} + dev: true + + /resolve-from/4.0.0: + resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} + engines: {node: '>=4'} + dev: true + + /resolve-from/5.0.0: + resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} + engines: {node: '>=8'} + dev: true + + /resolve-url/0.2.1: + resolution: {integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==} + deprecated: https://github.com/lydell/resolve-url#deprecated + dev: true + + /resolve/1.22.1: + resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==} + hasBin: true + dependencies: + is-core-module: 2.10.0 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + dev: true + + /resolve/2.0.0-next.4: + resolution: {integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==} + hasBin: true + dependencies: + is-core-module: 2.10.0 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + dev: true + + /ret/0.1.15: + resolution: {integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==} + engines: {node: '>=0.12'} + dev: true + + /retry/0.12.0: + resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==} + engines: {node: '>= 4'} + dev: true + + /reusify/1.0.4: + resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + dev: true + + /rimraf/2.7.1: + resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} + hasBin: true + dependencies: + glob: 7.2.3 + dev: true + + /rimraf/3.0.2: + resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} + hasBin: true + dependencies: + glob: 7.2.3 + dev: true + + /rsuite-table/5.6.1_v2m5e27vhdewzwhryxwfaorcca: + resolution: {integrity: sha512-keC+1juRl7oTDjzoU3KmHApDInckVVhYsN+KsG2aCee0UVwBL8o15mJxz39DtR7tuCDQfmCnLZ8YomwZhaXAlg==} + peerDependencies: + prop-types: ^15.7.2 + react: '>=16.8.0' + react-dom: '>=16.8.0' + dependencies: + '@babel/runtime': 7.18.9 + '@juggle/resize-observer': 3.3.1 + '@rsuite/icons': 1.0.2_biqbaboplfbrettd7655fr4n2y + classnames: 2.3.1 + dom-lib: 3.1.2 + lodash: 4.17.21 + prop-types: 15.8.1 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + react-is: 17.0.2 + dev: false + + /rsuite/5.17.0-beta.1_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-+zAL5sIPuXK8JSebmswQwwz34/XRZXxgNhVbt435vzKgrsHxtIDqMS1PKFUgdbCpIbvt16LPE+ZyK3pfSAFw4g==} + peerDependencies: + react: '>=16.8.0' + react-dom: '>=16.8.0' + dependencies: + '@babel/runtime': 7.18.9 + '@juggle/resize-observer': 3.3.1 + '@rsuite/icons': 1.0.2_biqbaboplfbrettd7655fr4n2y + '@types/chai': 4.3.3 + '@types/lodash': 4.14.183 + '@types/prop-types': 15.7.5 + '@types/react-virtualized': 9.21.21 + classnames: 2.3.1 + date-fns: 2.29.1 + dom-lib: 3.1.2 + lodash: 4.17.21 + prop-types: 15.8.1 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + react-virtualized: 9.22.3_biqbaboplfbrettd7655fr4n2y + rsuite-table: 5.6.1_v2m5e27vhdewzwhryxwfaorcca + schema-typed: 2.0.3 + dev: false + + /run-parallel/1.2.0: + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + dependencies: + queue-microtask: 1.2.3 + dev: true + + /safe-buffer/5.1.2: + resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} + dev: true + + /safe-buffer/5.2.1: + resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + dev: true + + /safe-regex/1.1.0: + resolution: {integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==} + dependencies: + ret: 0.1.15 + dev: true + + /safer-buffer/2.1.2: + resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + dev: true + + /sax/1.2.4: + resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==} + dev: true + optional: true + + /scheduler/0.23.0: + resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==} + dependencies: + loose-envify: 1.4.0 + dev: false + + /schema-typed/2.0.3: + resolution: {integrity: sha512-4KckVnJjTtVugYpSAoQrcH4quE4yIVTvI/nHEqtwdceBr/ZCuH2LfV8/gaZFrYU7cwwyufLKaswt28aqQ1T9ww==} + dependencies: + '@babel/runtime': 7.18.9 + dev: false + + /schema-utils/1.0.0: + resolution: {integrity: sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==} + engines: {node: '>= 4'} + dependencies: + ajv: 6.12.6 + ajv-errors: 1.0.1_ajv@6.12.6 + ajv-keywords: 3.5.2_ajv@6.12.6 + dev: true + + /schema-utils/2.7.1: + resolution: {integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==} + engines: {node: '>= 8.9.0'} + dependencies: + '@types/json-schema': 7.0.11 + ajv: 6.12.6 + ajv-keywords: 3.5.2_ajv@6.12.6 + dev: true + + /schema-utils/3.1.1: + resolution: {integrity: sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==} + engines: {node: '>= 10.13.0'} + dependencies: + '@types/json-schema': 7.0.11 + ajv: 6.12.6 + ajv-keywords: 3.5.2_ajv@6.12.6 + dev: true + + /schema-utils/4.0.0: + resolution: {integrity: sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==} + engines: {node: '>= 12.13.0'} + dependencies: + '@types/json-schema': 7.0.11 + ajv: 8.11.0 + ajv-formats: 2.1.1 + ajv-keywords: 5.1.0_ajv@8.11.0 + dev: true + + /select-hose/2.0.0: + resolution: {integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==} + dev: true + + /selfsigned/1.10.14: + resolution: {integrity: sha512-lkjaiAye+wBZDCBsu5BGi0XiLRxeUlsGod5ZP924CRSEoGuZAw/f7y9RKu28rwTfiHVhdavhB0qH0INV6P1lEA==} + dependencies: + node-forge: 0.10.0 + dev: true + + /semver/5.7.1: + resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==} + hasBin: true + dev: true + + /semver/6.3.0: + resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==} + hasBin: true + dev: true + + /semver/7.0.0: + resolution: {integrity: sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==} + hasBin: true + dev: true + + /semver/7.3.7: + resolution: {integrity: sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==} + engines: {node: '>=10'} + hasBin: true + dependencies: + lru-cache: 6.0.0 + dev: true + + /send/0.18.0_supports-color@6.1.0: + resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==} + engines: {node: '>= 0.8.0'} + dependencies: + debug: 2.6.9_supports-color@6.1.0 + depd: 2.0.0 + destroy: 1.2.0 + encodeurl: 1.0.2 + escape-html: 1.0.3 + etag: 1.8.1 + fresh: 0.5.2 + http-errors: 2.0.0 + mime: 1.6.0 + ms: 2.1.3 + on-finished: 2.4.1 + range-parser: 1.2.1 + statuses: 2.0.1 + transitivePeerDependencies: + - supports-color + dev: true + + /serialize-javascript/6.0.0: + resolution: {integrity: sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==} + dependencies: + randombytes: 2.1.0 + dev: true + + /serve-index/1.9.1_supports-color@6.1.0: + resolution: {integrity: sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==} + engines: {node: '>= 0.8.0'} + dependencies: + accepts: 1.3.8 + batch: 0.6.1 + debug: 2.6.9_supports-color@6.1.0 + escape-html: 1.0.3 + http-errors: 1.6.3 + mime-types: 2.1.35 + parseurl: 1.3.3 + transitivePeerDependencies: + - supports-color + dev: true + + /serve-static/1.15.0_supports-color@6.1.0: + resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==} + engines: {node: '>= 0.8.0'} + dependencies: + encodeurl: 1.0.2 + escape-html: 1.0.3 + parseurl: 1.3.3 + send: 0.18.0_supports-color@6.1.0 + transitivePeerDependencies: + - supports-color + dev: true + + /set-blocking/2.0.0: + resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} + dev: true + + /set-value/2.0.1: + resolution: {integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==} + engines: {node: '>=0.10.0'} + dependencies: + extend-shallow: 2.0.1 + is-extendable: 0.1.1 + is-plain-object: 2.0.4 + split-string: 3.1.0 + dev: true + + /setprototypeof/1.1.0: + resolution: {integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==} + dev: true + + /setprototypeof/1.2.0: + resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} + dev: true + + /shallow-clone/3.0.1: + resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==} + engines: {node: '>=8'} + dependencies: + kind-of: 6.0.3 + dev: true + + /shebang-command/1.2.0: + resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==} + engines: {node: '>=0.10.0'} + dependencies: + shebang-regex: 1.0.0 + dev: true + + /shebang-command/2.0.0: + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} + engines: {node: '>=8'} + dependencies: + shebang-regex: 3.0.0 + dev: true + + /shebang-regex/1.0.0: + resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==} + engines: {node: '>=0.10.0'} + dev: true + + /shebang-regex/3.0.0: + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} + engines: {node: '>=8'} + dev: true + + /side-channel/1.0.4: + resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.1.2 + object-inspect: 1.12.2 + dev: true + + /signal-exit/3.0.7: + resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + dev: true + + /slash/2.0.0: + resolution: {integrity: sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==} + engines: {node: '>=6'} + dev: true + + /slash/3.0.0: + resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} + engines: {node: '>=8'} + dev: true + + /slice-ansi/4.0.0: + resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} + engines: {node: '>=10'} + dependencies: + ansi-styles: 4.3.0 + astral-regex: 2.0.0 + is-fullwidth-code-point: 3.0.0 + dev: true + + /snapdragon-node/2.1.1: + resolution: {integrity: sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==} + engines: {node: '>=0.10.0'} + dependencies: + define-property: 1.0.0 + isobject: 3.0.1 + snapdragon-util: 3.0.1 + dev: true + + /snapdragon-util/3.0.1: + resolution: {integrity: sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==} + engines: {node: '>=0.10.0'} + dependencies: + kind-of: 3.2.2 + dev: true + + /snapdragon/0.8.2_supports-color@6.1.0: + resolution: {integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==} + engines: {node: '>=0.10.0'} + dependencies: + base: 0.11.2 + debug: 2.6.9_supports-color@6.1.0 + define-property: 0.2.5 + extend-shallow: 2.0.1 + map-cache: 0.2.2 + source-map: 0.5.7 + source-map-resolve: 0.5.3 + use: 3.1.1 + transitivePeerDependencies: + - supports-color + dev: true + + /sockjs-client/1.6.1_supports-color@6.1.0: + resolution: {integrity: sha512-2g0tjOR+fRs0amxENLi/q5TiJTqY+WXFOzb5UwXndlK6TO3U/mirZznpx6w34HVMoc3g7cY24yC/ZMIYnDlfkw==} + engines: {node: '>=12'} + dependencies: + debug: 3.2.7_supports-color@6.1.0 + eventsource: 2.0.2 + faye-websocket: 0.11.4 + inherits: 2.0.4 + url-parse: 1.5.10 + transitivePeerDependencies: + - supports-color + dev: true + + /sockjs/0.3.24: + resolution: {integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==} + dependencies: + faye-websocket: 0.11.4 + uuid: 8.3.2 + websocket-driver: 0.7.4 + dev: true + + /sort-keys/1.1.2: + resolution: {integrity: sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==} + engines: {node: '>=0.10.0'} + dependencies: + is-plain-obj: 1.1.0 + dev: true + + /source-map-js/1.0.2: + resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} + engines: {node: '>=0.10.0'} + dev: true + + /source-map-resolve/0.5.3: + resolution: {integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==} + deprecated: See https://github.com/lydell/source-map-resolve#deprecated + dependencies: + atob: 2.1.2 + decode-uri-component: 0.2.0 + resolve-url: 0.2.1 + source-map-url: 0.4.1 + urix: 0.1.0 + dev: true + + /source-map-support/0.5.21: + resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} + dependencies: + buffer-from: 1.1.2 + source-map: 0.6.1 + dev: true + + /source-map-url/0.4.1: + resolution: {integrity: sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==} + deprecated: See https://github.com/lydell/source-map-url#deprecated + dev: true + + /source-map/0.5.7: + resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==} + engines: {node: '>=0.10.0'} + dev: true + + /source-map/0.6.1: + resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} + engines: {node: '>=0.10.0'} + dev: true + + /spdx-correct/3.1.1: + resolution: {integrity: sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==} + dependencies: + spdx-expression-parse: 3.0.1 + spdx-license-ids: 3.0.11 + dev: true + + /spdx-exceptions/2.3.0: + resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==} + dev: true + + /spdx-expression-parse/3.0.1: + resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} + dependencies: + spdx-exceptions: 2.3.0 + spdx-license-ids: 3.0.11 + dev: true + + /spdx-license-ids/3.0.11: + resolution: {integrity: sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g==} + dev: true + + /spdy-transport/3.0.0_supports-color@6.1.0: + resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==} + dependencies: + debug: 4.3.4_supports-color@6.1.0 + detect-node: 2.1.0 + hpack.js: 2.1.6 + obuf: 1.1.2 + readable-stream: 3.6.0 + wbuf: 1.7.3 + transitivePeerDependencies: + - supports-color + dev: true + + /spdy/4.0.2_supports-color@6.1.0: + resolution: {integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==} + engines: {node: '>=6.0.0'} + dependencies: + debug: 4.3.4_supports-color@6.1.0 + handle-thing: 2.0.1 + http-deceiver: 1.2.7 + select-hose: 2.0.0 + spdy-transport: 3.0.0_supports-color@6.1.0 + transitivePeerDependencies: + - supports-color + dev: true + + /split-string/3.1.0: + resolution: {integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==} + engines: {node: '>=0.10.0'} + dependencies: + extend-shallow: 3.0.2 + dev: true + + /split/1.0.1: + resolution: {integrity: sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==} + dependencies: + through: 2.3.8 + dev: true + + /split2/3.2.2: + resolution: {integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==} + dependencies: + readable-stream: 3.6.0 + dev: true + + /sprintf-js/1.0.3: + resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} + dev: true + + /stable/0.1.8: + resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==} + deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility' + dev: true + + /stack-utils/2.0.5: + resolution: {integrity: sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==} + engines: {node: '>=10'} + dependencies: + escape-string-regexp: 2.0.0 + dev: true + + /static-extend/0.1.2: + resolution: {integrity: sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==} + engines: {node: '>=0.10.0'} + dependencies: + define-property: 0.2.5 + object-copy: 0.1.0 + dev: true + + /statuses/1.5.0: + resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==} + engines: {node: '>= 0.6'} + dev: true + + /statuses/2.0.1: + resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} + engines: {node: '>= 0.8'} + dev: true + + /strict-uri-encode/1.1.0: + resolution: {integrity: sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==} + engines: {node: '>=0.10.0'} + dev: true + + /string-width/3.1.0: + resolution: {integrity: sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==} + engines: {node: '>=6'} + dependencies: + emoji-regex: 7.0.3 + is-fullwidth-code-point: 2.0.0 + strip-ansi: 5.2.0 + dev: true + + /string-width/4.2.3: + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} + engines: {node: '>=8'} + dependencies: + emoji-regex: 8.0.0 + is-fullwidth-code-point: 3.0.0 + strip-ansi: 6.0.1 + dev: true + + /string.prototype.matchall/4.0.7: + resolution: {integrity: sha512-f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg==} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.1 + get-intrinsic: 1.1.2 + has-symbols: 1.0.3 + internal-slot: 1.0.3 + regexp.prototype.flags: 1.4.3 + side-channel: 1.0.4 + dev: true + + /string.prototype.trimend/1.0.5: + resolution: {integrity: sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.1 + dev: true + + /string.prototype.trimstart/1.0.5: + resolution: {integrity: sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.1 + dev: true + + /string_decoder/1.1.1: + resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} + dependencies: + safe-buffer: 5.1.2 + dev: true + + /string_decoder/1.3.0: + resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} + dependencies: + safe-buffer: 5.2.1 + dev: true + + /strip-ansi/3.0.1: + resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==} + engines: {node: '>=0.10.0'} + dependencies: + ansi-regex: 2.1.1 + dev: true + + /strip-ansi/5.2.0: + resolution: {integrity: sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==} + engines: {node: '>=6'} + dependencies: + ansi-regex: 4.1.1 + dev: true + + /strip-ansi/6.0.1: + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + engines: {node: '>=8'} + dependencies: + ansi-regex: 5.0.1 + dev: true + + /strip-bom/3.0.0: + resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} + engines: {node: '>=4'} + dev: true + + /strip-eof/1.0.0: + resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==} + engines: {node: '>=0.10.0'} + dev: true + + /strip-indent/3.0.0: + resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} + engines: {node: '>=8'} + dependencies: + min-indent: 1.0.1 + dev: true + + /strip-json-comments/3.1.1: + resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} + engines: {node: '>=8'} + dev: true + + /strip-outer/1.0.1: + resolution: {integrity: sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==} + engines: {node: '>=0.10.0'} + dependencies: + escape-string-regexp: 1.0.5 + dev: true + + /strip-url-auth/1.0.1: + resolution: {integrity: sha512-++41PnXftlL3pvI6lpvhSEO+89g1kIJC4MYB5E6yH+WHa5InIqz51yGd1YOGd7VNSNdoEOfzTMqbAM/2PbgaHQ==} + engines: {node: '>=0.10.0'} + dev: true + + /stylehacks/5.1.0_postcss@8.4.16: + resolution: {integrity: sha512-SzLmvHQTrIWfSgljkQCw2++C9+Ne91d/6Sp92I8c5uHTcy/PgeHamwITIbBW9wnFTY/3ZfSXR9HIL6Ikqmcu6Q==} + engines: {node: ^10 || ^12 || >=14.0} + peerDependencies: + postcss: ^8.2.15 + dependencies: + browserslist: 4.21.3 + postcss: 8.4.16 + postcss-selector-parser: 6.0.10 + dev: true + + /supports-color/5.5.0: + resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} + engines: {node: '>=4'} + dependencies: + has-flag: 3.0.0 + dev: true + + /supports-color/6.1.0: + resolution: {integrity: sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==} + engines: {node: '>=6'} + dependencies: + has-flag: 3.0.0 + dev: true + + /supports-color/7.2.0: + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} + dependencies: + has-flag: 4.0.0 + dev: true + + /supports-color/8.1.1: + resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} + engines: {node: '>=10'} + dependencies: + has-flag: 4.0.0 + dev: true + + /supports-preserve-symlinks-flag/1.0.0: + resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} + engines: {node: '>= 0.4'} + dev: true + + /svg-parser/2.0.4: + resolution: {integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==} + dev: true + + /svgo/2.8.0: + resolution: {integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==} + engines: {node: '>=10.13.0'} + hasBin: true + dependencies: + '@trysound/sax': 0.2.0 + commander: 7.2.0 + css-select: 4.3.0 + css-tree: 1.1.3 + csso: 4.2.0 + picocolors: 1.0.0 + stable: 0.1.8 + dev: true + + /table/6.8.0: + resolution: {integrity: sha512-s/fitrbVeEyHKFa7mFdkuQMWlH1Wgw/yEXMt5xACT4ZpzWFluehAxRtUUQKPuWhaLAWhFcVx6w3oC8VKaUfPGA==} + engines: {node: '>=10.0.0'} + dependencies: + ajv: 8.11.0 + lodash.truncate: 4.4.2 + slice-ansi: 4.0.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + dev: true + + /tapable/2.2.1: + resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} + engines: {node: '>=6'} + dev: true + + /temp-dir/2.0.0: + resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==} + engines: {node: '>=8'} + dev: true + + /tempfile/3.0.0: + resolution: {integrity: sha512-uNFCg478XovRi85iD42egu+eSFUmmka750Jy7L5tfHI5hQKKtbPnxaSaXAbBqCDYrw3wx4tXjKwci4/QmsZJxw==} + engines: {node: '>=8'} + dependencies: + temp-dir: 2.0.0 + uuid: 3.4.0 + dev: true + + /terser-webpack-plugin/5.3.5_webpack@5.74.0: + resolution: {integrity: sha512-AOEDLDxD2zylUGf/wxHxklEkOe2/r+seuyOWujejFrIxHf11brA1/dWQNIgXa1c6/Wkxgu7zvv0JhOWfc2ELEA==} + engines: {node: '>= 10.13.0'} + peerDependencies: + '@swc/core': '*' + esbuild: '*' + uglify-js: '*' + webpack: ^5.1.0 + peerDependenciesMeta: + '@swc/core': + optional: true + esbuild: + optional: true + uglify-js: + optional: true + dependencies: + '@jridgewell/trace-mapping': 0.3.15 + jest-worker: 27.5.1 + schema-utils: 3.1.1 + serialize-javascript: 6.0.0 + terser: 5.14.2 + webpack: 5.74.0_webpack-cli@4.10.0 + dev: true + + /terser/5.14.2: + resolution: {integrity: sha512-oL0rGeM/WFQCUd0y2QrWxYnq7tfSuKBiqTjRPWrRgB46WD/kiwHwF8T23z78H6Q6kGCuuHcPB+KULHRdxvVGQA==} + engines: {node: '>=10'} + hasBin: true + dependencies: + '@jridgewell/source-map': 0.3.2 + acorn: 8.8.0 + commander: 2.20.3 + source-map-support: 0.5.21 + dev: true + + /text-extensions/1.9.0: + resolution: {integrity: sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==} + engines: {node: '>=0.10'} + dev: true + + /text-table/0.2.0: + resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} + dev: true + + /through/2.3.8: + resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} + dev: true + + /through2/2.0.5: + resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==} + dependencies: + readable-stream: 2.3.7 + xtend: 4.0.2 + dev: true + + /through2/4.0.2: + resolution: {integrity: sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==} + dependencies: + readable-stream: 3.6.0 + dev: true + + /thunky/1.1.0: + resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==} + dev: true + + /to-fast-properties/2.0.0: + resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} + engines: {node: '>=4'} + dev: true + + /to-object-path/0.3.0: + resolution: {integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==} + engines: {node: '>=0.10.0'} + dependencies: + kind-of: 3.2.2 + dev: true + + /to-regex-range/2.1.1: + resolution: {integrity: sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==} + engines: {node: '>=0.10.0'} + dependencies: + is-number: 3.0.0 + repeat-string: 1.6.1 + dev: true + + /to-regex-range/5.0.1: + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} + dependencies: + is-number: 7.0.0 + dev: true + + /to-regex/3.0.2: + resolution: {integrity: sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==} + engines: {node: '>=0.10.0'} + dependencies: + define-property: 2.0.2 + extend-shallow: 3.0.2 + regex-not: 1.0.2 + safe-regex: 1.1.0 + dev: true + + /toidentifier/1.0.1: + resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} + engines: {node: '>=0.6'} + dev: true + + /trim-newlines/3.0.1: + resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==} + engines: {node: '>=8'} + dev: true + + /trim-repeated/1.0.0: + resolution: {integrity: sha512-pkonvlKk8/ZuR0D5tLW8ljt5I8kmxp2XKymhepUeOdCEfKpZaktSArkLHZt76OB1ZvO9bssUsDty4SWhLvZpLg==} + engines: {node: '>=0.10.0'} + dependencies: + escape-string-regexp: 1.0.5 + dev: true + + /tsconfig-paths/3.14.1: + resolution: {integrity: sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==} + dependencies: + '@types/json5': 0.0.29 + json5: 1.0.1 + minimist: 1.2.6 + strip-bom: 3.0.0 + dev: true + + /tslib/1.14.1: + resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} + dev: true + + /tslib/2.4.0: + resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==} + + /tsutils/3.21.0_typescript@4.7.4: + resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} + engines: {node: '>= 6'} + peerDependencies: + typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' + dependencies: + tslib: 1.14.1 + typescript: 4.7.4 + dev: true + + /type-check/0.4.0: + resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} + engines: {node: '>= 0.8.0'} + dependencies: + prelude-ls: 1.2.1 + dev: true + + /type-fest/0.18.1: + resolution: {integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==} + engines: {node: '>=10'} + dev: true + + /type-fest/0.20.2: + resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} + engines: {node: '>=10'} + dev: true + + /type-fest/0.6.0: + resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} + engines: {node: '>=8'} + dev: true + + /type-fest/0.8.1: + resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} + engines: {node: '>=8'} + dev: true + + /type-is/1.6.18: + resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==} + engines: {node: '>= 0.6'} + dependencies: + media-typer: 0.3.0 + mime-types: 2.1.35 + dev: true + + /typescript/4.7.4: + resolution: {integrity: sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==} + engines: {node: '>=4.2.0'} + hasBin: true + + /uglify-js/3.17.0: + resolution: {integrity: sha512-aTeNPVmgIMPpm1cxXr2Q/nEbvkmV8yq66F3om7X3P/cvOXQ0TMQ64Wk63iyT1gPlmdmGzjGpyLh1f3y8MZWXGg==} + engines: {node: '>=0.8.0'} + hasBin: true + requiresBuild: true + dev: true + optional: true + + /unbox-primitive/1.0.2: + resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} + dependencies: + call-bind: 1.0.2 + has-bigints: 1.0.2 + has-symbols: 1.0.3 + which-boxed-primitive: 1.0.2 + dev: true + + /unicode-canonical-property-names-ecmascript/2.0.0: + resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==} + engines: {node: '>=4'} + dev: true + + /unicode-match-property-ecmascript/2.0.0: + resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==} + engines: {node: '>=4'} + dependencies: + unicode-canonical-property-names-ecmascript: 2.0.0 + unicode-property-aliases-ecmascript: 2.0.0 + dev: true + + /unicode-match-property-value-ecmascript/2.0.0: + resolution: {integrity: sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==} + engines: {node: '>=4'} + dev: true + + /unicode-property-aliases-ecmascript/2.0.0: + resolution: {integrity: sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==} + engines: {node: '>=4'} + dev: true + + /union-value/1.0.1: + resolution: {integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==} + engines: {node: '>=0.10.0'} + dependencies: + arr-union: 3.1.0 + get-value: 2.0.6 + is-extendable: 0.1.1 + set-value: 2.0.1 + dev: true + + /universalify/0.1.2: + resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} + engines: {node: '>= 4.0.0'} + dev: true + + /unpipe/1.0.0: + resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} + engines: {node: '>= 0.8'} + dev: true + + /unset-value/1.0.0: + resolution: {integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==} + engines: {node: '>=0.10.0'} + dependencies: + has-value: 0.3.1 + isobject: 3.0.1 + dev: true + + /upath/1.2.0: + resolution: {integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==} + engines: {node: '>=4'} + dev: true + + /update-browserslist-db/1.0.5_browserslist@4.21.3: + resolution: {integrity: sha512-dteFFpCyvuDdr9S/ff1ISkKt/9YZxKjI9WlRR99c180GaztJtRa/fn18FdxGVKVsnPY7/a/FDN68mcvUmP4U7Q==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + dependencies: + browserslist: 4.21.3 + escalade: 3.1.1 + picocolors: 1.0.0 + dev: true + + /uri-js/4.4.1: + resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + dependencies: + punycode: 2.1.1 + dev: true + + /urix/0.1.0: + resolution: {integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==} + deprecated: Please see https://github.com/lydell/urix#deprecated + dev: true + + /url-loader/4.1.1_u4acmn7fe6yqgbrqzialkgh5lu: + resolution: {integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==} + engines: {node: '>= 10.13.0'} + peerDependencies: + file-loader: '*' + webpack: ^4.0.0 || ^5.0.0 + peerDependenciesMeta: + file-loader: + optional: true + dependencies: + file-loader: 6.2.0_webpack@5.74.0 + loader-utils: 2.0.2 + mime-types: 2.1.35 + schema-utils: 3.1.1 + webpack: 5.74.0_webpack-cli@4.10.0 + dev: true + + /url-parse/1.5.10: + resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} + dependencies: + querystringify: 2.2.0 + requires-port: 1.0.0 + dev: true + + /url/0.11.0: + resolution: {integrity: sha512-kbailJa29QrtXnxgq+DdCEGlbTeYM2eJUxsz6vjZavrCYPMIFHMKQmSKYAIuUK2i7hgPm28a8piX5NTUtM/LKQ==} + dependencies: + punycode: 1.3.2 + querystring: 0.2.0 + dev: true + + /use/3.1.1: + resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==} + engines: {node: '>=0.10.0'} + dev: true + + /util-deprecate/1.0.2: + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + dev: true + + /utila/0.4.0: + resolution: {integrity: sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==} + dev: true + + /utils-merge/1.0.1: + resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} + engines: {node: '>= 0.4.0'} + dev: true + + /uuid/3.4.0: + resolution: {integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==} + deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details. + hasBin: true + dev: true + + /uuid/8.3.2: + resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} + hasBin: true + dev: true + + /v8-compile-cache/2.3.0: + resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==} + dev: true + + /validate-npm-package-license/3.0.4: + resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} + dependencies: + spdx-correct: 3.1.1 + spdx-expression-parse: 3.0.1 + dev: true + + /vary/1.1.2: + resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} + engines: {node: '>= 0.8'} + dev: true + + /watchpack/2.4.0: + resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==} + engines: {node: '>=10.13.0'} + dependencies: + glob-to-regexp: 0.4.1 + graceful-fs: 4.2.10 + dev: true + + /wbuf/1.7.3: + resolution: {integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==} + dependencies: + minimalistic-assert: 1.0.1 + dev: true + + /webpack-cli/4.10.0_enc4da54mvzgn7gkchuyvuyzgu: + resolution: {integrity: sha512-NLhDfH/h4O6UOy+0LSso42xvYypClINuMNBVVzX4vX98TmTaTUxwRbXdhucbFMd2qLaCTcLq/PdYrvi8onw90w==} + engines: {node: '>=10.13.0'} + hasBin: true + peerDependencies: + '@webpack-cli/generators': '*' + '@webpack-cli/migrate': '*' + webpack: 4.x.x || 5.x.x + webpack-bundle-analyzer: '*' + webpack-dev-server: '*' + peerDependenciesMeta: + '@webpack-cli/generators': + optional: true + '@webpack-cli/migrate': + optional: true + webpack-bundle-analyzer: + optional: true + webpack-dev-server: + optional: true + dependencies: + '@discoveryjs/json-ext': 0.5.7 + '@webpack-cli/configtest': 1.2.0_5v66e2inugklgvlh4huuavolfq + '@webpack-cli/info': 1.5.0_webpack-cli@4.10.0 + '@webpack-cli/serve': 1.7.0_ixpxa6msyrc3obwec7as2lygbu + colorette: 2.0.19 + commander: 7.2.0 + cross-spawn: 7.0.3 + fastest-levenshtein: 1.0.16 + import-local: 3.1.0 + interpret: 2.2.0 + rechoir: 0.7.1 + webpack: 5.74.0_webpack-cli@4.10.0 + webpack-dev-server: 3.11.3_5v66e2inugklgvlh4huuavolfq + webpack-merge: 5.8.0 + dev: true + + /webpack-dev-middleware/3.7.3_webpack@5.74.0: + resolution: {integrity: sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==} + engines: {node: '>= 6'} + peerDependencies: + webpack: ^4.0.0 || ^5.0.0 + dependencies: + memory-fs: 0.4.1 + mime: 2.6.0 + mkdirp: 0.5.6 + range-parser: 1.2.1 + webpack: 5.74.0_webpack-cli@4.10.0 + webpack-log: 2.0.0 + dev: true + + /webpack-dev-server/3.11.3_5v66e2inugklgvlh4huuavolfq: + resolution: {integrity: sha512-3x31rjbEQWKMNzacUZRE6wXvUFuGpH7vr0lIEbYpMAG9BOxi0928QU1BBswOAP3kg3H1O4hiS+sq4YyAn6ANnA==} + engines: {node: '>= 6.11.5'} + hasBin: true + peerDependencies: + webpack: ^4.0.0 || ^5.0.0 + webpack-cli: '*' + peerDependenciesMeta: + webpack-cli: + optional: true + dependencies: + ansi-html-community: 0.0.8 + bonjour: 3.5.0 + chokidar: 2.1.8_supports-color@6.1.0 + compression: 1.7.4_supports-color@6.1.0 + connect-history-api-fallback: 1.6.0 + debug: 4.3.4_supports-color@6.1.0 + del: 4.1.1 + express: 4.18.1_supports-color@6.1.0 + html-entities: 1.4.0 + http-proxy-middleware: 0.19.1_tmpgdztspuwvsxzgjkhoqk7duq + import-local: 2.0.0 + internal-ip: 4.3.0 + ip: 1.1.8 + is-absolute-url: 3.0.3 + killable: 1.0.1 + loglevel: 1.8.0 + opn: 5.5.0 + p-retry: 3.0.1 + portfinder: 1.0.32_supports-color@6.1.0 + schema-utils: 1.0.0 + selfsigned: 1.10.14 + semver: 6.3.0 + serve-index: 1.9.1_supports-color@6.1.0 + sockjs: 0.3.24 + sockjs-client: 1.6.1_supports-color@6.1.0 + spdy: 4.0.2_supports-color@6.1.0 + strip-ansi: 3.0.1 + supports-color: 6.1.0 + url: 0.11.0 + webpack: 5.74.0_webpack-cli@4.10.0 + webpack-cli: 4.10.0_enc4da54mvzgn7gkchuyvuyzgu + webpack-dev-middleware: 3.7.3_webpack@5.74.0 + webpack-log: 2.0.0 + ws: 6.2.2 + yargs: 13.3.2 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + dev: true + + /webpack-log/2.0.0: + resolution: {integrity: sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==} + engines: {node: '>= 6'} + dependencies: + ansi-colors: 3.2.4 + uuid: 3.4.0 + dev: true + + /webpack-merge/5.8.0: + resolution: {integrity: sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==} + engines: {node: '>=10.0.0'} + dependencies: + clone-deep: 4.0.1 + wildcard: 2.0.0 + dev: true + + /webpack-sources/3.2.3: + resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==} + engines: {node: '>=10.13.0'} + dev: true + + /webpack/5.74.0_webpack-cli@4.10.0: + resolution: {integrity: sha512-A2InDwnhhGN4LYctJj6M1JEaGL7Luj6LOmyBHjcI8529cm5p6VXiTIW2sn6ffvEAKmveLzvu4jrihwXtPojlAA==} + engines: {node: '>=10.13.0'} + hasBin: true + peerDependencies: + webpack-cli: '*' + peerDependenciesMeta: + webpack-cli: + optional: true + dependencies: + '@types/eslint-scope': 3.7.4 + '@types/estree': 0.0.51 + '@webassemblyjs/ast': 1.11.1 + '@webassemblyjs/wasm-edit': 1.11.1 + '@webassemblyjs/wasm-parser': 1.11.1 + acorn: 8.8.0 + acorn-import-assertions: 1.8.0_acorn@8.8.0 + browserslist: 4.21.3 + chrome-trace-event: 1.0.3 + enhanced-resolve: 5.10.0 + es-module-lexer: 0.9.3 + eslint-scope: 5.1.1 + events: 3.3.0 + glob-to-regexp: 0.4.1 + graceful-fs: 4.2.10 + json-parse-even-better-errors: 2.3.1 + loader-runner: 4.3.0 + mime-types: 2.1.35 + neo-async: 2.6.2 + schema-utils: 3.1.1 + tapable: 2.2.1 + terser-webpack-plugin: 5.3.5_webpack@5.74.0 + watchpack: 2.4.0 + webpack-cli: 4.10.0_enc4da54mvzgn7gkchuyvuyzgu + webpack-sources: 3.2.3 + transitivePeerDependencies: + - '@swc/core' + - esbuild + - uglify-js + dev: true + + /websocket-driver/0.7.4: + resolution: {integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==} + engines: {node: '>=0.8.0'} + dependencies: + http-parser-js: 0.5.8 + safe-buffer: 5.2.1 + websocket-extensions: 0.1.4 + dev: true + + /websocket-extensions/0.1.4: + resolution: {integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==} + engines: {node: '>=0.8.0'} + dev: true + + /which-boxed-primitive/1.0.2: + resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} + dependencies: + is-bigint: 1.0.4 + is-boolean-object: 1.1.2 + is-number-object: 1.0.7 + is-string: 1.0.7 + is-symbol: 1.0.4 + dev: true + + /which-module/2.0.0: + resolution: {integrity: sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q==} + dev: true + + /which/1.3.1: + resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} + hasBin: true + dependencies: + isexe: 2.0.0 + dev: true + + /which/2.0.2: + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} + engines: {node: '>= 8'} + hasBin: true + dependencies: + isexe: 2.0.0 + dev: true + + /wildcard/2.0.0: + resolution: {integrity: sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==} + dev: true + + /word-wrap/1.2.3: + resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==} + engines: {node: '>=0.10.0'} + dev: true + + /wordwrap/1.0.0: + resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} + dev: true + + /wrap-ansi/5.1.0: + resolution: {integrity: sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==} + engines: {node: '>=6'} + dependencies: + ansi-styles: 3.2.1 + string-width: 3.1.0 + strip-ansi: 5.2.0 + dev: true + + /wrap-ansi/7.0.0: + resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} + engines: {node: '>=10'} + dependencies: + ansi-styles: 4.3.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + dev: true + + /wrappy/1.0.2: + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + dev: true + + /ws/6.2.2: + resolution: {integrity: sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: ^5.0.2 + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + dependencies: + async-limiter: 1.0.1 + dev: true + + /xtend/4.0.2: + resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} + engines: {node: '>=0.4'} + dev: true + + /y18n/4.0.3: + resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==} + dev: true + + /y18n/5.0.8: + resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} + engines: {node: '>=10'} + dev: true + + /yallist/4.0.0: + resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} + dev: true + + /yaml/1.10.2: + resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} + engines: {node: '>= 6'} + dev: true + + /yargs-parser/13.1.2: + resolution: {integrity: sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==} + dependencies: + camelcase: 5.3.1 + decamelize: 1.2.0 + dev: true + + /yargs-parser/20.2.9: + resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} + engines: {node: '>=10'} + dev: true + + /yargs/13.3.2: + resolution: {integrity: sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==} + dependencies: + cliui: 5.0.0 + find-up: 3.0.0 + 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.1.0 + which-module: 2.0.0 + y18n: 4.0.3 + yargs-parser: 13.1.2 + dev: true + + /yargs/16.2.0: + resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==} + engines: {node: '>=10'} + dependencies: + cliui: 7.0.4 + escalade: 3.1.1 + get-caller-file: 2.0.5 + require-directory: 2.1.1 + string-width: 4.2.3 + y18n: 5.0.8 + yargs-parser: 20.2.9 + dev: true diff --git a/postcss.config.js b/postcss.config.js old mode 100644 new mode 100755 index bd9ce5f..08b4e5a --- a/postcss.config.js +++ b/postcss.config.js @@ -1,24 +1,18 @@ -const { NODE_ENV } = process.env; -const __DEBUG__ = NODE_ENV === 'development'; - +/* eslint-disable @typescript-eslint/no-var-requires */ const plugins = [ - require('autoprefixer')({ - browsers: [ - '> 1%', - 'last 2 versions', - 'ie >= 9' + require('autoprefixer'), + require('cssnano')({ + preset: [ + 'default', + { + discardComments: { + removeAll: true + } + } ] }) ]; -plugins.push(require('cssnano')({ - preset: ['default', { - discardComments: { - removeAll: !__DEBUG__ - } - }] -})); - module.exports = { plugins }; diff --git a/preview-1.png b/preview-1.png new file mode 100644 index 0000000..1c20a69 Binary files /dev/null and b/preview-1.png differ diff --git a/preview-2.png b/preview-2.png new file mode 100644 index 0000000..f8536a7 Binary files /dev/null and b/preview-2.png differ diff --git a/readme.jpg b/readme.jpg deleted file mode 100644 index 9acff05..0000000 Binary files a/readme.jpg and /dev/null differ diff --git a/src/App.js b/src/App.js deleted file mode 100644 index 745a8dc..0000000 --- a/src/App.js +++ /dev/null @@ -1,26 +0,0 @@ -// @flow - -import * as React from 'react'; -import { Router, browserHistory } from 'react-router'; -import { IntlProvider } from 'react-intl'; -import { IntlProvider as RSIntlProvider } from 'rsuite'; - -import enGB from 'rsuite/lib/IntlProvider/locales/en_GB'; -import locales from './locales'; -import routes from './routes'; - -type Props = {}; - -class App extends React.Component { - render() { - return ( - - - - - - ); - } -} - -export default App; diff --git a/src/App.tsx b/src/App.tsx new file mode 100644 index 0000000..4d9c7a1 --- /dev/null +++ b/src/App.tsx @@ -0,0 +1,69 @@ +import React from 'react'; +import { Routes, Route } from 'react-router-dom'; +import { IntlProvider } from 'react-intl'; +import { CustomProvider } from 'rsuite'; +import enGB from 'rsuite/locales/en_GB'; +import locales from './locales'; + +import Frame from './components/Frame'; +import Dashboard from './pages/dashboard'; +import Error404 from './pages/error/404'; +import Error500 from './pages/error/500'; +import Members from './pages/list/members'; + +import DashboardIcon from '@rsuite/icons/Dashboard'; +import GroupIcon from '@rsuite/icons/legacy/Group'; +import ExclamationTriangleIcon from '@rsuite/icons/legacy/ExclamationTriangle'; + +const appNavs = [ + { + eventKey: '1', + icon: , + title: 'Dashboard', + to: '/dashboard' + }, + { + eventKey: '2', + icon: , + title: 'Members', + to: '/list-members' + }, + { + eventKey: '3', + title: 'Errors', + icon: , + children: [ + { + eventKey: '3-1', + title: 'Error 404', + to: '/error-404' + }, + { + eventKey: '3-2', + title: 'Error 500', + to: '/error-500' + } + ] + } +]; + +const App = () => { + return ( + + + + }> + } /> + } /> + } /> + } /> + } /> + + } /> + + + + ); +}; + +export default App; diff --git a/src/components/ErrorPage/ErrorPage.js b/src/components/ErrorPage/ErrorPage.tsx similarity index 82% rename from src/components/ErrorPage/ErrorPage.js rename to src/components/ErrorPage/ErrorPage.tsx index 2727509..439e22d 100644 --- a/src/components/ErrorPage/ErrorPage.js +++ b/src/components/ErrorPage/ErrorPage.tsx @@ -1,13 +1,11 @@ -// flow - -import * as React from 'react'; +import React from 'react'; import { FormattedMessage } from 'react-intl'; import * as errors from '../../images/errors'; const ErrorPage = ({ code = 404 }) => (
- +

{code}

diff --git a/src/components/ErrorPage/index.js b/src/components/ErrorPage/index.ts similarity index 100% rename from src/components/ErrorPage/index.js rename to src/components/ErrorPage/index.ts diff --git a/src/components/ErrorPage/styles.less b/src/components/ErrorPage/styles.less index 04a7261..c846c1e 100644 --- a/src/components/ErrorPage/styles.less +++ b/src/components/ErrorPage/styles.less @@ -4,10 +4,12 @@ margin-top: -40px; justify-content: center; align-items: center; + .item { img { height: 260px; } + .text { text-align: center; color: @H500; diff --git a/src/components/Frame/Frame.js b/src/components/Frame/Frame.js deleted file mode 100644 index a60057f..0000000 --- a/src/components/Frame/Frame.js +++ /dev/null @@ -1,200 +0,0 @@ -// @flow - -import * as React from 'react'; -import classNames from 'classnames'; -import PropTypes from 'prop-types'; -import { Link } from 'react-router'; -import { - Container, - Sidebar, - Sidenav, - Icon, - Header, - Content, - Dropdown, - Nav, - DOMHelper -} from 'rsuite'; - -import NavToggle from './NavToggle'; -import HeaderAvatar from '../HeaderAvatar'; -import { pageview } from '../../tracker'; - -const { getHeight, on } = DOMHelper; -const navs = [ - { - key: '1', - icon: , - text: 'Dashboard', - link: '/dashboard' - }, - { - key: '2', - icon: , - text: 'Members', - link: '/list/members' - }, - { - key: '3', - text: 'Errors', - icon: , - children: [ - { - key: '3-1', - text: '404', - link: '/error/404' - }, - { - key: '3-1', - text: '500', - link: '/error/500' - } - ] - } -]; - -type State = { - windowHeight: number, - expand: boolean -}; - -type Props = { - children: React.Node -}; - -class Frame extends React.Component { - resizeListenner = null; - static contextTypes = { - router: PropTypes.object - }; - constructor(props: Props) { - super(props); - this.state = { - windowHeight: getHeight(window), - expand: true - }; - this.resizeListenner = on(window, 'resize', this.updateHeight); - } - updateHeight = () => { - this.setState({ - windowHeight: getHeight(window) - }); - }; - handleToggle = () => { - this.setState({ - expand: !this.state.expand - }); - }; - - componentWillUnmount() { - if (this.resizeListenner) { - this.resizeListenner.off(); - } - } - - renderNavs() { - return navs.map(item => { - if (item.children) { - return ( - - {item.children.map(child => { - return ( - - {child.text} - - ); - })} - - ); - } - - return ( - - {item.text} - - ); - }); - } - componentDidMount() { - this.context.router.listen(() => { - pageview(); - }); - } - render() { - const { children } = this.props; - const { expand, windowHeight } = this.state; - - const containerClasses = classNames('page-container', { - 'container-full': !expand - }); - - let navBodyStyle = null; - if (expand) { - navBodyStyle = { - height: windowHeight - 112, - overflow: 'auto' - }; - } - - return ( - - - -

- - - RSUITE ANALYTICS - -
- - - - - - - - - - - - {children} - - - ); - } -} - -export default Frame; diff --git a/src/components/Frame/Frame.tsx b/src/components/Frame/Frame.tsx new file mode 100644 index 0000000..1e8091b --- /dev/null +++ b/src/components/Frame/Frame.tsx @@ -0,0 +1,111 @@ +import React, { useEffect, useState } from 'react'; +import classNames from 'classnames'; +import { Container, Sidebar, Sidenav, Content, Nav, DOMHelper } from 'rsuite'; +import { Link, Outlet } from 'react-router-dom'; +import NavToggle from './NavToggle'; +import Header from '../Header'; +import GithubIcon from '@rsuite/icons/legacy/Github'; +import AdvancedAnalyticsIcon from '@rsuite/icons/AdvancedAnalytics'; +import NavLink from '../NavLink'; + +const { getHeight, on } = DOMHelper; + +const NavItem = props => { + const { title, eventKey, ...rest } = props; + return ( + + {title} + + ); +}; + +export interface NavItemData { + eventKey: string; + title: string; + icon?: any; + to?: string; + children?: NavItemData[]; +} + +export interface FrameProps { + navs: NavItemData[]; + children?: React.ReactNode; +} + +const Frame = (props: FrameProps) => { + const { navs } = props; + const [expand, setExpand] = useState(true); + const [windowHeight, setWindowHeight] = useState(getHeight(window)); + + useEffect(() => { + setWindowHeight(getHeight(window)); + const resizeListenner = on(window, 'resize', () => setWindowHeight(getHeight(window))); + + return () => { + resizeListenner.off(); + }; + }, []); + + const containerClasses = classNames('page-container', { + 'container-full': !expand + }); + + const navBodyStyle: React.CSSProperties = expand + ? { height: windowHeight - 112, overflow: 'auto' } + : {}; + + return ( + + + +
+ + + Admin Template + +
+
+ + + + + + setExpand(!expand)} /> +
+ + +
+ + + + + + ); +}; + +export default Frame; diff --git a/src/components/Frame/NavToggle.js b/src/components/Frame/NavToggle.js deleted file mode 100644 index ad0e418..0000000 --- a/src/components/Frame/NavToggle.js +++ /dev/null @@ -1,51 +0,0 @@ -// @flow -import React from 'react'; -import { Navbar, Nav, Dropdown, Icon } from 'rsuite'; - -const styles = { - icon: { - width: 56, - height: 56, - lineHeight: '56px', - textAlign: 'center' - }, - navItem: { - width: 56, - textAlign: 'center' - } -}; - -type Props = { - expand?: boolean, - onChange?: () => void -}; - -const NavToggle = ({ expand, onChange }: Props) => { - return ( - - - - - - - - ); -}; - -export default NavToggle; diff --git a/src/components/Frame/NavToggle.tsx b/src/components/Frame/NavToggle.tsx new file mode 100644 index 0000000..9c7f594 --- /dev/null +++ b/src/components/Frame/NavToggle.tsx @@ -0,0 +1,23 @@ +import React from 'react'; +import { Navbar, Nav } from 'rsuite'; +import AngleRightIcon from '@rsuite/icons/ArrowRight'; +import AngleLeftIcon from '@rsuite/icons/ArrowLeft'; + +interface NavToggleProps { + expand?: boolean; + onChange?: () => void; +} + +const NavToggle = ({ expand, onChange }: NavToggleProps) => { + return ( + + + + ); +}; + +export default NavToggle; diff --git a/src/components/Frame/index.js b/src/components/Frame/index.ts similarity index 100% rename from src/components/Frame/index.js rename to src/components/Frame/index.ts diff --git a/src/components/Frame/styles.less b/src/components/Frame/styles.less index e671627..baf60b9 100644 --- a/src/components/Frame/styles.less +++ b/src/components/Frame/styles.less @@ -29,7 +29,10 @@ border-top: 1px solid #eee; } - .nav-item-active { - color: @H500 !important; + .rs-sidenav-item, + .rs-dropdown-item { + &.active { + color: @H500 !important; + } } } diff --git a/src/components/Header/Header.tsx b/src/components/Header/Header.tsx new file mode 100644 index 0000000..7ffc683 --- /dev/null +++ b/src/components/Header/Header.tsx @@ -0,0 +1,62 @@ +import React, { useRef } from 'react'; +import { Dropdown, Popover, Whisper, WhisperInstance, Stack, Badge, Avatar } from 'rsuite'; +import NoticeIcon from '@rsuite/icons/Notice'; +import HelpOutlineIcon from '@rsuite/icons/HelpOutline'; + +const renderAdminSpeaker = ({ onClose, left, top, className }: any, ref) => { + const handleSelect = eventKey => { + onClose(); + console.log(eventKey); + }; + return ( + + + +

Signed in as

+ Administrator +
+ + Your profile + Your stars + Your Gists + + Settings + Sign out + } + href="https://rsuitejs.com" + target="_blank" + as="a" + > + Help{' '} + +
+
+ ); +}; + +const Header = () => { + const trigger = useRef(null); + + return ( + + + + + + + + + Admin + + + + ); +}; + +export default Header; diff --git a/src/components/Header/index.ts b/src/components/Header/index.ts new file mode 100644 index 0000000..a9ce105 --- /dev/null +++ b/src/components/Header/index.ts @@ -0,0 +1,3 @@ +import Header from './Header'; + +export default Header; diff --git a/src/components/HeaderAvatar/styles.less b/src/components/Header/styles.less similarity index 55% rename from src/components/HeaderAvatar/styles.less rename to src/components/Header/styles.less index c358510..c9e32eb 100644 --- a/src/components/HeaderAvatar/styles.less +++ b/src/components/Header/styles.less @@ -1,7 +1,7 @@ -.header-avatar { +.header { position: absolute; - right: 20px; - top: 20px; + right: 40px; + top: 30px; cursor: pointer; z-index: 1; } diff --git a/src/components/HeaderAvatar/HeaderAvatar.js b/src/components/HeaderAvatar/HeaderAvatar.js deleted file mode 100644 index 94f9d13..0000000 --- a/src/components/HeaderAvatar/HeaderAvatar.js +++ /dev/null @@ -1,55 +0,0 @@ -//@flow - -import * as React from 'react'; -import { Dropdown, Popover, Whisper, Icon } from 'rsuite'; - -const Menu = ({ onSelect }) => ( - - -

Signed in as

- Foobar -
- - Your profile - Your stars - Your Gists - - Help - Settings - Sign out -
-); - -const MenuPopover = ({ onSelect, ...rest }) => ( - - - -); - -type Props = {}; -class HeaderAvatar extends React.Component { - trigger = null; - handleSelectMenu = (eventKey: any, event: SyntheticEvent<*>) => { - if (this.trigger) { - this.trigger.hide(); - } - }; - render() { - return ( -
- { - this.trigger = ref; - }} - speaker={} - > - - -
- ); - } -} - -export default HeaderAvatar; diff --git a/src/components/HeaderAvatar/index.js b/src/components/HeaderAvatar/index.js deleted file mode 100644 index 3acd427..0000000 --- a/src/components/HeaderAvatar/index.js +++ /dev/null @@ -1,3 +0,0 @@ -import HeaderAvatar from './HeaderAvatar'; - -export default HeaderAvatar; diff --git a/src/components/NavLink.tsx b/src/components/NavLink.tsx new file mode 100644 index 0000000..66587e8 --- /dev/null +++ b/src/components/NavLink.tsx @@ -0,0 +1,14 @@ +import React from 'react'; +import { NavLinkProps, NavLink as BaseNavLink } from 'react-router-dom'; + +const NavLink = React.forwardRef( + ({ to, children, ...rest }, ref) => { + return ( + + {children} + + ); + } +); + +export default NavLink; diff --git a/src/components/index.js b/src/components/index.js deleted file mode 100644 index a6051b8..0000000 --- a/src/components/index.js +++ /dev/null @@ -1,3 +0,0 @@ -export ErrorPage from './ErrorPage'; -export FlowChart from './FlowChart'; -export Frame from './Frame'; diff --git a/src/components/index.ts b/src/components/index.ts new file mode 100644 index 0000000..846c58a --- /dev/null +++ b/src/components/index.ts @@ -0,0 +1,3 @@ +export { default as ErrorPage } from './ErrorPage'; +export { default as HeaderAvatar } from './HeaderAvatar'; +export { default as Frame } from './Frame'; diff --git a/src/constants/index.js b/src/constants/index.js deleted file mode 100644 index e69de29..0000000 diff --git a/src/constants/index.ts b/src/constants/index.ts new file mode 100644 index 0000000..8337712 --- /dev/null +++ b/src/constants/index.ts @@ -0,0 +1 @@ +// diff --git a/src/data/mock.ts b/src/data/mock.ts new file mode 100644 index 0000000..503de87 --- /dev/null +++ b/src/data/mock.ts @@ -0,0 +1,48 @@ +import { faker } from '@faker-js/faker/locale/en'; + +export function mockUsers(length: number) { + const createRowData = rowIndex => { + const firstName = faker.name.firstName(); + const lastName = faker.name.lastName(); + const gender = faker.name.gender(true) as 'female' | 'male'; + const name = faker.name.findName(firstName, lastName, gender); + const avatar = faker.image.avatar(); + + const city = faker.address.city(); + const street = faker.address.street(); + const email = faker.internet.email(); + const postcode = faker.address.zipCode(); + const phone = faker.phone.number(); + const amount = faker.finance.amount(1000, 90000); + + const age = Math.floor(Math.random() * 30) + 18; + const stars = Math.floor(Math.random() * 10000); + const followers = Math.floor(Math.random() * 10000); + const rating = 2 + Math.floor(Math.random() * 3); + const progress = Math.floor(Math.random() * 100); + + return { + id: rowIndex + 1, + name, + firstName, + lastName, + avatar, + city, + street, + postcode, + email, + phone, + gender, + age, + stars, + followers, + rating, + progress, + amount + }; + }; + + return Array.from({ length }).map((_, index) => { + return createRowData(index); + }); +} diff --git a/src/images/charts/index.js b/src/images/charts/index.js deleted file mode 100644 index a788b09..0000000 --- a/src/images/charts/index.js +++ /dev/null @@ -1,3 +0,0 @@ -export pv from './pv.svg'; -export uv from './uv.svg'; -export vv from './vv.svg'; diff --git a/src/images/charts/index.ts b/src/images/charts/index.ts new file mode 100644 index 0000000..5f72afc --- /dev/null +++ b/src/images/charts/index.ts @@ -0,0 +1,4 @@ +/* eslint-disable @typescript-eslint/no-var-requires */ +export const { default: PVIcon } = require('./pv.svg'); +export const { default: UVIcon } = require('./uv.svg'); +export const { default: VVICon } = require('./vv.svg'); diff --git a/src/images/errors/index.js b/src/images/errors/index.js deleted file mode 100644 index e100144..0000000 --- a/src/images/errors/index.js +++ /dev/null @@ -1,2 +0,0 @@ -export error404 from './404.svg'; -export error500 from './500.svg'; diff --git a/src/images/errors/index.ts b/src/images/errors/index.ts new file mode 100644 index 0000000..5f6ca55 --- /dev/null +++ b/src/images/errors/index.ts @@ -0,0 +1,3 @@ +/* eslint-disable @typescript-eslint/no-var-requires */ +export const { default: Error404Img } = require('./404.svg'); +export const { default: Error500Img } = require('./500.svg'); diff --git a/src/index.html b/src/index.html index 3d19808..f191da7 100644 --- a/src/index.html +++ b/src/index.html @@ -1,42 +1,40 @@ + + + <%= htmlWebpackPlugin.options.title %> + + + + - - - - <%= htmlWebpackPlugin.options.title %> - - - - - - - -
-
-
-
-
-
-
-
-
-
-
-
-
- - - - \ No newline at end of file + +
+ + + diff --git a/src/index.js b/src/index.js deleted file mode 100644 index c7c92f7..0000000 --- a/src/index.js +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react'; -import ReactDOM from 'react-dom'; -import { hot } from 'react-hot-loader'; -import ready from './ready'; -import App from './App'; - -import './styles/index.less'; - -const hotRender = Component => { - ReactDOM.render(, document.getElementById('root')); -}; - -ready(() => { - hotRender(hot(module)(App)); -}); diff --git a/src/index.tsx b/src/index.tsx new file mode 100644 index 0000000..240651c --- /dev/null +++ b/src/index.tsx @@ -0,0 +1,14 @@ +import React from 'react'; +import ReactDOM from 'react-dom/client'; +import { BrowserRouter } from 'react-router-dom'; +import App from './App'; + +import './styles/index.less'; + +const root = ReactDOM.createRoot(document.getElementById('root')); + +root.render( + + + +); diff --git a/src/locales/en-US/index.js b/src/locales/en-US/index.ts similarity index 100% rename from src/locales/en-US/index.js rename to src/locales/en-US/index.ts diff --git a/src/locales/index.js b/src/locales/index.js deleted file mode 100644 index 8573b77..0000000 --- a/src/locales/index.js +++ /dev/null @@ -1,14 +0,0 @@ -import en from './en-US'; -import zh from './zh-CN'; - -export function getDict(locale) { - if (locale === 'en') { - return en; - } - return zh; -} - -export default { - en: en, - zh: zh -}; diff --git a/src/locales/index.ts b/src/locales/index.ts new file mode 100644 index 0000000..856af3a --- /dev/null +++ b/src/locales/index.ts @@ -0,0 +1,7 @@ +import en from './en-US'; +import zh from './zh-CN'; + +export default { + en: en, + zh: zh +}; diff --git a/src/locales/zh-CN/index.js b/src/locales/zh-CN/index.ts similarity index 100% rename from src/locales/zh-CN/index.js rename to src/locales/zh-CN/index.ts diff --git a/src/routes/dashboard/ColorfulChart.js b/src/pages/dashboard/ColorfulChart.tsx similarity index 75% rename from src/routes/dashboard/ColorfulChart.js rename to src/pages/dashboard/ColorfulChart.tsx index 834470a..9d567ad 100644 --- a/src/routes/dashboard/ColorfulChart.js +++ b/src/pages/dashboard/ColorfulChart.tsx @@ -3,7 +3,15 @@ import classNames from 'classnames'; import Chartist from 'react-chartist'; import { formatValue } from '../../utils'; -const ColorfulChart = ({ className, title, data, type, options }) => ( +interface ColorfulChartProps { + className?: string; + title: string; + data: any; + type: string; + options?: any; +} + +const ColorfulChart = ({ className, title, data, type, options }: ColorfulChartProps) => (

{title}

( }, axisY: { offset: 50, - labelInterpolationFnc: function(value) { + labelInterpolationFnc: function (value) { return formatValue(value); } }, diff --git a/src/pages/dashboard/Dashboard.tsx b/src/pages/dashboard/Dashboard.tsx new file mode 100644 index 0000000..64002f6 --- /dev/null +++ b/src/pages/dashboard/Dashboard.tsx @@ -0,0 +1,103 @@ +import * as React from 'react'; +import { Row, Col, Panel } from 'rsuite'; + +import * as images from '../../images/charts'; +import ColorfulChart from './ColorfulChart'; +import SimpleLineChart from './SimpleLineChart'; +import SimplePieChart from './SimplePieChart'; + +const pvChartData = { + labels: [1, 2, 3, 4, 5, 6, 7], + series: [[112332, 123221, 432334, 342334, 133432, 4564342, 3353544]] +}; + +const vvChartData = { + labels: [1, 2, 3, 4, 5, 6, 7], + series: [[112332, 123221, 432534, 342334, 133432, 1064342, 953544]] +}; + +const uvChartData = { + labels: [1, 2, 3, 4, 5, 6, 7], + series: [[112332, 123221, 432344, 342334, 133432, 564342, 353544]] +}; + +const barChartData = { + labels: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'], + series: [ + [92332, 93221, 132344, 142334, 83432, 264342, 153544], + [112332, 123221, 432344, 342334, 133432, 564342, 353544] + ] +}; + +const pieChartData = { + labels: ['Direct', 'Internal', 'Referrals', 'Search Engines'], + series: [112332, 123221, 432334, 342334] +}; + +const Dashboard = () => { + return ( + Dashboard}> + + + + +
Page Views
+
281,358
+
+ + + + +
Visits
+
251,901
+
+ + + + +
Unique Visitors
+
25,135
+
+ +
+ + + + + + + + + + + + + + + + + + + + + +
+ ); +}; + +export default Dashboard; diff --git a/src/routes/dashboard/SimpleLineChart.js b/src/pages/dashboard/SimpleLineChart.tsx similarity index 68% rename from src/routes/dashboard/SimpleLineChart.js rename to src/pages/dashboard/SimpleLineChart.tsx index 3096212..7b83f09 100644 --- a/src/routes/dashboard/SimpleLineChart.js +++ b/src/pages/dashboard/SimpleLineChart.tsx @@ -2,7 +2,14 @@ import React from 'react'; import Chartist from 'react-chartist'; import { formatValue } from '../../utils'; -const SimpleLineChart = ({ className, title, data, type, options }) => ( +interface SimpleLineChartProps { + title: string; + data: any; + type: string; + options?: any; +} + +const SimpleLineChart = ({ title, data, type, options }: SimpleLineChartProps) => (

{title}

( axisY: { offset: 50, scaleMinSpace: 30, - labelInterpolationFnc: function(value) { + labelInterpolationFnc: function (value) { return formatValue(value); } }, diff --git a/src/routes/dashboard/SimplePieChart.js b/src/pages/dashboard/SimplePieChart.tsx similarity index 61% rename from src/routes/dashboard/SimplePieChart.js rename to src/pages/dashboard/SimplePieChart.tsx index 4087651..5ce2737 100644 --- a/src/routes/dashboard/SimplePieChart.js +++ b/src/pages/dashboard/SimplePieChart.tsx @@ -1,8 +1,14 @@ import React from 'react'; import Chartist from 'react-chartist'; -import { formatValue } from '../../utils'; -const SimplePieChart = ({ className, title, data, type, options }) => ( +interface SimplePieChartProps { + title: string; + data: any; + type: string; + options?: any; +} + +const SimplePieChart = ({ title, data, type, options }: SimplePieChartProps) => (

{title}

; diff --git a/src/pages/error/404/index.ts b/src/pages/error/404/index.ts new file mode 100644 index 0000000..b9ca947 --- /dev/null +++ b/src/pages/error/404/index.ts @@ -0,0 +1,3 @@ +import Error404 from './Error404'; + +export default Error404; diff --git a/src/pages/error/500/Error500.tsx b/src/pages/error/500/Error500.tsx new file mode 100644 index 0000000..917e65e --- /dev/null +++ b/src/pages/error/500/Error500.tsx @@ -0,0 +1,4 @@ +import * as React from 'react'; +import ErrorPage from '@/components/ErrorPage'; + +export default () => ; diff --git a/src/pages/error/500/index.ts b/src/pages/error/500/index.ts new file mode 100644 index 0000000..868698a --- /dev/null +++ b/src/pages/error/500/index.ts @@ -0,0 +1,3 @@ +import Error500 from './Error500'; + +export default Error500; diff --git a/src/pages/list/members/Cells.tsx b/src/pages/list/members/Cells.tsx new file mode 100644 index 0000000..75e87e3 --- /dev/null +++ b/src/pages/list/members/Cells.tsx @@ -0,0 +1,100 @@ +import React from 'react'; +import { Popover, Whisper, Checkbox, Dropdown, IconButton, Table, CellProps } from 'rsuite'; +import MoreIcon from '@rsuite/icons/legacy/More'; + +const { Cell } = Table; + +export const NameCell = ({ rowData, dataKey, ...props }: CellProps) => { + const speaker = ( + +

+ Name: {rowData.name} +

+

+ Gender: {rowData.gender} +

+

+ City: {rowData.city} +

+

+ Street: {rowData.street} +

+
+ ); + + return ( + + + {dataKey ? rowData[dataKey] : null} + + + ); +}; + +export const ImageCell = ({ rowData, dataKey, ...props }: CellProps) => ( + +
+ +
+
+); + +export const CheckCell = ({ + rowData, + onChange, + checkedKeys, + dataKey, + ...props +}: CellProps & { + checkedKeys: number[]; + onChange: (value: any, checked: boolean) => void; +}) => ( + +
+ item === rowData[dataKey!])} + /> +
+
+); + +const renderMenu = ({ onClose, left, top, className }: any, ref) => { + const handleSelect = eventKey => { + onClose(); + console.log(eventKey); + }; + return ( + + + Follow + Sponsor + Add to friends + View Profile + Block + + + ); +}; + +export const ActionCell = props => { + return ( + + + } /> + + + ); +}; diff --git a/src/pages/list/members/DataTable.tsx b/src/pages/list/members/DataTable.tsx new file mode 100644 index 0000000..814790f --- /dev/null +++ b/src/pages/list/members/DataTable.tsx @@ -0,0 +1,135 @@ +import React, { useState } from 'react'; +import { + Input, + InputGroup, + Table, + Panel, + ButtonToolbar, + Button, + DOMHelper, + Progress, + Checkbox +} from 'rsuite'; +import SearchIcon from '@rsuite/icons/Search'; +import MoreIcon from '@rsuite/icons/legacy/More'; +import DrawerView from './DrawerView'; +import { mockUsers } from '@/data/mock'; +import { NameCell, ImageCell, CheckCell, ActionCell } from './Cells'; + +const data = mockUsers(20); + +const { Column, HeaderCell, Cell } = Table; +const { getHeight } = DOMHelper; + +const DataTable = () => { + const [showDrawer, setShowDrawer] = useState(false); + const [checkedKeys, setCheckedKeys] = useState([]); + let checked = false; + let indeterminate = false; + + if (checkedKeys.length === data.length) { + checked = true; + } else if (checkedKeys.length === 0) { + checked = false; + } else if (checkedKeys.length > 0 && checkedKeys.length < data.length) { + indeterminate = true; + } + + const handleCheckAll = (_value, checked) => { + const keys = checked ? data.map(item => item.id) : []; + setCheckedKeys(keys); + }; + const handleCheck = (value, checked) => { + const keys = checked ? [...checkedKeys, value] : checkedKeys.filter(item => item !== value); + setCheckedKeys(keys); + }; + + return ( + <> + Members}> +
+ + + + +
+ + + + + + +
+
+ + + + Id + + + + + +
+ +
+
+ +
+ + Avatar + + + + + Name + + + + + Skill Proficiency + + {rowData => } + + + + + Rating + + {rowData => + Array.from({ length: rowData.rating }).map((_, i) => ⭐️) + } + + + + + Income + {rowData => `$${rowData.amount}`} + + + + Email + + + + + + + + + +
+
+ setShowDrawer(false)} /> + + ); +}; + +export default DataTable; diff --git a/src/pages/list/members/DrawerView.tsx b/src/pages/list/members/DrawerView.tsx new file mode 100644 index 0000000..415aec8 --- /dev/null +++ b/src/pages/list/members/DrawerView.tsx @@ -0,0 +1,55 @@ +import React from 'react'; +import { Drawer, DrawerProps, Button, Form } from 'rsuite'; + +const DrawerView = (props: DrawerProps) => { + const { onClose, ...rest } = props; + return ( + + + Add Member + + + + + + + +
+ + First Name + + Required + + + Last Name + + Required + + + Email + + Required + + + Password + + + + City + + + + Street + + +
+
+
+ ); +}; + +export default DrawerView; diff --git a/src/pages/list/members/index.ts b/src/pages/list/members/index.ts new file mode 100644 index 0000000..cbd52c7 --- /dev/null +++ b/src/pages/list/members/index.ts @@ -0,0 +1,3 @@ +import DataTable from './DataTable'; + +export default DataTable; diff --git a/src/routes/list/members/styles.less b/src/pages/list/members/styles.less similarity index 72% rename from src/routes/list/members/styles.less rename to src/pages/list/members/styles.less index 70a8c83..509289a 100644 --- a/src/routes/list/members/styles.less +++ b/src/pages/list/members/styles.less @@ -17,4 +17,11 @@ .rs-table { background: #fff; + + .link-group { + cursor: pointer; + .rs-table-cell-content { + padding: 5px; + } + } } diff --git a/src/routes/list/members/users.js b/src/pages/list/members/users.ts similarity index 100% rename from src/routes/list/members/users.js rename to src/pages/list/members/users.ts diff --git a/src/polyfills.js b/src/polyfills.js deleted file mode 100644 index b012711..0000000 --- a/src/polyfills.js +++ /dev/null @@ -1 +0,0 @@ -import 'babel-polyfill'; diff --git a/src/ready.js b/src/ready.js deleted file mode 100644 index 4c7d34c..0000000 --- a/src/ready.js +++ /dev/null @@ -1,17 +0,0 @@ -import { removeClass } from 'dom-lib'; - -const filter = [ - /** - * 自定义异步预加载 - */ - new Promise((resolve, reject) => { - resolve(); - }) -]; - -export default function ready(callback) { - Promise.all(filter).then(values => { - callback(values); - removeClass(document.getElementById('body'), 'body-loading'); - }); -} diff --git a/src/routes/dashboard/Dashboard.js b/src/routes/dashboard/Dashboard.js deleted file mode 100644 index d210658..0000000 --- a/src/routes/dashboard/Dashboard.js +++ /dev/null @@ -1,107 +0,0 @@ -import * as React from 'react'; -import { Row, Col, Icon, Panel } from 'rsuite'; - -import * as images from '../../images/charts'; -import ColorfulChart from './ColorfulChart'; -import SimpleLineChart from './SimpleLineChart'; -import SimplePieChart from './SimplePieChart'; - -const pvChartData = { - labels: [1, 2, 3, 4, 5, 6, 7], - series: [[112332, 123221, 432334, 342334, 133432, 4564342, 3353544]] -}; - -const vvChartData = { - labels: [1, 2, 3, 4, 5, 6, 7], - series: [[112332, 123221, 432534, 342334, 133432, 1064342, 953544]] -}; - -const uvChartData = { - labels: [1, 2, 3, 4, 5, 6, 7], - series: [[112332, 123221, 432344, 342334, 133432, 564342, 353544]] -}; - -const barChartData = { - labels: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'], - series: [ - [92332, 93221, 132344, 142334, 83432, 264342, 153544], - [112332, 123221, 432344, 342334, 133432, 564342, 353544] - ] -}; - -const pieChartData = { - labels: ['Direct', 'Internal', 'Referrals', 'Search Engines'], - series: [112332, 123221, 432334, 342334] -}; - -type Props = {}; - -class Dashboard extends React.Component { - render() { - return ( - Dashboard}> - - - - -
Page Views
-
281,358
-
- - - - -
Visits
-
251,901
-
- - - - -
Unique Visitors
-
25,135
-
- -
- - - - - - - - - - - - - - - - - - - - - -
- ); - } -} - -export default Dashboard; diff --git a/src/routes/dashboard/index.js b/src/routes/dashboard/index.js deleted file mode 100644 index cb4b86d..0000000 --- a/src/routes/dashboard/index.js +++ /dev/null @@ -1,6 +0,0 @@ -import Dashboard from './Dashboard'; - -export default { - path: 'dashboard', - component: Dashboard -}; diff --git a/src/routes/error/404/Error404.js b/src/routes/error/404/Error404.js deleted file mode 100644 index b5c9a25..0000000 --- a/src/routes/error/404/Error404.js +++ /dev/null @@ -1,4 +0,0 @@ -import * as React from 'react'; -import ErrorPage from '../../../components/ErrorPage'; - -export default () => ; diff --git a/src/routes/error/404/index.js b/src/routes/error/404/index.js deleted file mode 100644 index 73273d5..0000000 --- a/src/routes/error/404/index.js +++ /dev/null @@ -1,6 +0,0 @@ -import Error404 from './Error404'; - -export default { - path: '404', - component: Error404 -}; diff --git a/src/routes/error/500/Error500.js b/src/routes/error/500/Error500.js deleted file mode 100644 index c91fee0..0000000 --- a/src/routes/error/500/Error500.js +++ /dev/null @@ -1,4 +0,0 @@ -import * as React from 'react'; -import ErrorPage from '../../../components/ErrorPage'; - -export default () => ; diff --git a/src/routes/error/500/index.js b/src/routes/error/500/index.js deleted file mode 100644 index c374c85..0000000 --- a/src/routes/error/500/index.js +++ /dev/null @@ -1,6 +0,0 @@ -import Error500 from './Error500'; - -export default { - path: '500', - component: Error500 -}; diff --git a/src/routes/error/index.js b/src/routes/error/index.js deleted file mode 100644 index e8a50e3..0000000 --- a/src/routes/error/index.js +++ /dev/null @@ -1,4 +0,0 @@ -export default { - path: '/error', - childRoutes: [require('./404'), require('./500')] -}; diff --git a/src/routes/index.js b/src/routes/index.js deleted file mode 100644 index b0a2d49..0000000 --- a/src/routes/index.js +++ /dev/null @@ -1,11 +0,0 @@ -export default { - childRoutes: [ - { - path: '/', - indexRoute: { - onEnter: (nextState, replace) => replace('/dashboard') - }, - childRoutes: [require('./main')] - } - ] -}; diff --git a/src/routes/list/index.js b/src/routes/list/index.js deleted file mode 100644 index f4790dd..0000000 --- a/src/routes/list/index.js +++ /dev/null @@ -1,4 +0,0 @@ -export default { - path: '/list', - childRoutes: [require('./members')] -}; diff --git a/src/routes/list/members/DataTable.js b/src/routes/list/members/DataTable.js deleted file mode 100644 index cba0ac6..0000000 --- a/src/routes/list/members/DataTable.js +++ /dev/null @@ -1,118 +0,0 @@ -// @flow - -import * as React from 'react'; -import { Link } from 'react-router'; -import { - Input, - InputGroup, - Breadcrumb, - Table, - Panel, - Icon, - ButtonToolbar, - Button, - IconButton, - Navbar, - DOMHelper, - Notification -} from 'rsuite'; - -import data from './users'; -import DrawerView from './DrawerView'; - -const { Column, HeaderCell, Cell } = Table; -const { getHeight } = DOMHelper; - -type Props = {}; -type State = { - showDrawer: boolean -}; - -class DataList extends React.Component { - constructor() { - super(); - this.state = { - showDrawer: false - }; - } - handleShowDrawer = () => { - this.setState({ - showDrawer: true - }); - }; - handleCloseDrawer = () => { - this.setState({ - showDrawer: false - }); - }; - render() { - return ( -
- Members}> -
- - - - -
- - - - - - -
-
- - { - console.log(data); - }} - > - - Id - - - - - First Name - - - - - Last Name - - - - - City - - - - - Street - - - - - Company Name - - - - - Email - - -
-
- -
- ); - } -} - -export default DataList; diff --git a/src/routes/list/members/DrawerView.js b/src/routes/list/members/DrawerView.js deleted file mode 100644 index cbfd947..0000000 --- a/src/routes/list/members/DrawerView.js +++ /dev/null @@ -1,62 +0,0 @@ -//@flow -import * as React from 'react'; -import { Drawer, Button, Form, FormGroup, ControlLabel, FormControl, HelpBlock } from 'rsuite'; - -type Props = { - show: boolean, - onClose: () => void -}; - -class DrawerView extends React.Component { - render() { - const { show, onClose } = this.props; - return ( - - - Create a new member - - -
- - First Name - - Required - - - Last Name - - Required - - - Email - - Required - - - Password - - - - City - - - - Street - - -
-
- - - - -
- ); - } -} - -export default DrawerView; diff --git a/src/routes/list/members/index.js b/src/routes/list/members/index.js deleted file mode 100644 index 1493206..0000000 --- a/src/routes/list/members/index.js +++ /dev/null @@ -1,6 +0,0 @@ -import DataTable from './DataTable'; - -export default { - path: 'members', - component: DataTable -}; diff --git a/src/routes/main.js b/src/routes/main.js deleted file mode 100644 index 8c29181..0000000 --- a/src/routes/main.js +++ /dev/null @@ -1,8 +0,0 @@ -import Frame from '../components/Frame'; -export default { - onEnter: (nextState, replace) => { - console.log('router main'); - }, - component: Frame, - childRoutes: [require('./list'), require('./dashboard'), require('./error')] -}; diff --git a/src/styles/index.less b/src/styles/index.less index 3695ef2..f057740 100644 --- a/src/styles/index.less +++ b/src/styles/index.less @@ -1,12 +1,10 @@ -@import '~rsuite/styles/less/index'; -@import '~chartist/dist/chartist.css'; - +@import '~rsuite/styles/index.less'; @import '../components/Frame/styles.less'; @import '../components/ErrorPage/styles.less'; -@import '../components/HeaderAvatar/styles.less'; +@import '../components/Header/styles.less'; -@import '../routes/list/members/styles.less'; -@import '../routes/dashboard/styles.less'; +@import '../pages/list/members/styles.less'; +@import '../pages/dashboard/styles.less'; //rewrite base color @base-color: #34c3ff; diff --git a/src/tracker.js b/src/tracker.ts similarity index 100% rename from src/tracker.js rename to src/tracker.ts diff --git a/src/utils/formatValue.js b/src/utils/formatValue.ts similarity index 89% rename from src/utils/formatValue.js rename to src/utils/formatValue.ts index 5cf2b0d..e24c93d 100644 --- a/src/utils/formatValue.js +++ b/src/utils/formatValue.ts @@ -1,7 +1,6 @@ -import React from 'react'; import toThousands from './toThousands'; -export default function formatValue(value) { +export default function formatValue(value: number) { if (value === null || typeof value === 'undefined') { return '--'; } else if (value === 0) { diff --git a/src/utils/highlightValue.js b/src/utils/highlightValue.tsx similarity index 91% rename from src/utils/highlightValue.js rename to src/utils/highlightValue.tsx index 7068936..574c13f 100644 --- a/src/utils/highlightValue.js +++ b/src/utils/highlightValue.tsx @@ -1,7 +1,7 @@ import React from 'react'; import toThousands from './toThousands'; -const Highlight = ({ value, unit }) => ( +const Highlight = ({ value, unit }: { value: string; unit: string }) => ( {value} {unit}{' '} diff --git a/src/utils/index.js b/src/utils/index.js deleted file mode 100644 index 1211789..0000000 --- a/src/utils/index.js +++ /dev/null @@ -1,3 +0,0 @@ -export toThousands from './toThousands'; -export highlightValue from './highlightValue'; -export formatValue from './formatValue'; diff --git a/src/utils/index.ts b/src/utils/index.ts new file mode 100644 index 0000000..ed0cfbf --- /dev/null +++ b/src/utils/index.ts @@ -0,0 +1,3 @@ +export { default as toThousands } from './toThousands'; +export { default as highlightValue } from './highlightValue'; +export { default as formatValue } from './formatValue'; diff --git a/src/utils/toThousands.js b/src/utils/toThousands.ts similarity index 57% rename from src/utils/toThousands.js rename to src/utils/toThousands.ts index d3364dd..59d27fb 100644 --- a/src/utils/toThousands.js +++ b/src/utils/toThousands.ts @@ -1,3 +1,3 @@ -export default function toThousands(value, fixed = 0) { +export default function toThousands(value: number, fixed = 0) { return (value.toFixed(fixed) + '').replace(/\d{1,3}(?=(\d{3})+(\.\d*)?$)/g, '$&,'); } diff --git a/tsconfig.json b/tsconfig.json new file mode 100755 index 0000000..b5eb3c3 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,24 @@ +{ + "compilerOptions": { + "strict": true, + "declaration": true, + "allowJs": true, + "allowSyntheticDefaultImports": true, + "esModuleInterop": true, + "noImplicitAny": false, + "noUnusedParameters": true, + "noUnusedLocals": true, + "sourceMap": true, + "moduleResolution": "node", + "target": "esnext", + "module": "esnext", + "jsx": "react", + "skipLibCheck": true, + "baseUrl": ".", + "paths": { + "@/*": ["./src/*"] + } + }, + "exclude": ["node_modules"], + "include": ["./src/**/*.ts", "./src/**/*.tsx"] +} diff --git a/webpack.config.js b/webpack.config.js old mode 100644 new mode 100755 index 068b889..20f851c --- a/webpack.config.js +++ b/webpack.config.js @@ -1,64 +1,38 @@ +/* eslint-disable @typescript-eslint/no-var-requires */ const path = require('path'); -const webpack = require('webpack'); -const ExtractTextPlugin = require('extract-text-webpack-plugin'); -const HtmlwebpackPlugin = require('html-webpack-plugin'); -const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin; -const { NODE_ENV, STYLE_DEBUG, ENV_LOCALE } = process.env; -const __PRO__ = NODE_ENV === 'production'; -const extractLess = new ExtractTextPlugin('style.[hash].css'); -const rsuiteStylePath = path.resolve(__dirname, './node_modules/rsuite/styles'); +const MiniCssExtractPlugin = require('mini-css-extract-plugin'); +const HtmlwebpackPlugin = require('html-webpack-plugin'); module.exports = { + entry: './src/index.tsx', + devtool: 'source-map', + resolve: { + // Add '.ts' and '.tsx' as resolvable extensions. + extensions: ['.ts', '.tsx', '.js', '.json'] + }, devServer: { - contentBase: path.join(__dirname, 'public'), + hot: true, disableHostCheck: true, historyApiFallback: true, - compress: true, - host: '0.0.0.0', - port: 3000 - }, - entry: { - polyfills: './src/polyfills.js', - app: './src/index.js' - }, - output: { - filename: '[name].bundle.js?[hash]', - path: path.resolve(__dirname, 'dist'), + contentBase: path.resolve(__dirname, ''), publicPath: '/' }, - optimization: { - splitChunks: { - cacheGroups: { - commons: { - name: 'commons', - chunks: 'initial', - minChunks: 2 - } - } - } + output: { + path: path.resolve(__dirname, 'assets'), + filename: 'bundle.js', + publicPath: './' }, + module: { rules: [ { - test: /\.js$/, - use: [ - //'transform-loader?brfs', // Use browserify transforms as webpack-loader. - 'babel-loader?babelrc' - ], + test: /\.tsx?$/, + use: ['babel-loader'], exclude: /node_modules/ }, - { - test: /\.(less|css)$/, - loader: extractLess.extract({ - use: ['css-loader', 'less-loader'], - // use style-loader in development - fallback: 'style-loader?{attrs:{prop: "value"}}' - }) - }, { test: /\.(jpg|png|svg)$/, - //`publicPath` only use to assign assets path in build use: [ { loader: 'url-loader', @@ -70,18 +44,19 @@ module.exports = { ] }, { - test: /\.(woff|woff2|eot|ttf|svg)($|\?)/, - include: [rsuiteStylePath], + test: /\.(less|css)$/, use: [ + MiniCssExtractPlugin.loader, { - loader: 'url-loader', + loader: 'css-loader' + }, + { + loader: 'less-loader', options: { - limit: 1, - size: 16, - hash: 'sha512', - digest: 'hex', - name: 'resources/[hash].[ext]', - publicPath: '/' + sourceMap: true, + lessOptions: { + javascriptEnabled: true + } } } ] @@ -89,15 +64,17 @@ module.exports = { ] }, plugins: [ - extractLess, - new webpack.ContextReplacementPlugin(/moment[\/\\]locale$/, /zh-cn|en-gb/), - new webpack.NamedModulesPlugin(), new HtmlwebpackPlugin({ - title: 'RSUITE | A suite of React components', - chunks: ['polyfills', 'commons', 'app'], - template: 'src/index.html', - inject: true + title: 'Admin Dashboard Template', + filename: 'index.html', + template: './src/index.html', + inject: true, + hash: true, + path: './' + }), + new MiniCssExtractPlugin({ + filename: '[name].css', + chunkFilename: '[id].css' }) - // new BundleAnalyzerPlugin({ openAnalyzer: false }) ] };