import { Handler as LambdaHandler } from 'aws-lambda'; import { ISubscriptionEvent } from './subscriptions'; export interface IEventStore { publish(event: ISubscriptionEvent): Promise; } export interface IEventProcessor { /** * Creates Lambda event handler */ createHandler(server: TServer): THandler; } //# sourceMappingURL=events.d.ts.map