UNPKG

@studyportals/sp-r2d2

Version:

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

8 lines (7 loc) 440 B
import { IRequestHandler } from '../request-handling-interfaces/i-request-handler.interface'; import { IRequestHandlerFactory } from '../request-handling-interfaces/i-request-handler-factory.interface'; export declare class GeneralRequestHandlerFactory implements IRequestHandlerFactory { private readonly requestHandlerFactoryFn; constructor(requestHandlerFactoryFn: () => IRequestHandler); create(): IRequestHandler; }