Skip to content

Commit c4e4aa4

Browse files
Fixed indentation in annotationConfig.ts
1 parent 11f59ce commit c4e4aa4

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed
+17-17
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,43 @@
11
export interface AnnotationConfig {
2-
components: Components;
3-
configurations: Configurations;
2+
components: Components;
3+
configurations: Configurations;
44
}
55

66
export interface Components {
7-
[name: string]: Component;
7+
[name: string]: Component;
88
}
99

1010
export interface Component {
11-
isLazyInit: boolean;
12-
fields: AutoWiredFields;
11+
isLazyInit: boolean;
12+
fields: AutoWiredFields;
1313
}
1414

1515
export interface AutoWiredFields {
16-
[name: string]: AutoWiredField;
16+
[name: string]: AutoWiredField;
1717
}
1818

1919
export interface AutoWiredField {
20-
type: string;
20+
type: string;
2121
}
2222

2323
export interface Configurations {
24-
[name: string]: Configuration;
24+
[name: string]: Configuration;
2525
}
2626

2727
export interface Configuration {
28-
beanDefinitionMethods: BeanDefinitionMethods;
28+
beanDefinitionMethods: BeanDefinitionMethods;
2929
}
3030

3131
export interface BeanDefinitionMethods {
32-
[name: string]: BeanDefinitionMethod;
32+
[name: string]: BeanDefinitionMethod;
3333
}
3434

3535
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;
4343
}

0 commit comments

Comments
 (0)