Created
March 26, 2018 14:10
-
-
Save maxmumford/af9a179c60916a2dad9ce60d1f773616 to your computer and use it in GitHub Desktop.
css-vars-ponyfill typescript
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
declare module 'css-vars-ponyfill' { | |
export default function cssVars(css: { | |
variables: any, | |
onSuccess?(cssText: string): void, | |
onError?(message: string, node: any): void, | |
onWarning?(message: string): void, | |
onComplete?(cssText: string, styleNode: any): void, | |
}): void; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment