EITS-web/node_modules/eslint-plugin-svelte/lib/utils/css-utils/utils.d.ts
2025-12-06 09:54:52 -05:00

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;