You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
525 B
18 lines
525 B
/**
|
|
* Determine if a css or javascript attribute is vendor-prefixed
|
|
*/
|
|
export declare const vendorPrefixMappings: {
|
|
chrome: string;
|
|
safari: string;
|
|
firefox: string;
|
|
edge: string;
|
|
ie: string;
|
|
};
|
|
export declare const prefixes: string[];
|
|
/**
|
|
* Determine if a css or js value is prefixed
|
|
* ex. HasPrefix('document.mozOffscreenWidth()') => true
|
|
* ex. HasPrefix('document.offscreenWidth()') => false
|
|
*/
|
|
export default function HasPrefix(property: string): boolean;
|
|
//# sourceMappingURL=has-prefix.d.ts.map
|