├── .gitignore ├── README.md ├── package.json ├── src ├── adapter.ts ├── backgroundEndpoint.ts └── index.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/comlink-extension/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/comlink-extension/HEAD/package.json -------------------------------------------------------------------------------- /src/adapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/comlink-extension/HEAD/src/adapter.ts -------------------------------------------------------------------------------- /src/backgroundEndpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/comlink-extension/HEAD/src/backgroundEndpoint.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/comlink-extension/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/comlink-extension/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samdenty/comlink-extension/HEAD/yarn.lock --------------------------------------------------------------------------------