import type { QmsgMsg } from "./QmsgInst"; /** * Qmsg实例存储信息 */ export interface QmsgInstStorageInfo { /** * 配置的字符串 */ configStr: string; /** * 实例 */ inst: typeof QmsgMsg.prototype; /** * 唯一id */ uuid: string; } /** * Qmsg实例存储 */ export declare const QmsgInstStorage: { /** * 存储的Qmsg实例信息 */ insInfoList: QmsgInstStorageInfo[]; /** * 根据uuid移除Qmsg实例 * @param uuid 每个Qmsg实例的uuid * @returns * + true 移除成功 * + false 移除失败 */ remove(uuid: string): boolean; };