mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-01-15 12:50:33 +00:00
22 lines
545 B
TypeScript
22 lines
545 B
TypeScript
import { OB11GroupNoticeEvent } from './OB11GroupNoticeEvent';
|
|
import { NapCatCore } from 'napcat-core';
|
|
|
|
export interface GroupUploadFile {
|
|
id: string,
|
|
name: string,
|
|
size: number,
|
|
busid: number,
|
|
}
|
|
|
|
export class OB11GroupUploadNoticeEvent extends OB11GroupNoticeEvent {
|
|
notice_type = 'group_upload';
|
|
file: GroupUploadFile;
|
|
|
|
constructor (core: NapCatCore, groupId: number, userId: number, file: GroupUploadFile) {
|
|
super(core, groupId, userId);
|
|
this.group_id = groupId;
|
|
this.user_id = userId;
|
|
this.file = file;
|
|
}
|
|
}
|