export interface EngineBootstrap { bootstrap(): Promise; shutdown(): Promise; } export class NoopEngineBootstrap implements EngineBootstrap { async bootstrap(): Promise { return; } async shutdown(): Promise { return; } }