ObjectSearchComponentHandlers

Handlers exposed by the ObjectSearchComponent for external control.

Definition

export interface ObjectSearchComponentHandlers {
    /**
     * Triggers export of the current view's data.
     */
    export: () => void;

    /**
     * Retrieves details of the current search state.
     */
    getDetails: () => ObjectSearchDetailsResponse;

    refreshCurrentPage: () => void
}

Usage

import { ObjectSearchComponentHandlers } from 'uxp/components';

Last updated