ng2-bs-table
Version:
Boostrap table view for angular 2.
13 lines (11 loc) • 371 B
text/typescript
import {TableFilterInterfacePipe} from "../filters/table-filter-interface.pipe";
export class FilterEvent {
pipe: TableFilterInterfacePipe;
columnName: string;
filter: any;
constructor(pipe: TableFilterInterfacePipe, columnName: string, filter: any) {
this.pipe = pipe;
this.columnName = columnName;
this.filter = filter;
}
}