eslint-plugin-svelte
Version:
ESLint plugin for Svelte using AST
13 lines (12 loc) • 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;