From aa130e33e5c667038cb04f36de3c63748622bd2c Mon Sep 17 00:00:00 2001 From: Yanick Champoux Date: Mon, 21 Oct 2019 14:16:47 -0400 Subject: [PATCH] all tests pass as ts --- jest.config.js | 8 + package.json | 8 +- src/{actions.test.js => actions.test.ts} | 0 ...{buildMiddleware.js => buildMiddleware.ts} | 5 +- src/buildMiddleware/index.test-d.ts | 6 + src/{index.js => index.ts} | 64 +- ...{middleware.test.js => middleware.test.ts} | 0 src/{splat.test.js => splat.test.ts} | 0 src/{test.js => test.ts} | 0 tsconfig.json | 63 ++ tsconfig.tsbuildinfo | 944 ++++++++++++++++++ typedoc.json | 8 + 12 files changed, 1075 insertions(+), 31 deletions(-) create mode 100644 jest.config.js rename src/{actions.test.js => actions.test.ts} (100%) rename src/{buildMiddleware.js => buildMiddleware.ts} (92%) create mode 100644 src/buildMiddleware/index.test-d.ts rename src/{index.js => index.ts} (63%) rename src/{middleware.test.js => middleware.test.ts} (100%) rename src/{splat.test.js => splat.test.ts} (100%) rename src/{test.js => test.ts} (100%) create mode 100644 tsconfig.json create mode 100644 tsconfig.tsbuildinfo create mode 100644 typedoc.json diff --git a/jest.config.js b/jest.config.js new file mode 100644 index 0000000..03372a2 --- /dev/null +++ b/jest.config.js @@ -0,0 +1,8 @@ +module.exports = { + "roots": [ + "./src" + ], + "transform": { + "^.+\\.tsx?$": "ts-jest" + }, +} diff --git a/package.json b/package.json index 9541f23..aa78feb 100644 --- a/package.json +++ b/package.json @@ -4,8 +4,14 @@ "main": "index.js", "license": "MIT", "dependencies": { + "@types/jest": "^24.0.19", + "@types/lodash": "^4.14.144", "lodash": "^4.17.15", - "redux": "^4.0.4" + "redux": "^4.0.4", + "ts-jest": "^24.1.0", + "tsd": "^0.9.0", + "typedoc": "^0.15.0", + "typescript": "^3.6.4" }, "devDependencies": { "@babel/core": "^7.6.4", diff --git a/src/actions.test.js b/src/actions.test.ts similarity index 100% rename from src/actions.test.js rename to src/actions.test.ts diff --git a/src/buildMiddleware.js b/src/buildMiddleware.ts similarity index 92% rename from src/buildMiddleware.js rename to src/buildMiddleware.ts index f40988a..bad859d 100644 --- a/src/buildMiddleware.js +++ b/src/buildMiddleware.ts @@ -7,8 +7,9 @@ const MiddlewareFor = (type,mw) => api => next => action => { }; export default function buildMiddleware( - {effects = {}, subduxes = {}}, - {actions}, + effects = {}, + actions = {}, + subduxes = {}, ) { return api => { for (let type in actions) { diff --git a/src/buildMiddleware/index.test-d.ts b/src/buildMiddleware/index.test-d.ts new file mode 100644 index 0000000..36cc0de --- /dev/null +++ b/src/buildMiddleware/index.test-d.ts @@ -0,0 +1,6 @@ +import buildMiddleware from '../buildMiddleware'; +import {expectType} from 'tsd'; + + +expectType( buildMiddleware ); + diff --git a/src/index.js b/src/index.ts similarity index 63% rename from src/index.js rename to src/index.ts index f84a08b..0754b29 100644 --- a/src/index.js +++ b/src/index.ts @@ -1,7 +1,7 @@ import fp from 'lodash/fp'; import u from 'updeep'; -import { createStore, applyMiddleware } from 'redux'; +import { createStore as reduxCreateStore, applyMiddleware } from 'redux'; import buildMiddleware from './buildMiddleware'; @@ -47,18 +47,18 @@ const composeMutations = mutations => (payload=null,action={}) => state => m2(payload,action)( m1(payload,action)(state) )); -function buildMutations({mutations = {}, subduxes = {}}) { +function buildMutations({mutations = {}, subduxes= {}}: any) { // we have to differentiate the subduxes with '*' than those // without, as the root '*' is not the same as any sub-'*' const actions = fp.uniq( Object.keys(mutations).concat( - ...Object.values( subduxes ).map( ({mutations = {}}) => Object.keys(mutations) ) + ...Object.values( subduxes ).map( ({mutations = {}}:any) => Object.keys(mutations) ) ) ); let mergedMutations = {}; let [ globby, nonGlobby ] = fp.partition( - ([_,{mutations={}}]) => mutations['*'], + ([_,{mutations={}}]:any) => mutations['*'], Object.entries(subduxes) ); @@ -71,16 +71,16 @@ function buildMutations({mutations = {}, subduxes = {}}) { ])(globby); const globbyMutation = (payload,action) => u( - fp.mapValues( mut => mut(payload,action) )(globby) + fp.mapValues( (mut:any) => mut(payload,action) )(globby) ); actions.forEach( action => { mergedMutations[action] = [ globbyMutation ] }); - nonGlobby.forEach( ([slice, {mutations={},reducer={}}]) => { + nonGlobby.forEach( ([slice, {mutations={},reducer={}}]:any) => { Object.entries(mutations).forEach(([type,mutation]) => { - const localized = (payload=null,action={}) => u.updateIn( slice, mutation(payload,action) ); + const localized = (payload=null,action={}) => u.updateIn( slice )( (mutation as any)(payload,action) ); mergedMutations[type].push(localized); }) @@ -95,47 +95,55 @@ function buildMutations({mutations = {}, subduxes = {}}) { } function updux(config) { - const dux = {}; + const actions = buildActions(config); - dux.actions = buildActions(config); + const initial = buildInitial(config); - dux.initial = buildInitial(config); + const mutations = buildMutations(config); - dux.mutations = buildMutations(config); - - dux.upreducer = (action={}) => state => { - if (state === null) state = dux.initial; + const upreducer = (action={}) => state => { + if (state === null) state = initial; const a = - dux.mutations[action.type] || - dux.mutations['*'] || + mutations[(action as any).type] || + mutations['*'] || (() => state => state); - return a(action.payload, action)(state); + return a((action as any).payload, action)(state); }; - dux.reducer = (state, action) => { - return dux.upreducer(action)(state); + const reducer = (state, action) => { + return upreducer(action)(state); }; - dux.middleware = buildMiddleware(config,dux); + const middleware = buildMiddleware( + config.effects, + actions, + config.subduxes, + ); - dux.createStore = () => { - const store = createStore( dux.reducer, dux.initial, - applyMiddleware( dux.middleware) + const createStore = () => { + const store = reduxCreateStore( reducer, initial, + applyMiddleware( middleware) ); - for ( let a in dux.actions ) { + for ( let a in actions ) { store.dispatch[a] = (...args) => { - store.dispatch(dux.actions[a](...args)) + store.dispatch(actions[a](...args)) }; } return store; } - - - return dux; + return { + reducer, + upreducer, + middleware, + createStore, + actions, + mutations, + initial, + }; } export default updux; diff --git a/src/middleware.test.js b/src/middleware.test.ts similarity index 100% rename from src/middleware.test.js rename to src/middleware.test.ts diff --git a/src/splat.test.js b/src/splat.test.ts similarity index 100% rename from src/splat.test.js rename to src/splat.test.ts diff --git a/src/test.js b/src/test.ts similarity index 100% rename from src/test.js rename to src/test.ts diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..be4c882 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,63 @@ +{ + "compilerOptions": { + /* Basic Options */ + "incremental": true, /* Enable incremental compilation */ + "target": "ES2019", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */ + "module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */ + "lib": [ "dom", "es2016" ], /* Specify library files to be included in the compilation. */ + // "allowJs": true, /* Allow javascript files to be compiled. */ + // "checkJs": true, /* Report errors in .js files. */ + // "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */ + // "declaration": true, /* Generates corresponding '.d.ts' file. */ + // "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */ + // "sourceMap": true, /* Generates corresponding '.map' file. */ + // "outFile": "./", /* Concatenate and emit output to single file. */ + // "outDir": "./", /* Redirect output structure to the directory. */ + // "rootDir": "./", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */ + // "composite": true, /* Enable project compilation */ + // "tsBuildInfoFile": "./", /* Specify file to store incremental compilation information */ + // "removeComments": true, /* Do not emit comments to output. */ + // "noEmit": true, /* Do not emit outputs. */ + // "importHelpers": true, /* Import emit helpers from 'tslib'. */ + // "downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */ + // "isolatedModules": true, /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */ + + /* Strict Type-Checking Options */ + "strict": true, /* Enable all strict type-checking options. */ + "noImplicitAny": false, /* Raise error on expressions and declarations with an implied 'any' type. */ + // "strictNullChecks": true, /* Enable strict null checks. */ + // "strictFunctionTypes": true, /* Enable strict checking of function types. */ + // "strictBindCallApply": true, /* Enable strict 'bind', 'call', and 'apply' methods on functions. */ + // "strictPropertyInitialization": true, /* Enable strict checking of property initialization in classes. */ + // "noImplicitThis": true, /* Raise error on 'this' expressions with an implied 'any' type. */ + // "alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */ + + /* Additional Checks */ + // "noUnusedLocals": true, /* Report errors on unused locals. */ + // "noUnusedParameters": true, /* Report errors on unused parameters. */ + // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */ + // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */ + + /* Module Resolution Options */ + // "moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */ + // "baseUrl": "./", /* Base directory to resolve non-absolute module names. */ + // "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */ + // "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */ + // "typeRoots": [], /* List of folders to include type definitions from. */ + // "types": [], /* Type declaration files to be included in compilation. */ + // "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */ + "esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */ + // "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */ + // "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */ + + /* Source Map Options */ + // "sourceRoot": "", /* Specify the location where debugger should locate TypeScript files instead of source locations. */ + // "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */ + // "inlineSourceMap": true, /* Emit a single file with source maps instead of having a separate file. */ + // "inlineSources": true, /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */ + + /* Experimental Options */ + // "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */ + // "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */ + } +} diff --git a/tsconfig.tsbuildinfo b/tsconfig.tsbuildinfo new file mode 100644 index 0000000..7ed865b --- /dev/null +++ b/tsconfig.tsbuildinfo @@ -0,0 +1,944 @@ +{ + "program": { + "fileInfos": { + "./node_modules/.pnpm/registry.npmjs.org/typescript/3.6.4/node_modules/typescript/lib/lib.es5.d.ts": { + "version": "ff5688d6b2fcfef06842a395d7ff4d5730d45b724d4c48913118c889829052a1", + "signature": "ff5688d6b2fcfef06842a395d7ff4d5730d45b724d4c48913118c889829052a1" + }, + "./node_modules/.pnpm/registry.npmjs.org/typescript/3.6.4/node_modules/typescript/lib/lib.es2015.d.ts": { + "version": "7994d44005046d1413ea31d046577cdda33b8b2470f30281fd9c8b3c99fe2d96", + "signature": "7994d44005046d1413ea31d046577cdda33b8b2470f30281fd9c8b3c99fe2d96" + }, + "./node_modules/.pnpm/registry.npmjs.org/typescript/3.6.4/node_modules/typescript/lib/lib.es2016.d.ts": { + "version": "5f217838d25704474d9ef93774f04164889169ca31475fe423a9de6758f058d1", + "signature": "5f217838d25704474d9ef93774f04164889169ca31475fe423a9de6758f058d1" + }, + "./node_modules/.pnpm/registry.npmjs.org/typescript/3.6.4/node_modules/typescript/lib/lib.dom.d.ts": { + "version": "2d53f3741e5a4f78a90f623387d71a1cc809bb258f10cdaec034b67cbf71022f", + "signature": "2d53f3741e5a4f78a90f623387d71a1cc809bb258f10cdaec034b67cbf71022f" + }, + "./node_modules/.pnpm/registry.npmjs.org/typescript/3.6.4/node_modules/typescript/lib/lib.es2015.core.d.ts": { + "version": "4ab19088d508f9e62bfc61c157e8a65b2afaefa251ecca315e7d20b5b97b256f", + "signature": "4ab19088d508f9e62bfc61c157e8a65b2afaefa251ecca315e7d20b5b97b256f" + }, + "./node_modules/.pnpm/registry.npmjs.org/typescript/3.6.4/node_modules/typescript/lib/lib.es2015.collection.d.ts": { + "version": "dd94d8ef48c562389eb58af8df3a3a34d11367f7c818192aa5f16470d469e3f0", + "signature": "dd94d8ef48c562389eb58af8df3a3a34d11367f7c818192aa5f16470d469e3f0" + }, + "./node_modules/.pnpm/registry.npmjs.org/typescript/3.6.4/node_modules/typescript/lib/lib.es2015.generator.d.ts": { + "version": "765e0e9c9d74cf4d031ca8b0bdb269a853e7d81eda6354c8510218d03db12122", + "signature": "765e0e9c9d74cf4d031ca8b0bdb269a853e7d81eda6354c8510218d03db12122" + }, + "./node_modules/.pnpm/registry.npmjs.org/typescript/3.6.4/node_modules/typescript/lib/lib.es2015.iterable.d.ts": { + "version": "285958e7699f1babd76d595830207f18d719662a0c30fac7baca7df7162a9210", + "signature": "285958e7699f1babd76d595830207f18d719662a0c30fac7baca7df7162a9210" + }, + "./node_modules/.pnpm/registry.npmjs.org/typescript/3.6.4/node_modules/typescript/lib/lib.es2015.promise.d.ts": { + "version": "e6b8ff2798f8ebd7a1c7afd8671f2cb67ee1901c422f5964d74b0b34c6574ea2", + "signature": "e6b8ff2798f8ebd7a1c7afd8671f2cb67ee1901c422f5964d74b0b34c6574ea2" + }, + "./node_modules/.pnpm/registry.npmjs.org/typescript/3.6.4/node_modules/typescript/lib/lib.es2015.proxy.d.ts": { + "version": "5e72f949a89717db444e3bd9433468890068bb21a5638d8ab15a1359e05e54fe", + "signature": "5e72f949a89717db444e3bd9433468890068bb21a5638d8ab15a1359e05e54fe" + }, + "./node_modules/.pnpm/registry.npmjs.org/typescript/3.6.4/node_modules/typescript/lib/lib.es2015.reflect.d.ts": { + "version": "f5b242136ae9bfb1cc99a5971cccc44e99947ae6b5ef6fd8aa54b5ade553b976", + "signature": "f5b242136ae9bfb1cc99a5971cccc44e99947ae6b5ef6fd8aa54b5ade553b976" + }, + "./node_modules/.pnpm/registry.npmjs.org/typescript/3.6.4/node_modules/typescript/lib/lib.es2015.symbol.d.ts": { + "version": "9ae2860252d6b5f16e2026d8a2c2069db7b2a3295e98b6031d01337b96437230", + "signature": "9ae2860252d6b5f16e2026d8a2c2069db7b2a3295e98b6031d01337b96437230" + }, + "./node_modules/.pnpm/registry.npmjs.org/typescript/3.6.4/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts": { + "version": "3e0a459888f32b42138d5a39f706ff2d55d500ab1031e0988b5568b0f67c2303", + "signature": "3e0a459888f32b42138d5a39f706ff2d55d500ab1031e0988b5568b0f67c2303" + }, + "./node_modules/.pnpm/registry.npmjs.org/typescript/3.6.4/node_modules/typescript/lib/lib.es2016.array.include.d.ts": { + "version": "3f96f1e570aedbd97bf818c246727151e873125d0512e4ae904330286c721bc0", + "signature": "3f96f1e570aedbd97bf818c246727151e873125d0512e4ae904330286c721bc0" + }, + "./bar.ts": { + "version": "58059ba5c34f0ae7ed00fcd9886ef9945985e80f1a541b5294a476ac3bdbf4fc", + "signature": "57abd15f6d67e6caaf81974e1cedec390e0bb7c85a5e4da2bbf5c88d04dd2c84" + }, + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/common.d.ts": { + "version": "4025cf62742c5bb3d383c8a62342481622c87e3397ea5e7b7baab18b9efd5798", + "signature": "4025cf62742c5bb3d383c8a62342481622c87e3397ea5e7b7baab18b9efd5798" + }, + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/array.d.ts": { + "version": "c21830111d49a5cd7a9f384370db5b41c659d045fe920bcac1cc9f507c88125d", + "signature": "c21830111d49a5cd7a9f384370db5b41c659d045fe920bcac1cc9f507c88125d" + }, + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/collection.d.ts": { + "version": "0c75b204aed9cf6ff1c7b4bed87a3ece0d9d6fc857a6350c0c95ed0c38c814e8", + "signature": "0c75b204aed9cf6ff1c7b4bed87a3ece0d9d6fc857a6350c0c95ed0c38c814e8" + }, + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/date.d.ts": { + "version": "187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42", + "signature": "187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42" + }, + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/function.d.ts": { + "version": "035b95793288bf4457a2b80bfe9b7500a29324ad62adcf9991277198e8833096", + "signature": "035b95793288bf4457a2b80bfe9b7500a29324ad62adcf9991277198e8833096" + }, + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/lang.d.ts": { + "version": "c2d47e5668f89ed8768d306919c42bb88d50d4029d68f58343141360895cfcc0", + "signature": "c2d47e5668f89ed8768d306919c42bb88d50d4029d68f58343141360895cfcc0" + }, + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/math.d.ts": { + "version": "65648639567d214f62c1b21d200c852807e68bdb08311f95ab6f526ef5b98995", + "signature": "65648639567d214f62c1b21d200c852807e68bdb08311f95ab6f526ef5b98995" + }, + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/number.d.ts": { + "version": "00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a", + "signature": "00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a" + }, + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/object.d.ts": { + "version": "c95aec6e01c1b18c75c09d18767352761c00394e4864d4b7dd29386a1728eae9", + "signature": "c95aec6e01c1b18c75c09d18767352761c00394e4864d4b7dd29386a1728eae9" + }, + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/seq.d.ts": { + "version": "3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd", + "signature": "3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd" + }, + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/string.d.ts": { + "version": "e34f3f6159b1e23de9bb5521382795aaa5aaed6f53b4702e70a2ec45bc76ddb5", + "signature": "e34f3f6159b1e23de9bb5521382795aaa5aaed6f53b4702e70a2ec45bc76ddb5" + }, + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/util.d.ts": { + "version": "c84107ce3522799b7a821463b1743ef230669093b2746afd1e817fcbb5885e67", + "signature": "c84107ce3522799b7a821463b1743ef230669093b2746afd1e817fcbb5885e67" + }, + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/index.d.ts": { + "version": "bbf144d4354e2aaa6439f32761f3ee798cc68d1600adab6e2a596f25269f106d", + "signature": "bbf144d4354e2aaa6439f32761f3ee798cc68d1600adab6e2a596f25269f106d" + }, + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/fp.d.ts": { + "version": "7ff5fb5156de1cc3188592cac07295e1e0336517cc0f769b38834a236a6c4c29", + "signature": "7ff5fb5156de1cc3188592cac07295e1e0336517cc0f769b38834a236a6c4c29" + }, + "./src/buildMiddleware.ts": { + "version": "92eeb881754c0fa6cbf2b4f09d304f1103f4840e1160f10801fcbb43d8a0c088", + "signature": "48ea0a75b0022ee316d17ca88fcf25a602fe707a0b7ccffe23dc180f12e04bad" + }, + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/constant.d.ts": { + "version": "b67fe21cfa86237eae0b85f6a9ce6470031980e00abbb54935c4151d73744934", + "signature": "b67fe21cfa86237eae0b85f6a9ce6470031980e00abbb54935c4151d73744934" + }, + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/freeze.d.ts": { + "version": "a35ec2aa86dcf7f2f13d2d8598fdabeeefe21b0849c6f35e61e549f0d1b61846", + "signature": "a35ec2aa86dcf7f2f13d2d8598fdabeeefe21b0849c6f35e61e549f0d1b61846" + }, + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/types.d.ts": { + "version": "b3c83039bb1b9dca60b9313fa148aa3fbe25cc8201f8421e404aabcdb5219ef0", + "signature": "b3c83039bb1b9dca60b9313fa148aa3fbe25cc8201f8421e404aabcdb5219ef0" + }, + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/is.d.ts": { + "version": "78aeea12029438e37496fa152c697c9dddedc1ea71dc6e854e26bfbefe234389", + "signature": "78aeea12029438e37496fa152c697c9dddedc1ea71dc6e854e26bfbefe234389" + }, + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/if.d.ts": { + "version": "862ad6c491d627cd29a7f83ecca645adf0590c4bfb97da6b9174f712fcc0d465", + "signature": "862ad6c491d627cd29a7f83ecca645adf0590c4bfb97da6b9174f712fcc0d465" + }, + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/ifElse.d.ts": { + "version": "e8f96474f232331e076fbd942f4b39af2bf92d5c0ffa75781d2d4faabbc23cca", + "signature": "e8f96474f232331e076fbd942f4b39af2bf92d5c0ffa75781d2d4faabbc23cca" + }, + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/map.d.ts": { + "version": "01c90304bfdd9a8735bb4a35d8cadad717ea802714184e48fe55082e5eaab3f6", + "signature": "01c90304bfdd9a8735bb4a35d8cadad717ea802714184e48fe55082e5eaab3f6" + }, + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/omit.d.ts": { + "version": "4347a387c0afd9fd3cf6a48b31cccace801bc15b335dd789e96e48a429d91028", + "signature": "4347a387c0afd9fd3cf6a48b31cccace801bc15b335dd789e96e48a429d91028" + }, + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/omitBy.d.ts": { + "version": "5676d7c944a60ab4c2a4209f752c4ee09bda358fe62d0f14780e18832ea846e2", + "signature": "5676d7c944a60ab4c2a4209f752c4ee09bda358fe62d0f14780e18832ea846e2" + }, + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/reject.d.ts": { + "version": "289be9e50e820fd76cf8e01193ef0dc34bf1d85b4899f04b25dcd378b4e8f96a", + "signature": "289be9e50e820fd76cf8e01193ef0dc34bf1d85b4899f04b25dcd378b4e8f96a" + }, + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/update.d.ts": { + "version": "40080dd049c6170f20bbec74c3f826310dede250db7a70e22bc41beaa2c21a85", + "signature": "40080dd049c6170f20bbec74c3f826310dede250db7a70e22bc41beaa2c21a85" + }, + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/updateIn.d.ts": { + "version": "2645684fe20884ad26078ad3a952a4fb71ec34ca723fc4cc9c3fd52e770120ed", + "signature": "2645684fe20884ad26078ad3a952a4fb71ec34ca723fc4cc9c3fd52e770120ed" + }, + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/withDefault.d.ts": { + "version": "6ec64dffba26b68dfb07b0230521fbe01541c1d574eb3a55e23a6637a10f3215", + "signature": "6ec64dffba26b68dfb07b0230521fbe01541c1d574eb3a55e23a6637a10f3215" + }, + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/util/curry.d.ts": { + "version": "7d54b2401b21593e2fb63f3286fd550808c868230f6eb725b69a6039c6430898", + "signature": "7d54b2401b21593e2fb63f3286fd550808c868230f6eb725b69a6039c6430898" + }, + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/index.d.ts": { + "version": "80c43102e28ed156012e7471ab91bb65bcbea6f28e87ca3e90d1ba061db7779e", + "signature": "80c43102e28ed156012e7471ab91bb65bcbea6f28e87ca3e90d1ba061db7779e" + }, + "./node_modules/.pnpm/registry.npmjs.org/symbol-observable/1.2.0/node_modules/symbol-observable/index.d.ts": { + "version": "7ccece60f62968f5765383f1f5322ace6937e42c3a2068834ac214fe24f9b7bc", + "signature": "7ccece60f62968f5765383f1f5322ace6937e42c3a2068834ac214fe24f9b7bc" + }, + "./node_modules/.pnpm/registry.npmjs.org/redux/4.0.4/node_modules/redux/index.d.ts": { + "version": "7d194050bddceaddf8956706259fd6076cff3b5505ae83857f33fb03db6eda76", + "signature": "7d194050bddceaddf8956706259fd6076cff3b5505ae83857f33fb03db6eda76" + }, + "./src/index.ts": { + "version": "2b2e39e83e7621f5a84253d7c1c49a20f42085cf73b1c1a9b826a0b6e3ef9d8e", + "signature": "f71986b7878b8d0f4a13c0bd2c60785ceae6a93fca5d705c15c822e6e41b5ec9" + }, + "./node_modules/.pnpm/registry.npmjs.org/tsd/0.9.0/node_modules/tsd/dist/lib/assert.d.ts": { + "version": "fbd0243a70e5749fcea34aeeec9970320a1be0fc47d747fa3ca9606c8de7f6c1", + "signature": "fbd0243a70e5749fcea34aeeec9970320a1be0fc47d747fa3ca9606c8de7f6c1" + }, + "./node_modules/.pnpm/registry.npmjs.org/tsd/0.9.0/node_modules/tsd/dist/index.d.ts": { + "version": "2d0ce6f84d47ffa400d816cae0ca40ebb44a13f2f6c307aba26e3a8dff94a787", + "signature": "2d0ce6f84d47ffa400d816cae0ca40ebb44a13f2f6c307aba26e3a8dff94a787" + }, + "./src/buildMiddleware/index.test-d.ts": { + "version": "2974a371cf96dcb2166bc4675a8e38f7ff27a36e0f304f77470d4406f3209efa", + "signature": "8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881" + }, + "./node_modules/.pnpm/registry.npmjs.org/@types/jest-diff/20.0.1/node_modules/@types/jest-diff/index.d.ts": { + "version": "6ecb326999da47034eff85653423767152858fbb7acf0433f7603c9abf1e3f06", + "signature": "6ecb326999da47034eff85653423767152858fbb7acf0433f7603c9abf1e3f06" + }, + "./node_modules/.pnpm/registry.npmjs.org/@types/jest/24.0.19/node_modules/@types/jest/index.d.ts": { + "version": "a1734ec274618c41f183a48b4c3f795efd1c0733a0dfdbc2f21c403a9b5b00ab", + "signature": "a1734ec274618c41f183a48b4c3f795efd1c0733a0dfdbc2f21c403a9b5b00ab" + } + }, + "options": { + "incremental": true, + "target": 6, + "module": 1, + "lib": [ + "lib.dom.d.ts", + "lib.es2016.d.ts" + ], + "strict": true, + "noImplicitAny": false, + "esModuleInterop": true, + "configFilePath": "./tsconfig.json" + }, + "referencedMap": { + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/common.d.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/index.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/array.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/collection.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/date.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/function.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/lang.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/math.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/number.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/object.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/seq.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/string.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/util.d.ts" + ], + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/array.d.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/index.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/common.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/collection.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/date.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/function.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/lang.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/math.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/number.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/object.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/seq.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/string.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/util.d.ts" + ], + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/collection.d.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/index.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/common.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/array.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/date.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/function.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/lang.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/math.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/number.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/object.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/seq.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/string.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/util.d.ts" + ], + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/date.d.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/index.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/common.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/array.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/collection.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/function.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/lang.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/math.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/number.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/object.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/seq.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/string.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/util.d.ts" + ], + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/function.d.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/index.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/common.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/array.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/collection.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/date.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/lang.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/math.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/number.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/object.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/seq.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/string.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/util.d.ts" + ], + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/lang.d.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/index.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/common.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/array.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/collection.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/date.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/function.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/math.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/number.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/object.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/seq.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/string.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/util.d.ts" + ], + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/math.d.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/index.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/common.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/array.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/collection.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/date.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/function.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/lang.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/number.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/object.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/seq.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/string.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/util.d.ts" + ], + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/number.d.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/index.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/common.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/array.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/collection.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/date.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/function.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/lang.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/math.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/object.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/seq.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/string.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/util.d.ts" + ], + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/object.d.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/index.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/common.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/array.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/collection.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/date.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/function.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/lang.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/math.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/number.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/seq.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/string.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/util.d.ts" + ], + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/seq.d.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/index.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/common.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/array.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/collection.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/date.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/function.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/lang.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/math.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/number.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/object.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/string.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/util.d.ts" + ], + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/string.d.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/index.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/common.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/array.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/collection.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/date.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/function.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/lang.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/math.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/number.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/object.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/seq.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/util.d.ts" + ], + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/util.d.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/index.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/common.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/array.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/collection.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/date.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/function.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/lang.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/math.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/number.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/object.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/seq.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/string.d.ts" + ], + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/index.d.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/common.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/array.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/collection.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/date.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/function.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/lang.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/math.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/number.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/object.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/seq.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/string.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/util.d.ts" + ], + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/fp.d.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/index.d.ts" + ], + "./src/buildMiddleware.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/fp.d.ts" + ], + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/is.d.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/types.d.ts" + ], + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/if.d.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/types.d.ts" + ], + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/ifElse.d.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/types.d.ts" + ], + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/map.d.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/types.d.ts" + ], + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/update.d.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/types.d.ts" + ], + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/updateIn.d.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/types.d.ts" + ], + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/withDefault.d.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/types.d.ts" + ], + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/index.d.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/constant.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/freeze.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/is.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/if.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/ifElse.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/map.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/omit.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/omitBy.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/reject.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/update.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/updateIn.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/withDefault.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/util/curry.d.ts" + ], + "./node_modules/.pnpm/registry.npmjs.org/redux/4.0.4/node_modules/redux/index.d.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/symbol-observable/1.2.0/node_modules/symbol-observable/index.d.ts" + ], + "./src/index.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/fp.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/index.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/redux/4.0.4/node_modules/redux/index.d.ts", + "./src/buildMiddleware.ts" + ], + "./node_modules/.pnpm/registry.npmjs.org/tsd/0.9.0/node_modules/tsd/dist/index.d.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/tsd/0.9.0/node_modules/tsd/dist/lib/assert.d.ts" + ], + "./src/buildMiddleware/index.test-d.ts": [ + "./src/buildMiddleware.ts", + "./node_modules/.pnpm/registry.npmjs.org/tsd/0.9.0/node_modules/tsd/dist/index.d.ts" + ], + "./node_modules/.pnpm/registry.npmjs.org/@types/jest/24.0.19/node_modules/@types/jest/index.d.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/@types/jest-diff/20.0.1/node_modules/@types/jest-diff/index.d.ts" + ] + }, + "exportedModulesMap": { + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/common.d.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/index.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/array.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/collection.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/date.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/function.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/lang.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/math.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/number.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/object.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/seq.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/string.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/util.d.ts" + ], + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/array.d.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/index.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/common.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/collection.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/date.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/function.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/lang.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/math.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/number.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/object.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/seq.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/string.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/util.d.ts" + ], + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/collection.d.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/index.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/common.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/array.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/date.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/function.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/lang.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/math.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/number.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/object.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/seq.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/string.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/util.d.ts" + ], + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/date.d.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/index.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/common.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/array.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/collection.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/function.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/lang.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/math.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/number.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/object.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/seq.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/string.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/util.d.ts" + ], + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/function.d.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/index.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/common.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/array.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/collection.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/date.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/lang.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/math.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/number.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/object.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/seq.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/string.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/util.d.ts" + ], + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/lang.d.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/index.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/common.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/array.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/collection.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/date.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/function.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/math.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/number.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/object.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/seq.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/string.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/util.d.ts" + ], + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/math.d.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/index.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/common.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/array.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/collection.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/date.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/function.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/lang.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/number.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/object.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/seq.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/string.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/util.d.ts" + ], + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/number.d.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/index.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/common.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/array.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/collection.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/date.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/function.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/lang.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/math.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/object.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/seq.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/string.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/util.d.ts" + ], + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/object.d.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/index.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/common.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/array.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/collection.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/date.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/function.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/lang.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/math.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/number.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/seq.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/string.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/util.d.ts" + ], + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/seq.d.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/index.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/common.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/array.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/collection.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/date.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/function.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/lang.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/math.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/number.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/object.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/string.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/util.d.ts" + ], + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/string.d.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/index.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/common.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/array.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/collection.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/date.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/function.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/lang.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/math.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/number.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/object.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/seq.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/util.d.ts" + ], + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/util.d.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/index.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/common.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/array.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/collection.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/date.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/function.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/lang.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/math.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/number.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/object.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/seq.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/string.d.ts" + ], + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/index.d.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/common.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/array.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/collection.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/date.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/function.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/lang.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/math.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/number.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/object.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/seq.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/string.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/util.d.ts" + ], + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/fp.d.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/index.d.ts" + ], + "./node_modules/.pnpm/registry.npmjs.org/tsd/0.9.0/node_modules/tsd/dist/index.d.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/tsd/0.9.0/node_modules/tsd/dist/lib/assert.d.ts" + ], + "./node_modules/.pnpm/registry.npmjs.org/@types/jest/24.0.19/node_modules/@types/jest/index.d.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/@types/jest-diff/20.0.1/node_modules/@types/jest-diff/index.d.ts" + ], + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/index.d.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/constant.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/freeze.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/is.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/if.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/ifElse.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/map.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/omit.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/omitBy.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/reject.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/update.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/updateIn.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/withDefault.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/util/curry.d.ts" + ], + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/withDefault.d.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/types.d.ts" + ], + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/updateIn.d.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/types.d.ts" + ], + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/update.d.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/types.d.ts" + ], + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/map.d.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/types.d.ts" + ], + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/ifElse.d.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/types.d.ts" + ], + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/if.d.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/types.d.ts" + ], + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/is.d.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/types.d.ts" + ], + "./node_modules/.pnpm/registry.npmjs.org/redux/4.0.4/node_modules/redux/index.d.ts": [ + "./node_modules/.pnpm/registry.npmjs.org/symbol-observable/1.2.0/node_modules/symbol-observable/index.d.ts" + ] + }, + "semanticDiagnosticsPerFile": [ + "./src/buildMiddleware.ts", + "./src/buildMiddleware/index.test-d.ts", + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/constant.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/freeze.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/types.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/withDefault.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/updateIn.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/update.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/map.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/ifElse.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/if.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/is.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/omit.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/omitBy.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/reject.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/util/curry.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/symbol-observable/1.2.0/node_modules/symbol-observable/index.d.ts", + "./bar.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/common.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/array.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/collection.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/date.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/function.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/lang.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/math.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/number.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/object.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/seq.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/string.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/common/util.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/index.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/lodash/4.14.144/node_modules/@types/lodash/ts3.1/fp.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/redux/4.0.4/node_modules/redux/index.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/tsd/0.9.0/node_modules/tsd/dist/lib/assert.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/tsd/0.9.0/node_modules/tsd/dist/index.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/jest-diff/20.0.1/node_modules/@types/jest-diff/index.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/@types/jest/24.0.19/node_modules/@types/jest/index.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/typescript/3.6.4/node_modules/typescript/lib/lib.es5.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/typescript/3.6.4/node_modules/typescript/lib/lib.es2015.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/typescript/3.6.4/node_modules/typescript/lib/lib.es2016.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/typescript/3.6.4/node_modules/typescript/lib/lib.dom.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/typescript/3.6.4/node_modules/typescript/lib/lib.es2015.core.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/typescript/3.6.4/node_modules/typescript/lib/lib.es2015.collection.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/typescript/3.6.4/node_modules/typescript/lib/lib.es2015.generator.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/typescript/3.6.4/node_modules/typescript/lib/lib.es2015.iterable.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/typescript/3.6.4/node_modules/typescript/lib/lib.es2015.promise.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/typescript/3.6.4/node_modules/typescript/lib/lib.es2015.proxy.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/typescript/3.6.4/node_modules/typescript/lib/lib.es2015.reflect.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/typescript/3.6.4/node_modules/typescript/lib/lib.es2015.symbol.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/typescript/3.6.4/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/typescript/3.6.4/node_modules/typescript/lib/lib.es2016.array.include.d.ts", + "./node_modules/.pnpm/registry.npmjs.org/updeep/1.2.0/node_modules/updeep/types/index.d.ts", + [ + "./src/index.ts", + [ + { + "file": "./src/index.ts", + "start": 1397, + "length": 6, + "code": 2339, + "category": 1, + "messageText": "Property 'values' does not exist on type 'ObjectConstructor'." + }, + { + "file": "./src/index.ts", + "start": 1618, + "length": 7, + "code": 2339, + "category": 1, + "messageText": "Property 'entries' does not exist on type 'ObjectConstructor'." + }, + { + "file": "./src/index.ts", + "start": 1913, + "length": 3, + "messageText": "Object is of type 'unknown'.", + "category": 1, + "code": 2571 + }, + { + "file": "./src/index.ts", + "start": 2126, + "length": 7, + "code": 2339, + "category": 1, + "messageText": "Property 'entries' does not exist on type 'ObjectConstructor'." + }, + { + "file": "./src/index.ts", + "start": 2236, + "length": 43, + "messageText": "No overload expects 2 arguments, but overloads do exist that expect either 1 or 3 arguments.", + "category": 1, + "code": 2575 + }, + { + "file": "./src/index.ts", + "start": 2364, + "length": 7, + "code": 2339, + "category": 1, + "messageText": "Property 'entries' does not exist on type 'ObjectConstructor'." + }, + { + "file": "./src/index.ts", + "start": 2589, + "length": 7, + "code": 2339, + "category": 1, + "messageText": "Property 'actions' does not exist on type '{}'." + }, + { + "file": "./src/index.ts", + "start": 2628, + "length": 7, + "code": 2339, + "category": 1, + "messageText": "Property 'initial' does not exist on type '{}'." + }, + { + "file": "./src/index.ts", + "start": 2667, + "length": 9, + "code": 2339, + "category": 1, + "messageText": "Property 'mutations' does not exist on type '{}'." + }, + { + "file": "./src/index.ts", + "start": 2710, + "length": 9, + "code": 2339, + "category": 1, + "messageText": "Property 'upreducer' does not exist on type '{}'." + }, + { + "file": "./src/index.ts", + "start": 2784, + "length": 7, + "code": 2339, + "category": 1, + "messageText": "Property 'initial' does not exist on type '{}'." + }, + { + "file": "./src/index.ts", + "start": 2818, + "length": 9, + "code": 2339, + "category": 1, + "messageText": "Property 'mutations' does not exist on type '{}'." + }, + { + "file": "./src/index.ts", + "start": 2854, + "length": 9, + "code": 2339, + "category": 1, + "messageText": "Property 'mutations' does not exist on type '{}'." + }, + { + "file": "./src/index.ts", + "start": 2960, + "length": 7, + "code": 2339, + "category": 1, + "messageText": "Property 'reducer' does not exist on type '{}'." + }, + { + "file": "./src/index.ts", + "start": 3006, + "length": 9, + "code": 2339, + "category": 1, + "messageText": "Property 'upreducer' does not exist on type '{}'." + }, + { + "file": "./src/index.ts", + "start": 3044, + "length": 10, + "code": 2339, + "category": 1, + "messageText": "Property 'middleware' does not exist on type '{}'." + }, + { + "file": "./src/index.ts", + "start": 3093, + "length": 11, + "code": 2339, + "category": 1, + "messageText": "Property 'createStore' does not exist on type '{}'." + }, + { + "file": "./src/index.ts", + "start": 3153, + "length": 7, + "code": 2339, + "category": 1, + "messageText": "Property 'reducer' does not exist on type '{}'." + }, + { + "file": "./src/index.ts", + "start": 3166, + "length": 7, + "code": 2339, + "category": 1, + "messageText": "Property 'initial' does not exist on type '{}'." + }, + { + "file": "./src/index.ts", + "start": 3206, + "length": 10, + "code": 2339, + "category": 1, + "messageText": "Property 'middleware' does not exist on type '{}'." + }, + { + "file": "./src/index.ts", + "start": 3254, + "length": 7, + "code": 2339, + "category": 1, + "messageText": "Property 'actions' does not exist on type '{}'." + }, + { + "file": "./src/index.ts", + "start": 3344, + "length": 7, + "code": 2339, + "category": 1, + "messageText": "Property 'actions' does not exist on type '{}'." + } + ] + ] + ] + }, + "version": "3.6.4" +} \ No newline at end of file diff --git a/typedoc.json b/typedoc.json new file mode 100644 index 0000000..1877f66 --- /dev/null +++ b/typedoc.json @@ -0,0 +1,8 @@ +{ + "theme": "minimal", + "tsBuildInfoFile": true, + "out": "docs", + "mode": "file", + "excludePrivate": true, + "excludeNotExported": false +}