UNPKG

ng2-bs-table

Version:
12 lines (11 loc) 392 B
import { TableColumnInterface } from "./table-column-interface"; export declare class TableDataColumn implements TableColumnInterface { display: string; variable: string; filter: string; sortable: boolean; constructor(display: string, variable: string, filter: string, sortable?: boolean); getColumnName(): string; getType(): string; render(data: any): any; }