mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2024-11-21 09:36:35 +00:00
7 lines
198 B
TypeScript
7 lines
198 B
TypeScript
import { EventType, OB11BaseEvent } from '../OB11BaseEvent';
|
|
|
|
export abstract class OB11BaseMetaEvent extends OB11BaseEvent {
|
|
post_type = EventType.META;
|
|
abstract meta_event_type: string;
|
|
}
|