7 lines
142 B
TypeScript
7 lines
142 B
TypeScript
/**
|
|
* Hyphenates a camelcased CSS property name
|
|
*/
|
|
declare function hyphenateStyleName(name: string): string;
|
|
|
|
export = hyphenateStyleName;
|