Rezi
    Preparing search index...

    Type Alias UseTableOptions<T>

    UseTableOptions: Readonly<
        Omit<
            TableProps<T>,

                | "id"
                | "columns"
                | "data"
                | "getRowKey"
                | "selection"
                | "selectionMode"
                | "onSelectionChange"
                | "sortColumn"
                | "sortDirection"
                | "onSort",
        > & {
            columns: readonly TableColumn<T>[];
            defaultSelection?: readonly string[];
            defaultSortColumn?: string;
            defaultSortDirection?: SortDirection;
            getRowKey?: (row: T, index: number) => string;
            id?: string;
            onSelectionChange?: (keys: readonly string[]) => void;
            onSortChange?: (column: string, direction: SortDirection) => void;
            rows: readonly T[];
            selectable?: TableSelectionMode;
            sortable?: boolean;
        },
    >

    Type Parameters

    • T