1
1
// Jest Snapshot v1, https://goo.gl/fbAQLP
2
2
3
3
exports [` default options 1` ] = `
4
- "declare namespace ExampleCssModule {
4
+ "declare namespace ExampleCssNamespace {
5
5
export interface IExampleCss {
6
6
\\" bar-baz\\ " : string ;
7
7
composed: string ;
8
8
foo: string ;
9
9
}
10
10
}
11
11
12
- declare const ExampleCssModule: ExampleCssModule .IExampleCss & {
12
+ declare const ExampleCssModule: ExampleCssNamespace .IExampleCss & {
13
13
/** WARNING: Only available when \`css-loader\` is used without \`style-loader\` or \`mini-css-extract-plugin\` */
14
- locals : ExampleCssModule .IExampleCss ;
14
+ locals : ExampleCssNamespace .IExampleCss ;
15
15
} ;
16
16
17
17
export = ExampleCssModule;
18
18
"
19
19
` ;
20
20
21
21
exports [` localsConvention asIs 1` ] = `
22
- "declare namespace ExampleCssModule {
22
+ "declare namespace ExampleCssNamespace {
23
23
export interface IExampleCss {
24
24
\\" bar-baz\\ " : string ;
25
25
composed: string ;
26
26
foo: string ;
27
27
}
28
28
}
29
29
30
- declare const ExampleCssModule: ExampleCssModule .IExampleCss & {
30
+ declare const ExampleCssModule: ExampleCssNamespace .IExampleCss & {
31
31
/** WARNING: Only available when \`css-loader\` is used without \`style-loader\` or \`mini-css-extract-plugin\` */
32
- locals : ExampleCssModule .IExampleCss ;
32
+ locals : ExampleCssNamespace .IExampleCss ;
33
33
} ;
34
34
35
35
export = ExampleCssModule;
36
36
"
37
37
` ;
38
38
39
39
exports [` localsConvention camelCase 1` ] = `
40
- "declare namespace ExampleCssModule {
40
+ "declare namespace ExampleCssNamespace {
41
41
export interface IExampleCss {
42
42
\\" bar-baz\\ " : string ;
43
43
barBaz: string ;
@@ -46,9 +46,9 @@ exports[`localsConvention camelCase 1`] = `
46
46
}
47
47
}
48
48
49
- declare const ExampleCssModule: ExampleCssModule .IExampleCss & {
49
+ declare const ExampleCssModule: ExampleCssNamespace .IExampleCss & {
50
50
/** WARNING: Only available when \`css-loader\` is used without \`style-loader\` or \`mini-css-extract-plugin\` */
51
- locals : ExampleCssModule .IExampleCss ;
51
+ locals : ExampleCssNamespace .IExampleCss ;
52
52
} ;
53
53
54
54
export = ExampleCssModule;
@@ -57,70 +57,70 @@ export = ExampleCssModule;
57
57
58
58
exports [` with banner 1` ] = `
59
59
"// autogenerated by typings-for-css-modules-loader
60
- declare namespace ExampleCssModule {
60
+ declare namespace ExampleCssNamespace {
61
61
export interface IExampleCss {
62
62
\\" bar-baz\\ " : string ;
63
63
composed: string ;
64
64
foo: string ;
65
65
}
66
66
}
67
67
68
- declare const ExampleCssModule: ExampleCssModule .IExampleCss & {
68
+ declare const ExampleCssModule: ExampleCssNamespace .IExampleCss & {
69
69
/** WARNING: Only available when \`css-loader\` is used without \`style-loader\` or \`mini-css-extract-plugin\` */
70
- locals : ExampleCssModule .IExampleCss ;
70
+ locals : ExampleCssNamespace .IExampleCss ;
71
71
} ;
72
72
73
73
export = ExampleCssModule;
74
74
"
75
75
` ;
76
76
77
77
exports [` with no formatter 1` ] = `
78
- "declare namespace ExampleCssModule {
78
+ "declare namespace ExampleCssNamespace {
79
79
export interface IExampleCss {
80
80
' bar-baz' : string ;
81
81
' composed' : string ;
82
82
' foo' : string ;
83
83
}
84
84
}
85
85
86
- declare const ExampleCssModule: ExampleCssModule .IExampleCss & {
86
+ declare const ExampleCssModule: ExampleCssNamespace .IExampleCss & {
87
87
/** WARNING: Only available when \`css-loader\` is used without \`style-loader\` or \`mini-css-extract-plugin\` */
88
- locals : ExampleCssModule .IExampleCss ;
88
+ locals : ExampleCssNamespace .IExampleCss ;
89
89
} ;
90
90
91
91
export = ExampleCssModule;"
92
92
` ;
93
93
94
94
exports [` with prettier 1` ] = `
95
- "declare namespace ExampleCssModule {
95
+ "declare namespace ExampleCssNamespace {
96
96
export interface IExampleCss {
97
97
\\" bar-baz\\ " : string ;
98
98
composed: string ;
99
99
foo: string ;
100
100
}
101
101
}
102
102
103
- declare const ExampleCssModule: ExampleCssModule .IExampleCss & {
103
+ declare const ExampleCssModule: ExampleCssNamespace .IExampleCss & {
104
104
/** WARNING: Only available when \`css-loader\` is used without \`style-loader\` or \`mini-css-extract-plugin\` */
105
- locals : ExampleCssModule .IExampleCss ;
105
+ locals : ExampleCssNamespace .IExampleCss ;
106
106
} ;
107
107
108
108
export = ExampleCssModule;
109
109
"
110
110
` ;
111
111
112
112
exports [` with sourcemap 1` ] = `
113
- "declare namespace ExampleCssModule {
113
+ "declare namespace ExampleCssNamespace {
114
114
export interface IExampleCss {
115
115
\\" bar-baz\\ " : string ;
116
116
composed: string ;
117
117
foo: string ;
118
118
}
119
119
}
120
120
121
- declare const ExampleCssModule: ExampleCssModule .IExampleCss & {
121
+ declare const ExampleCssModule: ExampleCssNamespace .IExampleCss & {
122
122
/** WARNING: Only available when \`css-loader\` is used without \`style-loader\` or \`mini-css-extract-plugin\` */
123
- locals : ExampleCssModule .IExampleCss ;
123
+ locals : ExampleCssNamespace .IExampleCss ;
124
124
} ;
125
125
126
126
export = ExampleCssModule;
0 commit comments