ObjectDetailsPanelProps

Props for the ObjectDetailsPanel, extending base props with data source.

Definition

type ObjectDetailsPanelProps = ObjectDetailsPanelBaseProps & {
    /**
     * Row data to display, either static or a function that fetches it asynchronously.
     */
    data: RowData | (() => Promise<RowData>);
};

Usage

import { ObjectDetailsPanelProps } from 'uxp/components';

Last updated