├── .flowconfig ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── index.js ├── index.js.flow ├── logo.svg ├── package.json └── types ├── index.d.ts ├── test.ts └── tsconfig.json /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rauldeheer/use-async-effect/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .git/ 2 | .idea/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rauldeheer/use-async-effect/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rauldeheer/use-async-effect/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rauldeheer/use-async-effect/HEAD/index.js -------------------------------------------------------------------------------- /index.js.flow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rauldeheer/use-async-effect/HEAD/index.js.flow -------------------------------------------------------------------------------- /logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rauldeheer/use-async-effect/HEAD/logo.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rauldeheer/use-async-effect/HEAD/package.json -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rauldeheer/use-async-effect/HEAD/types/index.d.ts -------------------------------------------------------------------------------- /types/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rauldeheer/use-async-effect/HEAD/types/test.ts -------------------------------------------------------------------------------- /types/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rauldeheer/use-async-effect/HEAD/types/tsconfig.json --------------------------------------------------------------------------------