ng2-bs-table
Version:
Boostrap table view for angular 2.
12 lines (11 loc) • 392 B
TypeScript
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;
}