transform.d.ts 285 B

123456
  1. import { DisplayObject } from '../shapes';
  2. export declare function getTranslate(node: DisplayObject, x: string, y: string): (string | number)[];
  3. /**
  4. * transform that support translate percent value
  5. */
  6. export declare function percentTransform(node: DisplayObject, val: string): void;