SCION Workbench Client - v1.0.0-beta.35
    Preparing search index...

    Interface ViewSnapshot

    Provides information about a view displayed at a particular moment in time.

    interface ViewSnapshot {
        active: boolean;
        capability: WorkbenchViewCapability;
        focused: boolean;
        params: ReadonlyMap<string, any>;
        partId: `part.${string}`;
    }
    Index

    Properties

    active: boolean

    Indicates whether this view is active.

    Capability of the microfrontend loaded into the view.

    focused: boolean

    Indicates whether this view has the focus.

    params: ReadonlyMap<string, any>

    Parameters of the microfrontend loaded into the view.

    partId: `part.${string}`

    The identity of the part that contains the view.