import { InjectionToken } from '@angular/core'; export interface MessagerConfig { width?: number; height?: number; title?: string; showHeader?: boolean; } export const MessagerDefaultConfig = { // width: 340, // height: 220, title: '系统提示' }; export const MESSAGER_DEFAULT_CONFIG = new InjectionToken('Messager default options.');