forked from valor-software/ng2-table
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ng2-table.ts
24 lines (18 loc) · 856 Bytes
/
ng2-table.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import { NgTableComponent } from './components/table/ng-table.component';
import { NgTableFilteringDirective } from './components/table/ng-table-filtering.directive';
import { NgTablePagingDirective } from './components/table/ng-table-paging.directive';
import { NgTableSortingDirective } from './components/table/ng-table-sorting.directive';
export * from './components/table/ng-table.component';
export * from './components/table/ng-table-filtering.directive';
export * from './components/table/ng-table-paging.directive';
export * from './components/table/ng-table-sorting.directive';
export * from './components/ng-table-directives';
export default {
directives: [
NgTableComponent,
NgTableFilteringDirective,
NgTableSortingDirective,
NgTablePagingDirective
]
};
export { Ng2TableModule } from './components/ng-table-module';