CSSPropertyTransformOrigin.d.ts 500 B

1234567891011121314
  1. import type { CSSUnitValue } from '../cssom';
  2. import type { CSSProperty } from '../CSSProperty';
  3. /**
  4. * @see https://developer.mozilla.org/zh-CN/docs/Web/CSS/transform-origin
  5. * @example
  6. * [10px, 10px] [10%, 10%]
  7. */
  8. export declare class CSSPropertyTransformOrigin implements Partial<CSSProperty<[CSSUnitValue, CSSUnitValue], [CSSUnitValue, CSSUnitValue]>> {
  9. parser: {
  10. (...args: any[]): any;
  11. cache: Map<any, any>;
  12. };
  13. }
  14. //# sourceMappingURL=CSSPropertyTransformOrigin.d.ts.map