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