UNPKG

ng-zorro-antd

Version:

An enterprise-class UI components based on Ant Design and Angular

21 lines (20 loc) 823 B
/** * @license * Copyright Alibaba.com All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE */ import { ChangeDetectorRef } from '@angular/core'; import { NzConfigService } from 'ng-zorro-antd/core/config'; import { Subject } from 'rxjs'; import { NzMNContainerComponent } from './base'; import { NzMessageData } from './typings'; export declare class NzMessageContainerComponent extends NzMNContainerComponent { readonly destroy$: Subject<void>; instances: Array<Required<NzMessageData>>; top: string | null; constructor(cdr: ChangeDetectorRef, nzConfigService: NzConfigService); protected subscribeConfigChange(): void; protected updateConfig(): void; }