mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-01-04 17:49:01 +08:00
19 lines
631 B
TypeScript
19 lines
631 B
TypeScript
import { OB11GroupNoticeEvent } from './OB11GroupNoticeEvent';
|
|
import { NapCatCore } from '@/core';
|
|
|
|
type GroupIncreaseSubType = 'approve' | 'invite';
|
|
|
|
export class OB11GroupIncreaseEvent extends OB11GroupNoticeEvent {
|
|
notice_type = 'group_increase';
|
|
operator_id: number;
|
|
sub_type: GroupIncreaseSubType;
|
|
|
|
constructor(core: NapCatCore, groupId: number, userId: number, operatorId: number, subType: GroupIncreaseSubType = 'approve') {
|
|
super(core, groupId, userId);
|
|
this.group_id = groupId;
|
|
this.operator_id = operatorId;
|
|
this.user_id = userId;
|
|
this.sub_type = subType;
|
|
}
|
|
}
|