/** * 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 */ export declare type MagDialogLevel = 'success' | 'info' | 'warning' | 'error'; export declare type MagDialogNotificationLevel = 'blank' | 'success' | 'info' | 'warning' | 'error'; export interface MagDialogModalOption { level: MagDialogLevel; icon?: string; } export interface MagDialogMessageOption extends MagDialogModalOption { duration: number; icon?: string; } export interface MagDialogNotificationOption { level: MagDialogNotificationLevel; /** * 노출 시간. 초단위 * 0 일 경우 무제한 */ duration: number; icon?: string; }