import { NgModule } from "@angular/core"; import { AdminPanelModule } from 'sigma-ng/admin-panel'; import { DataTableModule } from 'sigma-ng/datatable'; import { ModalModule } from 'sigma-ng/modal'; import { FormatterModule } from 'sigma-ng/formatter'; import { NotificationModule } from 'sigma-ng/notification'; import { ComboboxModule } from 'sigma-ng/combobox'; import { ProgressModule } from 'sigma-ng/progress'; import { JDatepickerModule } from 'sigma-ng/jdatepicker'; import { BreadcrumbModule } from 'sigma-ng/breadcrumb'; import { TreeviewModule } from 'sigma-ng/treeview'; import { InputMaskModule } from 'sigma-ng/inputmask'; import { SchadulerModule } from "sigma-ng/schaduler"; import { FormsModule } from "@angular/forms"; import { CommonModule } from "@angular/common"; import { NotificationService } from "sigma-ng/notification/services/notification.service"; @NgModule({ imports: [ FormsModule, CommonModule, ], declarations: [ ], exports: [ AdminPanelModule, DataTableModule, InputMaskModule, ModalModule, TreeviewModule, BreadcrumbModule, ProgressModule, JDatepickerModule, ComboboxModule, NotificationModule, FormatterModule, SchadulerModule ], providers: [NotificationService] }) export class SigmaModule { }