23 lines
603 B
TypeScript
23 lines
603 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { ConfirmModalComponent } from './confirm-modal-components/confirm-modal/confirm-modal.component';
|
|
import { ModalModule } from 'ngx-bootstrap/modal';
|
|
import { ConfirmModalService } from './confirm-modal.service';
|
|
import { CommandModule } from '../command/command.module';
|
|
|
|
|
|
|
|
|
|
@NgModule({
|
|
declarations: [ConfirmModalComponent],
|
|
imports: [
|
|
CommonModule,
|
|
//CommandModule,
|
|
ModalModule.forRoot(),
|
|
|
|
],
|
|
exports:[],
|
|
providers: [ConfirmModalService]
|
|
})
|
|
export class ConfirmModalModule { }
|