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