animate.d.ts 205 B

1234567
  1. declare class Animator {
  2. static animate(node: HTMLElement, targetStyles: object): Promise<void>;
  3. private static process;
  4. }
  5. declare const _default: typeof Animator.animate;
  6. export default _default;