10 lines
334 B
TypeScript
Executable File
10 lines
334 B
TypeScript
Executable File
import { CanDeactivateDialogComponent } from './can-deactivate/can-deactivate.dialog.component';
|
|
import { ConfirmDialogComponent } from './confirm/confirm.dialog.component';
|
|
import { EVENTS_DIALOGS } from './events';
|
|
|
|
export const DIALOGS = [
|
|
CanDeactivateDialogComponent,
|
|
ConfirmDialogComponent,
|
|
...EVENTS_DIALOGS,
|
|
];
|