Theia API Documentation v1.67.0
    Preparing search index...

    Column definition for table configuration widgets.

    interface TableColumn<T> {
        className?: string;
        id: string;
        label: string;
        renderCell: (item: T) => ReactNode;
    }

    Type Parameters

    • T
    Index

    Properties

    className?: string
    id: string
    label: string
    renderCell: (item: T) => ReactNode