koishi-plugin-adapter-iirose
Version:
[IIROSE-蔷薇花园](https://iirose.com/)适配器
26 lines (25 loc) • 522 B
TypeScript
export interface SwitchRoom {
timestamp: number;
avatar: string;
username: string;
color: string;
uid: string;
title: string;
room: string;
targetRoom: string;
}
/**
* 解析用户切换房间的消息
* @param message 消息
* @returns {SwitchRoom | undefined}
*/
export declare const switchRoom: (message: string) => {
timestamp: number;
avatar: string;
username: string;
color: string;
uid: string;
title: string;
room: string;
targetRoom: string;
};