diff options
Diffstat (limited to 'entry.ts')
| -rwxr-xr-x | entry.ts | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -5,10 +5,12 @@ export * from "./source/common.ts"; export * from "./source/http.ts"; +export * from "./source/ws.ts"; export { makeExecutableSchema as executeSchema } from "@graphql-tools/schema"; export { gql } from "./source/gql.ts"; export { importQL } from "./source/import.ts"; +export { PubSub } from "graphql-subscriptions"; export type { DocumentNode, @@ -21,3 +23,5 @@ export type { GraphQLTypeResolver, Source } from "graphql"; + +export type { PubSubEngine } from "graphql-subscriptions"; |