mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-01-12 07:19:01 +08:00
7 lines
219 B
TypeScript
7 lines
219 B
TypeScript
import { EventType, OneBotEvent } from '@/napcat-onebot/event/OneBotEvent';
|
|
|
|
export abstract class OB11BaseRequestEvent extends OneBotEvent {
|
|
readonly post_type = EventType.REQUEST;
|
|
abstract request_type: string;
|
|
}
|