interface CoreAnimation {
    animate(anis: AnimateOptions, options?: AnimateOptions): cytoscape.Core;
    animated(): boolean;
    animation(options: AnimationOptions): AnimationManipulation;
    clearQueue(): cytoscape.Core;
    delay(duration: number, complete?: (() => void)): cytoscape.Core;
    delayAnimation(duration: number): AnimationManipulation;
    stop(clearQueue?: boolean, jumpToEnd?: boolean): cytoscape.Core;
}

Hierarchy (view full)

Methods