mirror of
https://github.com/LLOneBot/LLOneBot.git
synced 2024-11-22 01:56:33 +00:00
11 lines
313 B
TypeScript
11 lines
313 B
TypeScript
import {OB11BaseNoticeEvent} from "../notice/OB11BaseNoticeEvent";
|
|
import {EventType} from "../OB11BaseEvent";
|
|
|
|
|
|
export class OB11FriendRequestEvent extends OB11BaseNoticeEvent {
|
|
post_type = EventType.REQUEST
|
|
user_id: number;
|
|
request_type: "friend" = "friend";
|
|
comment: string;
|
|
flag: string;
|
|
} |