mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-09 02:08:16 +08:00
11 lines
262 B
TypeScript
11 lines
262 B
TypeScript
/**
|
|
* 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
|