NapCatQQ/src/onebot/event/request/OB11BaseRequestEvent.ts
手瓜一十雪 6417701780 fix: 别名
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
2025-05-18 18:55:56 +08:00

7 lines
207 B
TypeScript

import { EventType, OneBotEvent } from '@/onebot/event/OneBotEvent';
export abstract class OB11BaseRequestEvent extends OneBotEvent {
post_type = EventType.REQUEST;
abstract request_type: string;
}