/*** * @file:提示信息接口 * @author: linkun.he * @Date: 2019-09-20 09:29:28 */ export interface DtNotificationDataOptions { dtKey?: string; dtPlacement?: 'topLeft' | 'topRight' | 'bottomLeft' | 'bottomRight'; dtDuration?: number; dtStyle?: any; dtClass?: any; } export interface NzNotificationDataOptions { nzKey?: string; nzDuration?: number; nzStyle?: any; nzClass?: any; nzData?: T; } export declare const DT_DEFAULT_NOTIFICATION: { nzDuration: number; };