Orca Note Plugin API Documentation
    Preparing search index...

    Interface PanelHistory

    Represents an entry in the panel navigation history. Used to implement back/forward navigation between panel states.

    interface PanelHistory {
        activePanel: string;
        view: PanelView;
        viewArgs?: Record<string, any>;
    }
    Index

    Properties

    activePanel: string

    ID of the panel that was active at this history point

    view: PanelView

    The view type that was displayed

    viewArgs?: Record<string, any>

    Arguments for the view at this history point