mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-09 07:11:53 +08:00
14 lines
448 B
TypeScript
14 lines
448 B
TypeScript
import { CamelCaseOptions } from './utilities';
|
|
type StyleObject = Record<string, string>;
|
|
interface StyleToJSOptions extends CamelCaseOptions {
|
|
}
|
|
/**
|
|
* Parses CSS inline style to JavaScript object (camelCased).
|
|
*/
|
|
declare function StyleToJS(style: string, options?: StyleToJSOptions): StyleObject;
|
|
declare namespace StyleToJS {
|
|
var _a: typeof StyleToJS;
|
|
export { _a as default };
|
|
}
|
|
export = StyleToJS;
|
|
//# sourceMappingURL=index.d.ts.map
|