@studyportals/sp-r2d2
Version:
A framework that contains various components used when developing projects that will be deployed via AWS λ.
7 lines (6 loc) • 427 B
TypeScript
import { IResponseSender } from '../core/response-sending-interfaces/i-response-sender.interface';
import { IBootstrapper } from '../bootstrapping-interfaces/i-bootstrapper.interface';
import { IBootstrapperFactory } from '../bootstrapping-interfaces/i-bootstrapper-factory.interface';
export declare class BaseBootstrapperFactory implements IBootstrapperFactory {
create(responseSender: IResponseSender): IBootstrapper;
}