import type { DocumentNode } from 'graphql'; /** * We want SubscriptionsGlobs type to be an object with this shape: * * But not fully supported in TS * { * schema: DocumentNode // <-- required * [string]: CedarSubscription * } */ export type SubscriptionGlobImports = Record; export type CedarSubscription = { schema: DocumentNode; resolvers: any; name: string; }; export declare const makeSubscriptions: (SubscriptionGlobs: SubscriptionGlobImports) => CedarSubscription[]; //# sourceMappingURL=makeSubscriptions.d.ts.map