File

src/models/table-filter.interface.ts

Properties

defaultOption
defaultOption: string | number | boolean
Type : string | number | boolean
field
field: string
Type : string
options
options: TableFilterOption[]
Type : TableFilterOption[]
placeholder
placeholder: string
Type : string
resetTo
resetTo: string | number | boolean
Type : string | number | boolean
import { TableFilterOption } from "./table-filter-option.interface";

export interface TableFilter {
    field: string;
    defaultOption: string | number | boolean;
    resetTo: string | number | boolean;
    placeholder?: string;
    options: Array<TableFilterOption>;
}

results matching ""

    No results matching ""