shirosaki-napcatsdk
Version:
全新的,省心的,NapCatQQ SDK
16 lines (15 loc) • 392 B
TypeScript
import type { anyobject } from "@ceale/util";
import { MessageSegment } from "../MessageSegment";
export declare class Reply extends MessageSegment {
id: string;
constructor(id: string);
toJSON(): {
type: string;
data: {
id: string;
};
};
static fromJSON(obj: anyobject): Reply;
clone(): Reply;
equals(other: Reply): boolean;
}