├── .commitlintrc.json ├── .editorconfig ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .prettierrc ├── .releaserc ├── .vscode └── settings.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs ├── api-reference.mdx ├── faq.mdx ├── getting-started.mdx ├── introduction.mdx └── media │ └── counter-example.jpg ├── doczrc.js ├── dts-jest.config.js ├── examples └── tasks │ ├── .gitignore │ ├── .sassrc │ ├── .vscode │ └── settings.json │ ├── jest.config.js │ ├── package.json │ ├── src │ ├── app │ │ ├── app.tsx │ │ ├── components │ │ │ ├── __tests__ │ │ │ │ └── snackbar.spec.tsx │ │ │ ├── category-indicator.tsx │ │ │ ├── category-item.tsx │ │ │ ├── category-list.tsx │ │ │ ├── icon.tsx │ │ │ ├── index.ts │ │ │ └── snackbar.tsx │ │ ├── containers │ │ │ ├── index.ts │ │ │ └── snackbar-container.tsx │ │ └── index.ts │ ├── index.html │ ├── index.tsx │ ├── scss │ │ ├── base │ │ │ ├── _color.scss │ │ │ ├── _global.scss │ │ │ ├── _module.scss │ │ │ └── _typography.scss │ │ ├── components │ │ │ ├── _app.scss │ │ │ ├── _category-indicator.scss │ │ │ ├── _category-item.scss │ │ │ ├── _category-list.scss │ │ │ ├── _module.scss │ │ │ └── _snackbar.scss │ │ ├── main.scss │ │ └── utils │ │ │ ├── _functions.scss │ │ │ └── _module.scss │ ├── store │ │ ├── __tests__ │ │ │ ├── __snapshots__ │ │ │ │ ├── snackbar.spec.ts.snap │ │ │ │ └── tasks.spec.ts.snap │ │ │ ├── snackbar.spec.ts │ │ │ └── tasks.spec.ts │ │ ├── configure-store.ts │ │ ├── index.ts │ │ ├── root.ts │ │ ├── selectors.ts │ │ ├── snackbar.ts │ │ └── tasks.ts │ ├── types.d.ts │ └── utils │ │ └── index.ts │ ├── tsconfig.json │ ├── tslint.json │ └── yarn.lock ├── jest.config.js ├── jest.tsc.config.js ├── netlify.toml ├── package.json ├── rollup.config.js ├── src ├── __tests__ │ ├── __snapshots__ │ │ ├── create-action-creator.dts.spec.ts.snap │ │ ├── create-action-creator.spec.ts.snap │ │ ├── create-action.dts.spec.ts.snap │ │ ├── create-action.spec.ts.snap │ │ ├── create-handler-map.dts.spec.ts.snap │ │ ├── create-handler-map.spec.ts.snap │ │ ├── create-reducer.dts.spec.ts.snap │ │ ├── get-type.dts.spec.ts.snap │ │ ├── index.spec.ts.snap │ │ ├── is-of-type.dts.spec.ts.snap │ │ ├── of-type.dts.spec.ts.snap │ │ └── types.dts.spec.ts.snap │ ├── create-action-creator.dts.spec.ts │ ├── create-action-creator.spec.ts │ ├── create-action.dts.spec.ts │ ├── create-action.spec.ts │ ├── create-handler-map.dts.spec.ts │ ├── create-handler-map.spec.ts │ ├── create-reducer.dts.spec.ts │ ├── create-reducer.spec.ts │ ├── get-type.dts.spec.ts │ ├── get-type.spec.ts │ ├── index.spec.ts │ ├── is-of-type.dts.spec.ts │ ├── is-of-type.spec.ts │ ├── of-type.dts.spec.ts │ ├── of-type.spec.ts │ └── types.dts.spec.ts ├── create-action-creator.ts ├── create-action.ts ├── create-handler-map.ts ├── create-reducer.ts ├── get-type.ts ├── index.ts ├── is-of-type.ts ├── of-type.ts ├── types.ts └── utils │ ├── data.ts │ └── index.ts ├── tsconfig.build.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json /.commitlintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["@commitlint/config-conventional"] 3 | } 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/.prettierrc -------------------------------------------------------------------------------- /.releaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/.releaserc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/README.md -------------------------------------------------------------------------------- /docs/api-reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/docs/api-reference.mdx -------------------------------------------------------------------------------- /docs/faq.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/docs/faq.mdx -------------------------------------------------------------------------------- /docs/getting-started.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/docs/getting-started.mdx -------------------------------------------------------------------------------- /docs/introduction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/docs/introduction.mdx -------------------------------------------------------------------------------- /docs/media/counter-example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/docs/media/counter-example.jpg -------------------------------------------------------------------------------- /doczrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/doczrc.js -------------------------------------------------------------------------------- /dts-jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/dts-jest.config.js -------------------------------------------------------------------------------- /examples/tasks/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/examples/tasks/.gitignore -------------------------------------------------------------------------------- /examples/tasks/.sassrc: -------------------------------------------------------------------------------- 1 | { 2 | "includePaths": ["node_modules"] 3 | } 4 | -------------------------------------------------------------------------------- /examples/tasks/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/examples/tasks/.vscode/settings.json -------------------------------------------------------------------------------- /examples/tasks/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/examples/tasks/jest.config.js -------------------------------------------------------------------------------- /examples/tasks/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/examples/tasks/package.json -------------------------------------------------------------------------------- /examples/tasks/src/app/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/examples/tasks/src/app/app.tsx -------------------------------------------------------------------------------- /examples/tasks/src/app/components/__tests__/snackbar.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/examples/tasks/src/app/components/__tests__/snackbar.spec.tsx -------------------------------------------------------------------------------- /examples/tasks/src/app/components/category-indicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/examples/tasks/src/app/components/category-indicator.tsx -------------------------------------------------------------------------------- /examples/tasks/src/app/components/category-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/examples/tasks/src/app/components/category-item.tsx -------------------------------------------------------------------------------- /examples/tasks/src/app/components/category-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/examples/tasks/src/app/components/category-list.tsx -------------------------------------------------------------------------------- /examples/tasks/src/app/components/icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/examples/tasks/src/app/components/icon.tsx -------------------------------------------------------------------------------- /examples/tasks/src/app/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/examples/tasks/src/app/components/index.ts -------------------------------------------------------------------------------- /examples/tasks/src/app/components/snackbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/examples/tasks/src/app/components/snackbar.tsx -------------------------------------------------------------------------------- /examples/tasks/src/app/containers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/examples/tasks/src/app/containers/index.ts -------------------------------------------------------------------------------- /examples/tasks/src/app/containers/snackbar-container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/examples/tasks/src/app/containers/snackbar-container.tsx -------------------------------------------------------------------------------- /examples/tasks/src/app/index.ts: -------------------------------------------------------------------------------- 1 | export { App } from './app' 2 | -------------------------------------------------------------------------------- /examples/tasks/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/examples/tasks/src/index.html -------------------------------------------------------------------------------- /examples/tasks/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/examples/tasks/src/index.tsx -------------------------------------------------------------------------------- /examples/tasks/src/scss/base/_color.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/examples/tasks/src/scss/base/_color.scss -------------------------------------------------------------------------------- /examples/tasks/src/scss/base/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/examples/tasks/src/scss/base/_global.scss -------------------------------------------------------------------------------- /examples/tasks/src/scss/base/_module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/examples/tasks/src/scss/base/_module.scss -------------------------------------------------------------------------------- /examples/tasks/src/scss/base/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/examples/tasks/src/scss/base/_typography.scss -------------------------------------------------------------------------------- /examples/tasks/src/scss/components/_app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/examples/tasks/src/scss/components/_app.scss -------------------------------------------------------------------------------- /examples/tasks/src/scss/components/_category-indicator.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/examples/tasks/src/scss/components/_category-indicator.scss -------------------------------------------------------------------------------- /examples/tasks/src/scss/components/_category-item.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/examples/tasks/src/scss/components/_category-item.scss -------------------------------------------------------------------------------- /examples/tasks/src/scss/components/_category-list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/examples/tasks/src/scss/components/_category-list.scss -------------------------------------------------------------------------------- /examples/tasks/src/scss/components/_module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/examples/tasks/src/scss/components/_module.scss -------------------------------------------------------------------------------- /examples/tasks/src/scss/components/_snackbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/examples/tasks/src/scss/components/_snackbar.scss -------------------------------------------------------------------------------- /examples/tasks/src/scss/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/examples/tasks/src/scss/main.scss -------------------------------------------------------------------------------- /examples/tasks/src/scss/utils/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/examples/tasks/src/scss/utils/_functions.scss -------------------------------------------------------------------------------- /examples/tasks/src/scss/utils/_module.scss: -------------------------------------------------------------------------------- 1 | @import './functions'; 2 | -------------------------------------------------------------------------------- /examples/tasks/src/store/__tests__/__snapshots__/snackbar.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/examples/tasks/src/store/__tests__/__snapshots__/snackbar.spec.ts.snap -------------------------------------------------------------------------------- /examples/tasks/src/store/__tests__/__snapshots__/tasks.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/examples/tasks/src/store/__tests__/__snapshots__/tasks.spec.ts.snap -------------------------------------------------------------------------------- /examples/tasks/src/store/__tests__/snackbar.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/examples/tasks/src/store/__tests__/snackbar.spec.ts -------------------------------------------------------------------------------- /examples/tasks/src/store/__tests__/tasks.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/examples/tasks/src/store/__tests__/tasks.spec.ts -------------------------------------------------------------------------------- /examples/tasks/src/store/configure-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/examples/tasks/src/store/configure-store.ts -------------------------------------------------------------------------------- /examples/tasks/src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/examples/tasks/src/store/index.ts -------------------------------------------------------------------------------- /examples/tasks/src/store/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/examples/tasks/src/store/root.ts -------------------------------------------------------------------------------- /examples/tasks/src/store/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/examples/tasks/src/store/selectors.ts -------------------------------------------------------------------------------- /examples/tasks/src/store/snackbar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/examples/tasks/src/store/snackbar.ts -------------------------------------------------------------------------------- /examples/tasks/src/store/tasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/examples/tasks/src/store/tasks.ts -------------------------------------------------------------------------------- /examples/tasks/src/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/examples/tasks/src/types.d.ts -------------------------------------------------------------------------------- /examples/tasks/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/examples/tasks/src/utils/index.ts -------------------------------------------------------------------------------- /examples/tasks/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/examples/tasks/tsconfig.json -------------------------------------------------------------------------------- /examples/tasks/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/examples/tasks/tslint.json -------------------------------------------------------------------------------- /examples/tasks/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/examples/tasks/yarn.lock -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/jest.config.js -------------------------------------------------------------------------------- /jest.tsc.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/jest.tsc.config.js -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/create-action-creator.dts.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/src/__tests__/__snapshots__/create-action-creator.dts.spec.ts.snap -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/create-action-creator.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/src/__tests__/__snapshots__/create-action-creator.spec.ts.snap -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/create-action.dts.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/src/__tests__/__snapshots__/create-action.dts.spec.ts.snap -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/create-action.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/src/__tests__/__snapshots__/create-action.spec.ts.snap -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/create-handler-map.dts.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/src/__tests__/__snapshots__/create-handler-map.dts.spec.ts.snap -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/create-handler-map.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/src/__tests__/__snapshots__/create-handler-map.spec.ts.snap -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/create-reducer.dts.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/src/__tests__/__snapshots__/create-reducer.dts.spec.ts.snap -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/get-type.dts.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/src/__tests__/__snapshots__/get-type.dts.spec.ts.snap -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/index.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/src/__tests__/__snapshots__/index.spec.ts.snap -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/is-of-type.dts.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/src/__tests__/__snapshots__/is-of-type.dts.spec.ts.snap -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/of-type.dts.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/src/__tests__/__snapshots__/of-type.dts.spec.ts.snap -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/types.dts.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/src/__tests__/__snapshots__/types.dts.spec.ts.snap -------------------------------------------------------------------------------- /src/__tests__/create-action-creator.dts.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/src/__tests__/create-action-creator.dts.spec.ts -------------------------------------------------------------------------------- /src/__tests__/create-action-creator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/src/__tests__/create-action-creator.spec.ts -------------------------------------------------------------------------------- /src/__tests__/create-action.dts.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/src/__tests__/create-action.dts.spec.ts -------------------------------------------------------------------------------- /src/__tests__/create-action.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/src/__tests__/create-action.spec.ts -------------------------------------------------------------------------------- /src/__tests__/create-handler-map.dts.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/src/__tests__/create-handler-map.dts.spec.ts -------------------------------------------------------------------------------- /src/__tests__/create-handler-map.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/src/__tests__/create-handler-map.spec.ts -------------------------------------------------------------------------------- /src/__tests__/create-reducer.dts.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/src/__tests__/create-reducer.dts.spec.ts -------------------------------------------------------------------------------- /src/__tests__/create-reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/src/__tests__/create-reducer.spec.ts -------------------------------------------------------------------------------- /src/__tests__/get-type.dts.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/src/__tests__/get-type.dts.spec.ts -------------------------------------------------------------------------------- /src/__tests__/get-type.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/src/__tests__/get-type.spec.ts -------------------------------------------------------------------------------- /src/__tests__/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/src/__tests__/index.spec.ts -------------------------------------------------------------------------------- /src/__tests__/is-of-type.dts.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/src/__tests__/is-of-type.dts.spec.ts -------------------------------------------------------------------------------- /src/__tests__/is-of-type.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/src/__tests__/is-of-type.spec.ts -------------------------------------------------------------------------------- /src/__tests__/of-type.dts.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/src/__tests__/of-type.dts.spec.ts -------------------------------------------------------------------------------- /src/__tests__/of-type.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/src/__tests__/of-type.spec.ts -------------------------------------------------------------------------------- /src/__tests__/types.dts.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/src/__tests__/types.dts.spec.ts -------------------------------------------------------------------------------- /src/create-action-creator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/src/create-action-creator.ts -------------------------------------------------------------------------------- /src/create-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/src/create-action.ts -------------------------------------------------------------------------------- /src/create-handler-map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/src/create-handler-map.ts -------------------------------------------------------------------------------- /src/create-reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/src/create-reducer.ts -------------------------------------------------------------------------------- /src/get-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/src/get-type.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/is-of-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/src/is-of-type.ts -------------------------------------------------------------------------------- /src/of-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/src/of-type.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/src/utils/data.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- 1 | export * from './data' 2 | -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/tsconfig.spec.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-dr-lazy/deox/HEAD/tslint.json --------------------------------------------------------------------------------