OSCColumn

Column configuration for the ObjectSearchComponent table, extending the base Column interface.

Definition

interface OSCColumn extends Column {
    /**
     * Optional label for the column when exporting data.
     */
    exportLabel?: string;

    /**
     * Optional formatter function for custom export data formatting.
     */
    formatter?: ExportColumnFormatter;
}

Usage

import { OSCColumn } from 'uxp/components';

Last updated