()
| 71 | // eslint-disable-next-line @typescript-eslint/ban-ts-comment |
| 72 | // @ts-ignore |
| 73 | public async start(): Promise<void> { |
| 74 | await super.start(); |
| 75 | if (!this.booted) { |
| 76 | process.emitWarning( |
| 77 | 'App started without booting. Did you forget to call ' + |
| 78 | '`await app.boot()`?', |
| 79 | 'LoopBackWarning', |
| 80 | ); |
| 81 | } |
| 82 | } |
| 83 | |
| 84 | /** |
| 85 | * Convenience method to call bootstrapper.boot() by resolving bootstrapper |