refactor: rename OB11BaseEvent

This commit is contained in:
手瓜一十雪
2024-11-19 12:55:42 +08:00
parent fa6a8816f8
commit c2f8ef236b
9 changed files with 14 additions and 14 deletions

View File

@@ -1,6 +1,6 @@
import { EventType, OB11BaseEvent } from '../OB11BaseEvent';
import { EventType, OneBotEvent } from '@/onebot/event/OneBotEvent';
export abstract class OB11BaseMetaEvent extends OB11BaseEvent {
export abstract class OB11BaseMetaEvent extends OneBotEvent {
post_type = EventType.META;
abstract meta_event_type: string;
}