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