UNPKG

@studyportals/sp-r2d2

Version:

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

12 lines (11 loc) 398 B
import { IResponseSender } from '../core/response-sending-interfaces/i-response-sender.interface'; import { IBootstrapper } from './i-bootstrapper.interface'; /** * Offers the necessary functionality to create a new boostrapper. */ export interface IBootstrapperFactory { /** * Creates a new bootstrapper. */ create(responseSender: IResponseSender): IBootstrapper; }