├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── package.json ├── src └── react-realistic-typer.tsx └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnyasmar/react-realistic-typer/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnyasmar/react-realistic-typer/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnyasmar/react-realistic-typer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnyasmar/react-realistic-typer/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnyasmar/react-realistic-typer/HEAD/package.json -------------------------------------------------------------------------------- /src/react-realistic-typer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnyasmar/react-realistic-typer/HEAD/src/react-realistic-typer.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnyasmar/react-realistic-typer/HEAD/tsconfig.json --------------------------------------------------------------------------------