Mirror: CSS prefixing helpers in less than 1KB 馃寛
at v1.1.1 223 B view raw
1export = CSSPrefixer; 2export as namespace CSSPrefixer; 3 4declare namespace CSSPrefixer { 5 function prefixProperty(prop: string): 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7; 6 function prefixValue(prop: string, value: string): string; 7}