Security update for Core, with self-updated composer
[yaffs-website] / node_modules / uncss / node_modules / postcss / d.ts / vendor.d.ts
1 /**
2  * Contains helpers for working with vendor prefixes.
3  */
4 declare module Vendor {
5     /**
6      * @returns The vendor prefix extracted from the input string.
7      */
8     function prefix(prop: string): string;
9     /**
10      * @returns The input string stripped of its vendor prefix.
11      */
12     function unprefixed(prop: string): string;
13 }
14 export default Vendor;