index.d.ts 448 B

1234567891011121314
  1. import { CamelCaseOptions } from './utilities';
  2. type StyleObject = Record<string, string>;
  3. interface StyleToJSOptions extends CamelCaseOptions {
  4. }
  5. /**
  6. * Parses CSS inline style to JavaScript object (camelCased).
  7. */
  8. declare function StyleToJS(style: string, options?: StyleToJSOptions): StyleObject;
  9. declare namespace StyleToJS {
  10. var _a: typeof StyleToJS;
  11. export { _a as default };
  12. }
  13. export = StyleToJS;
  14. //# sourceMappingURL=index.d.ts.map