| 1234567891011121314151617181920 |
- import type { DisplayObject } from '../../display-objects';
- import type { CSSProperty } from '../CSSProperty';
- import { parsePoints, mergePoints } from '../parser/points';
- export declare class CSSPropertyPoints implements Partial<CSSProperty<{
- points: [number, number][];
- totalLength: number;
- segments: [number, number][];
- }, {
- points: [number, number][];
- totalLength: number;
- segments: [number, number][];
- }>> {
- parser: typeof parsePoints;
- /**
- * update local position
- */
- postProcessor(object: DisplayObject, attributes: string[]): void;
- mixer: typeof mergePoints;
- }
- //# sourceMappingURL=CSSPropertyPoints.d.ts.map
|