|
1 | 1 | export interface AnnotationConfig {
|
2 |
| - components: Components; |
3 |
| - configurations: Configurations; |
| 2 | + components: Components; |
| 3 | + configurations: Configurations; |
4 | 4 | }
|
5 | 5 |
|
6 | 6 | export interface Components {
|
7 |
| - [name: string]: Component; |
| 7 | + [name: string]: Component; |
8 | 8 | }
|
9 | 9 |
|
10 | 10 | export interface Component {
|
11 |
| - isLazyInit: boolean; |
12 |
| - fields: AutoWiredFields; |
| 11 | + isLazyInit: boolean; |
| 12 | + fields: AutoWiredFields; |
13 | 13 | }
|
14 | 14 |
|
15 | 15 | export interface AutoWiredFields {
|
16 |
| - [name: string]: AutoWiredField; |
| 16 | + [name: string]: AutoWiredField; |
17 | 17 | }
|
18 | 18 |
|
19 | 19 | export interface AutoWiredField {
|
20 |
| - type: string; |
| 20 | + type: string; |
21 | 21 | }
|
22 | 22 |
|
23 | 23 | export interface Configurations {
|
24 |
| - [name: string]: Configuration; |
| 24 | + [name: string]: Configuration; |
25 | 25 | }
|
26 | 26 |
|
27 | 27 | export interface Configuration {
|
28 |
| - beanDefinitionMethods: BeanDefinitionMethods; |
| 28 | + beanDefinitionMethods: BeanDefinitionMethods; |
29 | 29 | }
|
30 | 30 |
|
31 | 31 | export interface BeanDefinitionMethods {
|
32 |
| - [name: string]: BeanDefinitionMethod; |
| 32 | + [name: string]: BeanDefinitionMethod; |
33 | 33 | }
|
34 | 34 |
|
35 | 35 | export interface BeanDefinitionMethod {
|
36 |
| - specifiedNames?: string[]; |
37 |
| - type: string; |
38 |
| - parameterTypes: string[]; |
39 |
| - scope?: string; |
40 |
| - isLazyInit?: boolean; |
41 |
| - initMethod?: string; |
42 |
| - destroyMethod?: string; |
| 36 | + specifiedNames?: string[]; |
| 37 | + type: string; |
| 38 | + parameterTypes: string[]; |
| 39 | + scope?: string; |
| 40 | + isLazyInit?: boolean; |
| 41 | + initMethod?: string; |
| 42 | + destroyMethod?: string; |
43 | 43 | }
|
0 commit comments