Created
January 13, 2019 17:13
-
-
Save BiosBoy/e4ec11fc02b7421daadd70b1deee8ba2 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| interface Window { | |
| __REDUX_DEVTOOLS_EXTENSION_COMPOSE__: any; | |
| __REDUX_DEVTOOLS_EXTENSION__: any; | |
| } | |
| declare const __DEV__: string; | |
| declare const __PROD__: string; | |
| declare const __TEST__: string; | |
| declare module '*.json' { | |
| interface IClassNames { | |
| [className: string]: string | |
| } | |
| const classNames: IClassNames; | |
| export = classNames; | |
| } | |
| declare module '*.css' { | |
| interface IClassNames { | |
| [className: string]: string | |
| } | |
| const classNames: IClassNames; | |
| export = classNames; | |
| } | |
| declare module '*.scss' { | |
| interface IClassNames { | |
| [className: string]: string | |
| } | |
| const classNames: IClassNames; | |
| export = classNames; | |
| } | |
| declare module '*.cssmodule.scss' { | |
| interface IClassNames { | |
| [className: string]: string | |
| } | |
| const classNames: IClassNames; | |
| export = classNames; | |
| } | |
| declare module '*.svg' { | |
| interface IClassNames { | |
| [className: string]: string | |
| } | |
| const classNames: IClassNames; | |
| export = classNames; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment