import { NotificationDriverApplyInterface } from "./NotificationDriverApplyInterface"; import { NotificationDriverInterface } from "./NotificationDriverInterface"; export interface NotificationManagerDriverInterface { register(driver: NotificationDriverInterface, isDefault?: boolean): any; use(name?: string, config?: any): Readonly; isValidConfig(config: any, name?: string): boolean; list(): string[]; }