Member Junction
    Preparing search index...

    Interface QueryParamChangeEvent

    Event emitted when query params change on a tab (e.g., from browser back/forward). Includes the tab ID so that only the component in the affected tab reacts, preventing cross-tab leakage in multi-tab scenarios.

    interface QueryParamChangeEvent {
        Params: Record<string, string>;
        TabId: string;
    }
    Index

    Properties

    Properties

    Params: Record<string, string>
    TabId: string