UNPKG

@studyportals/sp-r2d2

Version:

A framework that contains various components used when developing projects that will be deployed via AWS λ.

10 lines (9 loc) 631 B
import { APIGatewayEvent } from 'aws-lambda'; import { IEventTranslator } from '../../../core/event-translation-interfaces/i-event-translator.interface'; import { IEventTranslatorFactory } from '../../../core/event-translation-interfaces/i-event-translator-factory.interface'; import { IApiGatewayEventTranslatorOptions } from './i-api-gateway-event-translator-options'; export declare class ApiGatewayEventTranslatorFactory implements IEventTranslatorFactory<APIGatewayEvent> { private readonly options; constructor(options?: IApiGatewayEventTranslatorOptions); create(): IEventTranslator<APIGatewayEvent>; }