index.d.ts 563 B

1234567891011121314151617
  1. /**
  2. * implements CSS_Typed_OM_API
  3. * @see https://developer.mozilla.org/en-US/docs/Web/API/CSS_Typed_OM_API/Guide
  4. * @see https://github.dev/WebKit/WebKit/blob/main/Source/WebCore/css
  5. *
  6. * add CSSProperty API:
  7. * @see https://codereview.chromium.org/2735093005
  8. */
  9. export * from './CSSColorValue';
  10. export * from './CSSGradientValue';
  11. export * from './CSSKeywordValue';
  12. export * from './CSSNumericSumValue';
  13. export * from './CSSNumericValue';
  14. export * from './CSSRGB';
  15. export * from './CSSStyleValue';
  16. export * from './types';
  17. //# sourceMappingURL=index.d.ts.map