UNPKG

ng2-bs-table

Version:
15 lines (14 loc) 497 B
import { TableColumnInterface } from "./table-column-interface"; export declare abstract class TableHtmlColumn implements TableColumnInterface { display: string; variable: string; sortable: boolean; constructor(display: string, variable: string, sortable?: boolean); getColumnName(): string; render(data: any): any; getType(): string; /** * Template receive columnName, data. Also you can set event "onCellChange" */ abstract getTemplate(): string; }