├── .gitignore ├── .prettierrc ├── README.md ├── docs └── img │ ├── clock-as-first-arg.png │ ├── clock-in-cfg.png │ └── error.png ├── index.html ├── package.json ├── src ├── action.test-d.ts ├── action.test.ts ├── action.ts ├── async-action.test-d.ts ├── async-action.test.ts ├── async-action.ts ├── index.ts ├── shared.ts ├── types.ts └── vite-env.d.ts ├── tsconfig.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexeyDuybo/effector-action/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexeyDuybo/effector-action/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexeyDuybo/effector-action/HEAD/README.md -------------------------------------------------------------------------------- /docs/img/clock-as-first-arg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexeyDuybo/effector-action/HEAD/docs/img/clock-as-first-arg.png -------------------------------------------------------------------------------- /docs/img/clock-in-cfg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexeyDuybo/effector-action/HEAD/docs/img/clock-in-cfg.png -------------------------------------------------------------------------------- /docs/img/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexeyDuybo/effector-action/HEAD/docs/img/error.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexeyDuybo/effector-action/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexeyDuybo/effector-action/HEAD/package.json -------------------------------------------------------------------------------- /src/action.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexeyDuybo/effector-action/HEAD/src/action.test-d.ts -------------------------------------------------------------------------------- /src/action.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexeyDuybo/effector-action/HEAD/src/action.test.ts -------------------------------------------------------------------------------- /src/action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexeyDuybo/effector-action/HEAD/src/action.ts -------------------------------------------------------------------------------- /src/async-action.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexeyDuybo/effector-action/HEAD/src/async-action.test-d.ts -------------------------------------------------------------------------------- /src/async-action.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexeyDuybo/effector-action/HEAD/src/async-action.test.ts -------------------------------------------------------------------------------- /src/async-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexeyDuybo/effector-action/HEAD/src/async-action.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexeyDuybo/effector-action/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexeyDuybo/effector-action/HEAD/src/shared.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexeyDuybo/effector-action/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexeyDuybo/effector-action/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexeyDuybo/effector-action/HEAD/vite.config.ts --------------------------------------------------------------------------------