1 | import { BindingKey } from '@loopback/core';
|
2 | import { Bootstrapper } from './bootstrapper';
|
3 | import { BootOptions } from './types';
|
4 |
|
5 |
|
6 |
|
7 | export declare namespace BootBindings {
|
8 | |
9 |
|
10 |
|
11 | const BOOT_OPTIONS: BindingKey<BootOptions>;
|
12 | |
13 |
|
14 |
|
15 | const PROJECT_ROOT: BindingKey<string>;
|
16 | |
17 |
|
18 |
|
19 | const BOOTSTRAPPER_KEY: BindingKey<Bootstrapper>;
|
20 | |
21 |
|
22 |
|
23 | const BOOTERS = "booters";
|
24 | const BOOTER_PREFIX = "booters";
|
25 | }
|
26 |
|
27 |
|
28 |
|
29 | export declare namespace BootTags {
|
30 | const BOOTER = "booter";
|
31 | |
32 |
|
33 |
|
34 | const BOOTER_TAG = "booter";
|
35 | }
|