File

src/lib/table/table.interfaces.ts

Properties

filterBy
filterBy: (a: any) => any
Type : (a: any) => any
key
key: string
Type : string
label
label: string
Type : string
opcional
opcional: boolean
Type : boolean
right
right: boolean
Type : boolean
sort
sort: (a: any, b: any) => number
Type : (a: any, b: any) => number
sorteable
sorteable: boolean
Type : boolean
width
width: string | number
Type : string | number
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 ""