Skip to content

Instantly share code, notes, and snippets.

@maxmumford
Created March 26, 2018 14:10
Show Gist options
  • Save maxmumford/af9a179c60916a2dad9ce60d1f773616 to your computer and use it in GitHub Desktop.
Save maxmumford/af9a179c60916a2dad9ce60d1f773616 to your computer and use it in GitHub Desktop.
css-vars-ponyfill typescript
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