index.d.ts 429 B

12345678910111213141516
  1. /**
  2. * parse string to CSSStyleValue
  3. * @see https://drafts.csswg.org/cssom-1/#css-values
  4. *
  5. * eg. 1px, 1%, 1em, 1deg, 1turn, calc(10% + 1px)
  6. */
  7. export * from './color';
  8. export * from './dimension';
  9. export * from './filter';
  10. export * from './numeric';
  11. export * from './path';
  12. export * from './points';
  13. export * from './transform';
  14. export * from './transform-origin';
  15. export * from './types';
  16. //# sourceMappingURL=index.d.ts.map