1234567891011121314 |
- import type { DisplayObject } from '../../display-objects';
- import type { CSSUnitValue } from '../cssom';
- import type { CSSProperty } from '../CSSProperty';
- export declare class CSSPropertyOffsetDistance implements Partial<CSSProperty<CSSUnitValue, number>> {
- parser: {
- (...args: any[]): any;
- cache: Map<any, any>;
- };
- parserWithCSSDisabled: any;
- calculator(name: string, oldParsed: CSSUnitValue, computed: CSSUnitValue): number;
- mixer: (left: number, right: number) => [number, number, (i: number) => string];
- postProcessor(object: DisplayObject): void;
- }
- //# sourceMappingURL=CSSPropertyOffsetDistance.d.ts.map
|