UNPKG

@the_pixelport/aws-lambda-graphql

Version:

Apollo server for AWS Lambda with WebSocket subscriptions support over API Gateway v1 + v2

7 lines 282 B
import { IEventStore, ISubscriptionEvent } from './types'; export declare class MemoryEventStore implements IEventStore { events: ISubscriptionEvent[]; constructor(); publish: (event: ISubscriptionEvent) => Promise<void>; } //# sourceMappingURL=MemoryEventStore.d.ts.map