8 lines
228 B
TypeScript
8 lines
228 B
TypeScript
/**
|
|
* https://github.com/mathiasbynens/CSS.escape
|
|
*
|
|
* @param value - The value to escape for use as a CSS identifier
|
|
* @returns The escaped CSS identifier string
|
|
*/
|
|
export declare function cssEscape(value: string): string;
|