Spaces:
Runtime error
Runtime error
File size: 268 Bytes
4327358 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
export interface EngineBootstrap {
bootstrap(): Promise<void>;
shutdown(): Promise<void>;
}
export class NoopEngineBootstrap implements EngineBootstrap {
async bootstrap(): Promise<void> {
return;
}
async shutdown(): Promise<void> {
return;
}
}
|