-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpublic-api.ts
21 lines (21 loc) · 1.32 KB
/
public-api.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
* Public API Surface of table-builder
*/
export * from './interfaces/table-builder.external';
export { TableBuilderModule } from './table-builder.module';
export { TableFilterType } from './services/filterable/filterable.interface';
export { NgxTableViewChangesService } from './services/table-view-changes/ngx-table-view-changes.service';
/**
* Public component type
*/
export { NgxContextMenuItemComponent } from './components/ngx-context-menu/ngx-context-menu-item/ngx-context-menu-item.component';
export { TableBuilderComponent } from './table-builder.component';
export { NgxColumnComponent } from './components/ngx-column/ngx-column.component';
export { NgxFilterComponent } from './components/ngx-filter/ngx-filter.component';
export { NgxContextMenuComponent } from './components/ngx-context-menu/ngx-context-menu.component';
export { NgxFilterViewerComponent } from './components/ngx-filter-viewer/ngx-filter-viewer.component';
export { NgxSourceNullComponent } from './components/ngx-source-null/ngx-source-null.component';
export { NgxEmptyComponent } from './components/ngx-empty/ngx-empty.component';
export { NgxHeaderComponent } from './components/ngx-header/ngx-header.component';
export { NgxFooterComponent } from './components/ngx-footer/ngx-footer.component';
export { SelectedItemsPipe } from './pipes/selected-items.pipe';