UNPKG

341 BTypeScriptView Raw
1import Vizzu from './vizzu.js';
2import { AnimControl } from './animcontrol.js';
3/** Promise resolves to the Vizzu object when the animation completed. */
4export interface AnimCompleting extends Promise<Vizzu> {
5 /** Promise resolves to the animation controller object when the animation starts. */
6 activated?: Promise<AnimControl>;
7}