We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1072a31 commit c0bb780Copy full SHA for c0bb780
src/__tests__/__snapshots__/ExportGenerator.test.ts.snap
@@ -2,19 +2,19 @@
2
3
exports[`ExportGenerator creates exports with constants for every camel-case class 1`] = `
4
"declare const styles: {
5
+ [index: string]: string;
6
\\"camelCase\\": string;
7
\\"camelCase2\\": string;
8
\\"some-class\\": string;
9
\\"const\\": string;
10
};
11
export default styles;
-export const camelCase: string;
12
-export const camelCase2: string;
13
"
14
`;
15
16
exports[`ExportGenerator creates exports without constants if no camel-case class was found 1`] = `
17
18
19
\\"some-class-2\\": string;
20
0 commit comments