├── .editorconfig ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── __tests__ ├── useDefaultTimeout.spec.ts └── useTimeout.spec.ts ├── package.json ├── rollup.config.js ├── src ├── TimeoutHandler.ts ├── defaultTimeoutHandler.ts ├── index.ts ├── useTimeout.ts └── useTimeoutDefault.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkomyno/usetimeout-react-hook/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkomyno/usetimeout-react-hook/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkomyno/usetimeout-react-hook/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkomyno/usetimeout-react-hook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkomyno/usetimeout-react-hook/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/useDefaultTimeout.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkomyno/usetimeout-react-hook/HEAD/__tests__/useDefaultTimeout.spec.ts -------------------------------------------------------------------------------- /__tests__/useTimeout.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkomyno/usetimeout-react-hook/HEAD/__tests__/useTimeout.spec.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkomyno/usetimeout-react-hook/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkomyno/usetimeout-react-hook/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/TimeoutHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkomyno/usetimeout-react-hook/HEAD/src/TimeoutHandler.ts -------------------------------------------------------------------------------- /src/defaultTimeoutHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkomyno/usetimeout-react-hook/HEAD/src/defaultTimeoutHandler.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkomyno/usetimeout-react-hook/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/useTimeout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkomyno/usetimeout-react-hook/HEAD/src/useTimeout.ts -------------------------------------------------------------------------------- /src/useTimeoutDefault.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkomyno/usetimeout-react-hook/HEAD/src/useTimeoutDefault.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkomyno/usetimeout-react-hook/HEAD/tsconfig.json --------------------------------------------------------------------------------