CSSPropertyPoints.d.ts 664 B

1234567891011121314151617181920
  1. import type { DisplayObject } from '../../display-objects';
  2. import type { CSSProperty } from '../CSSProperty';
  3. import { parsePoints, mergePoints } from '../parser/points';
  4. export declare class CSSPropertyPoints implements Partial<CSSProperty<{
  5. points: [number, number][];
  6. totalLength: number;
  7. segments: [number, number][];
  8. }, {
  9. points: [number, number][];
  10. totalLength: number;
  11. segments: [number, number][];
  12. }>> {
  13. parser: typeof parsePoints;
  14. /**
  15. * update local position
  16. */
  17. postProcessor(object: DisplayObject, attributes: string[]): void;
  18. mixer: typeof mergePoints;
  19. }
  20. //# sourceMappingURL=CSSPropertyPoints.d.ts.map