4c23ad2ab4655defb0e3e1f9acbf04623f4c7b30
[yaffs-website] / 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;