koishi-plugin-adapter-iirose
Version:
IIROSE-[蔷薇花园](https://iirose.com/)适配器
17 lines (16 loc) • 365 B
TypeScript
export interface MessageInfo {
messageId: string;
isDirect: boolean;
content: string;
timestamp: number;
author: {
userId: string;
avatar: string;
username: string;
nickname: string;
};
}
export interface messageObjList {
[key: string]: MessageInfo;
}
export declare const messageObjList: messageObjList;