/** * WeChat ChatId 编解码 * * 格式: weixin:::: * 确保每个 (账号, 对端用户) 对应唯一的会话标识 */ /** * 编码 ChatId */ export declare function encodeWeixinChatId(accountId: string, peerUserId: string): string; /** * 解码 ChatId */ export declare function decodeWeixinChatId(chatId: string): { accountId: string; peerUserId: string; } | null; /** * 判断是否为 Weixin ChatId */ export declare function isWeixinChatId(chatId: string): boolean; //# sourceMappingURL=weixin-ids.d.ts.map