├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .prettierignore ├── README.md ├── jest.config.js ├── lib ├── index.ts ├── typed-pubsub.ts └── types.ts ├── package.json ├── test └── typed-pubsub.test.ts ├── tsconfig.json └── yarn.lock /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contra/typed-graphql-subscriptions/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contra/typed-graphql-subscriptions/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contra/typed-graphql-subscriptions/HEAD/.prettierignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contra/typed-graphql-subscriptions/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contra/typed-graphql-subscriptions/HEAD/jest.config.js -------------------------------------------------------------------------------- /lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contra/typed-graphql-subscriptions/HEAD/lib/index.ts -------------------------------------------------------------------------------- /lib/typed-pubsub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contra/typed-graphql-subscriptions/HEAD/lib/typed-pubsub.ts -------------------------------------------------------------------------------- /lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contra/typed-graphql-subscriptions/HEAD/lib/types.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contra/typed-graphql-subscriptions/HEAD/package.json -------------------------------------------------------------------------------- /test/typed-pubsub.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contra/typed-graphql-subscriptions/HEAD/test/typed-pubsub.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contra/typed-graphql-subscriptions/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contra/typed-graphql-subscriptions/HEAD/yarn.lock --------------------------------------------------------------------------------