Strata - v1.4.10
    Preparing search index...

    Interface TransitionManager

    Public interface for the TransitionManager.

    interface TransitionManager {
        cancel: () => void;
        config: TransitionConfig | null;
        isTransitioning: boolean;
        progress: number;
        start: (config: TransitionConfig) => Promise<void>;
    }
    Index

    Properties

    cancel: () => void

    Cancels any currently running transition.

    config: TransitionConfig | null

    The current transition configuration.

    isTransitioning: boolean

    Whether a transition is currently in progress.

    progress: number

    Current progress of the transition (0-1).

    start: (config: TransitionConfig) => Promise<void>

    Starts a transition with the specified configuration.