├── .gitignore ├── LICENSE ├── README.md ├── lib ├── index.d.ts ├── index.js └── worker-message.d.ts ├── package.json ├── src ├── index.ts ├── typings.d.ts └── worker-message.ts ├── test └── index.spec.ts ├── tsconfig.json └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nishkalkashyap/text-to-worker/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nishkalkashyap/text-to-worker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nishkalkashyap/text-to-worker/HEAD/README.md -------------------------------------------------------------------------------- /lib/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nishkalkashyap/text-to-worker/HEAD/lib/index.d.ts -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nishkalkashyap/text-to-worker/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/worker-message.d.ts: -------------------------------------------------------------------------------- 1 | declare const ctx: any; 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nishkalkashyap/text-to-worker/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nishkalkashyap/text-to-worker/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nishkalkashyap/text-to-worker/HEAD/src/typings.d.ts -------------------------------------------------------------------------------- /src/worker-message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nishkalkashyap/text-to-worker/HEAD/src/worker-message.ts -------------------------------------------------------------------------------- /test/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nishkalkashyap/text-to-worker/HEAD/test/index.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nishkalkashyap/text-to-worker/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nishkalkashyap/text-to-worker/HEAD/webpack.config.js --------------------------------------------------------------------------------