1 | import { Application, Component } from '@loopback/core';
|
2 | import { ApplicationMetadataBooter, ControllerBooter, DataSourceBooter, InterceptorProviderBooter, LifeCycleObserverBooter, ModelApiBooter, ModelBooter, RepositoryBooter, ServiceBooter } from './booters';
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 | export declare class BootComponent implements Component {
|
9 | booters: (typeof ApplicationMetadataBooter | typeof ControllerBooter | typeof DataSourceBooter | typeof InterceptorProviderBooter | typeof LifeCycleObserverBooter | typeof ModelApiBooter | typeof ModelBooter | typeof RepositoryBooter | typeof ServiceBooter)[];
|
10 | |
11 |
|
12 |
|
13 |
|
14 | constructor(app: Application);
|
15 | }
|