UNPKG

style-to-js

Version:

Parses CSS inline style to JavaScript object (camelCased).

11 lines 262 B
/** * CamelCase options. */ export interface CamelCaseOptions { reactCompat?: boolean; } /** * CamelCases a CSS property. */ export declare const camelCase: (property: string, options?: CamelCaseOptions) => string; //# sourceMappingURL=utilities.d.ts.map