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) 277 B
import { IResponseSender } from './i-response-sender.interface'; /** * Offers the necessary functionality to instantiate a new reponse sender. */ export interface IResponseSenderFactory { /** * Creates a new response sender. */ create(): IResponseSender; }