├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── package.json ├── src └── index.js └── types └── index.d.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcernusca/use-key-state/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcernusca/use-key-state/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcernusca/use-key-state/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcernusca/use-key-state/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcernusca/use-key-state/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcernusca/use-key-state/HEAD/src/index.js -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcernusca/use-key-state/HEAD/types/index.d.ts --------------------------------------------------------------------------------