koishi-plugin-adapter-iirose
Version:
IIROSE-[蔷薇花园](https://iirose.com/)适配器
34 lines (33 loc) • 771 B
TypeScript
import { IIROSE_Bot } from '../bot';
export interface replyMessage {
message: string;
username: string;
time: number;
}
interface data {
type?: string;
timestamp: number;
avatar: string;
username: string;
message?: string;
color: string;
uid: string;
title?: string;
messageId?: number;
replyMessage?: replyMessage[] | null;
}
export declare class ManyMessage {
timestamp: number;
avatar: string;
username: string;
message: string;
color: string;
uid: string;
title: string;
messageId: number;
replyMessage: replyMessage[] | null;
type: string | null;
constructor(data: data);
}
export declare const manyMessage: (input: string, bot: IIROSE_Bot) => ManyMessage[];
export {};