UNPKG

@studyportals/sp-r2d2

Version:

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

14 lines (13 loc) 328 B
/** * Carries out the necessary functionality to initialize the application. */ export interface IBootstrapper { /** * Carries out the necessary initialization operations. */ bootstrap(): Promise<void>; /** * Carries out the necessary operations */ cleanup(): Promise<void>; }