Interface AnimationResult

interface AnimationResult {
    _stop?: () => void;
    id: string;
    options: AnimationOptions<any>;
    promise: Promise<string>;
    stop: () => void;
    targetRef?: { key: string; target: any };
}

Properties

_stop?: () => void
id: string
options: AnimationOptions<any>
promise: Promise<string>
stop: () => void
targetRef?: { key: string; target: any }