ng-ytl-zorro-antd
Version:
An enterprise-class UI components based on Ant Design and Angular
25 lines (21 loc) • 1.04 kB
text/typescript
import { Component, Inject, Optional, ViewEncapsulation } from '@angular/core';
import { NzMessageContainerComponent } from '../message/nz-message-container.component';
import { NzNotificationConfig, NZ_NOTIFICATION_CONFIG, NZ_NOTIFICATION_DEFAULT_CONFIG } from './nz-notification-config';
export class NzNotificationContainerComponent extends NzMessageContainerComponent {
constructor( defaultConfig: NzNotificationConfig,
config: NzNotificationConfig) {
super(defaultConfig, config);
}
}