UNPKG

@studyportals/sp-r2d2

Version:

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

11 lines (10 loc) 283 B
import { IRequestHandler } from './i-request-handler.interface'; /** * Offers the necessary functionality to create a new request handler. */ export interface IRequestHandlerFactory { /** * Creates a new request handler. */ create(): IRequestHandler; }