├── .gitignore ├── LICENSE ├── README.md ├── babel.config.js ├── package.json ├── src ├── lib │ ├── index.d.ts │ └── index.js ├── test │ ├── index.html │ ├── index.js │ └── test.js └── ts │ └── index.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | *.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pengqiangsheng/easy-typer-js/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pengqiangsheng/easy-typer-js/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pengqiangsheng/easy-typer-js/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pengqiangsheng/easy-typer-js/HEAD/package.json -------------------------------------------------------------------------------- /src/lib/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pengqiangsheng/easy-typer-js/HEAD/src/lib/index.d.ts -------------------------------------------------------------------------------- /src/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pengqiangsheng/easy-typer-js/HEAD/src/lib/index.js -------------------------------------------------------------------------------- /src/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pengqiangsheng/easy-typer-js/HEAD/src/test/index.html -------------------------------------------------------------------------------- /src/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pengqiangsheng/easy-typer-js/HEAD/src/test/index.js -------------------------------------------------------------------------------- /src/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pengqiangsheng/easy-typer-js/HEAD/src/test/test.js -------------------------------------------------------------------------------- /src/ts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pengqiangsheng/easy-typer-js/HEAD/src/ts/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pengqiangsheng/easy-typer-js/HEAD/tsconfig.json --------------------------------------------------------------------------------