mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-01-06 10:59:04 +08:00
19 lines
655 B
TypeScript
19 lines
655 B
TypeScript
import { OB11GroupNoticeEvent } from './OB11GroupNoticeEvent';
|
|
import { NapCatCore } from '@/core';
|
|
|
|
export type GroupDecreaseSubType = 'leave' | 'kick' | 'kick_me';
|
|
|
|
export class OB11GroupDecreaseEvent extends OB11GroupNoticeEvent {
|
|
notice_type = 'group_decrease';
|
|
sub_type: GroupDecreaseSubType = 'leave';
|
|
operator_id: number;
|
|
|
|
constructor(core: NapCatCore, groupId: number, userId: number, operatorId: number, subType: GroupDecreaseSubType = 'leave') {
|
|
super(core, groupId, userId);
|
|
this.group_id = groupId;
|
|
this.operator_id = operatorId;
|
|
this.user_id = userId;
|
|
this.sub_type = subType;
|
|
}
|
|
}
|