UNPKG

@studyportals/sp-r2d2

Version:

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

6 lines (5 loc) 324 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 BaseRequestHandlerFactory implements IRequestHandlerFactory { create(): IRequestHandler; }