13 lines
349 B
TypeScript
13 lines
349 B
TypeScript
/**
|
|
* 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;
|