mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-02-05 15:11:15 +00:00
* feat: implement QQ online file transfer and flash transfer support * fix: change OnlineFile OB11Message data * fix: add fileSize and isDir to OB11MessageOnlineFile * fix: resolve typescript strict mode errors
14 lines
398 B
TypeScript
14 lines
398 B
TypeScript
import { OB11OnlineFileNoticeEvent } from './OB11OnlineFileNoticeEvent';
|
|
import { NapCatCore } from '@/napcat-core';
|
|
|
|
export class OB11OnlineFileReceiveEvent extends OB11OnlineFileNoticeEvent {
|
|
notice_type: string;
|
|
sub_type: string;
|
|
|
|
constructor (core: NapCatCore, peer_id: number) {
|
|
super(core, peer_id);
|
|
this.notice_type = 'online_file_receive';
|
|
this.sub_type = 'cancel';
|
|
}
|
|
}
|