File

src/lib/table/table.interfaces.ts

Properties

sortBy
sortBy: string
Type : string
sortOrder
sortOrder: "DESC" | "ASC"
Type : "DESC" | "ASC"
export interface IPlexTableColumns {
    key: string;
    label: string;
    sorteable?: boolean;
    opcional?: boolean;
    width?: string | number;
    right?: boolean;
    sort?: (a: any, b: any) => number;
    filterBy?: (a: any) => any;
}

export interface IPlexSortData {
    sortBy?: string;
    sortOrder?: 'DESC' | 'ASC';
}


export interface IPlexColumnDisplay { [key: string]: boolean; }

results matching ""

    No results matching ""