mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2024-11-21 09:36:35 +00:00
Fix typo in eventType field name
This commit is contained in:
parent
7b10d75aeb
commit
c771d75a00
@ -4,12 +4,12 @@ export class OB11InputStatusEvent extends OB11BaseNoticeEvent {
|
|||||||
notice_type = 'notify';
|
notice_type = 'notify';
|
||||||
sub_type = 'input_status';
|
sub_type = 'input_status';
|
||||||
status_text = '对方正在输入...';
|
status_text = '对方正在输入...';
|
||||||
eventType = 1;
|
event_type = 1;
|
||||||
user_id = 0;
|
user_id = 0;
|
||||||
constructor(user_id: number, eventType: number, status_text: string) {
|
constructor(user_id: number, eventType: number, status_text: string) {
|
||||||
super();
|
super();
|
||||||
this.user_id = user_id;
|
this.user_id = user_id;
|
||||||
this.eventType = eventType;
|
this.event_type = eventType;
|
||||||
this.status_text = status_text;
|
this.status_text = status_text;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user