koishi-plugin-adapter-iirose
Version:
[IIROSE-蔷薇花园](https://iirose.com/)适配器
30 lines (29 loc) • 684 B
TypeScript
import { replyMessage } from './PublicMessage';
interface data {
timestamp: number;
uid: string;
username: string;
avatar: string;
message: string;
color: string;
messageId: number;
replyMessage: replyMessage[] | null;
}
export declare class PrivateMessage {
timestamp: number;
uid: string;
username: string;
avatar: string;
message: string;
color: string;
messageId: number;
replyMessage: replyMessage[] | null;
constructor(data: data);
}
/**
* 解析私聊消息
* @param message 消息
* @returns {PrivateMessage | null}
*/
export declare const privateMessage: (message: string) => PrivateMessage;
export {};