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