UNPKG

931 BTypeScriptView Raw
1/** Type in registry */
2export declare const TYPE: {
3 Service: string;
4 Config: string;
5 PreDestroy: string;
6};
7export declare const METADATA_KEY: {
8 bean: string;
9 onMissingBean: string;
10 init: string;
11 beforeCreate: string;
12 value: string;
13 register: string;
14 scan: string;
15 config: string;
16 service: string;
17 plugin: string;
18 injectContainer: string;
19 preDestroy: string;
20};
21/**
22 * Inject container key in descriptor
23 */
24export declare const INJECT_CONTAINER_KEY = "$$container";
25export declare const ORDER_CONFIG: {
26 Core: number;
27 Plugin: number;
28 Config: number;
29};
30export declare const ERRORS_MSGS: {
31 DUPLICATED_DECORATOR: string;
32 DUPLICATED_CONFIG_DECORATOR: string;
33 DUPLICATED_PLUGIN_DECORATOR: string;
34};
35export declare const APP_CONFIG: unique symbol;
36export declare const CORE_CONFIG: unique symbol;
37export declare const VALUE_EXTRACTOR: unique symbol;