16 lines
501 B
TypeScript
16 lines
501 B
TypeScript
|
import {NgModule} from '@angular/core';
|
||
|
import {CommonModule} from '@angular/common';
|
||
|
import {EntityMetadataComponent} from './entity-metadata.component';
|
||
|
import {IconsModule} from '../../utils/icons/icons.module';
|
||
|
import {AlertModalModule} from '../../utils/modal/alertModal.module';
|
||
|
|
||
|
@NgModule({
|
||
|
imports: [
|
||
|
CommonModule, IconsModule, AlertModalModule
|
||
|
],
|
||
|
declarations: [EntityMetadataComponent],
|
||
|
providers:[],
|
||
|
exports: [EntityMetadataComponent]
|
||
|
})
|
||
|
export class EntityMetadataModule { }
|