File size: 349 Bytes
bc20498 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
/**
* Checks whether given property name has vender prefix
*/
export declare function hasVendorPrefix(prop: string): boolean;
/**
* Get the vender prefix from given property name
*/
export declare function getVendorPrefix(prop: string): string;
/**
* Strip the vender prefix
*/
export declare function stripVendorPrefix(prop: string): string;
|