cssAnimation.d.ts 352 B

12345
  1. import Displayable from '../graphic/Displayable';
  2. import { SVGVNodeAttrs, BrushScope } from './core';
  3. export declare const EASING_MAP: Record<string, string>;
  4. export declare const ANIMATE_STYLE_MAP: Record<string, string>;
  5. export declare function createCSSAnimation(el: Displayable, attrs: SVGVNodeAttrs, scope: BrushScope, onlyShape?: boolean): void;