import { NgModule,Component, OnInit, OnDestroy } from '@angular/core'; import { FormsModule ,ReactiveFormsModule} from '@angular/forms'; import { NgZorroAntdModule } from 'ng-zorro-antd'; import { CommonModule } from '@angular/common'; import { cmttable } from './cmttable.directive'; import { cmtborderbottom } from './cmtborderbottom.directive'; import { cmtborderright } from './cmtborderright.directive'; import { highlightcolor } from './highlightColor.directive'; // import { RowHighlight } from './cmthighlight.directive'; import { TableDocComponent } from './table.component'; @NgModule({ declarations: [ TableDocComponent, cmttable, cmtborderbottom, cmtborderright, highlightcolor, // RowHighlight ], imports: [ CommonModule, FormsModule, ReactiveFormsModule, NgZorroAntdModule ], exports: [TableDocComponent,NgZorroAntdModule,cmttable,cmtborderbottom,highlightcolor,cmtborderright], }) export class TableDocModule implements OnInit, OnDestroy { constructor() { } ngOnInit() { } ngOnDestroy(){ } }