fix: readonly

This commit is contained in:
手瓜一十雪
2025-05-18 18:58:27 +08:00
parent 636568fd30
commit 1870427c0f

View File

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