Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | 92x 92x 92x 92x 92x 92x 92x 92x 92x 92x 92x 92x | import { CommonModule } from '@angular/common'; import { NgModule } from '@angular/core'; import { FormsModule } from '@angular/forms'; import { RouterModule } from '@angular/router'; import { NgxDatatableModule } from '@swimlane/ngx-datatable'; import { BsDropdownModule } from 'ngx-bootstrap/dropdown'; import { ComponentsModule } from '../components/components.module'; import { PipesModule } from '../pipes/pipes.module'; import { TableActionsComponent } from './table-actions/table-actions.component'; import { TableKeyValueComponent } from './table-key-value/table-key-value.component'; import { TableComponent } from './table/table.component'; @NgModule({ imports: [ CommonModule, NgxDatatableModule, FormsModule, BsDropdownModule.forRoot(), PipesModule, ComponentsModule, RouterModule ], declarations: [TableComponent, TableKeyValueComponent, TableActionsComponent], exports: [TableComponent, NgxDatatableModule, TableKeyValueComponent, TableActionsComponent] }) export class DataTableModule {} |