Interface AnimationResult

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

Properties

_stop?: (() => void)

Type declaration

    • (): void
    • Returns void

id: string
options: AnimationOptions<any>
promise: Promise<string>
stop: (() => void)

Type declaration

    • (): void
    • Returns void

targetRef?: {
    key: string;
    target: any;
}

Type declaration

  • key: string
  • target: any

Generated using TypeDoc