Theia API Documentation v1.65.0
    Preparing search index...
    interface MoveEntry {
        duration: number;
        ended: boolean;
        index: number;
        parent: SplitPanel;
        referenceWidget?: Widget;
        reject?: (reason: string) => void;
        resolve?: (position: number) => void;
        side?: "bottom" | "left" | "right" | "top";
        started: boolean;
        startPosition?: number;
        startTime?: number;
        targetPosition?: number;
        targetSize?: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    duration: number

    The duration in milliseconds, or 0 for no animation.

    ended: boolean
    index: number
    parent: SplitPanel
    referenceWidget?: Widget

    When this widget is hidden, the animation is canceled.

    reject?: (reason: string) => void
    resolve?: (position: number) => void
    side?: "bottom" | "left" | "right" | "top"

    The side of the side panel that shall be resized.

    started: boolean
    startPosition?: number
    startTime?: number
    targetPosition?: number
    targetSize?: number