mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-01-16 21:30:32 +00:00
7 lines
207 B
TypeScript
7 lines
207 B
TypeScript
import { EventType, OneBotEvent } from '@/napcat-onebot/event/OneBotEvent';
|
|
|
|
export abstract class OB11BaseNoticeEvent extends OneBotEvent {
|
|
post_type = EventType.NOTICE;
|
|
abstract notice_type: string;
|
|
}
|