Created
November 11, 2018 02:38
-
-
Save tomoyat1/59486302362b70e96a54e2d8dd13737c to your computer and use it in GitHub Desktop.
CSS Modules with snake-case class names and their TypeScript .d.ts files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.camelCase { | |
color: red; | |
} | |
.snake-case { | |
color: blue; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export interface IStyles { | |
"camelCase": string; | |
"snake-case": string; | |
} | |
declare const styles: IStyles; | |
export default styles; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment