interface TableColumnOptions {
    field: string;
    filter?: TableColumnFilterOptions;
    searchable?: boolean;
    sort?: "asc" | "desc" | "none";
    template?: string;
    title?: string;
    visible?: boolean;
    width?: number;
}

Properties

field: string
searchable?: boolean
sort?: "asc" | "desc" | "none"
template?: string
title?: string
visible?: boolean
width?: number