mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-02-05 07:01:16 +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
12 lines
315 B
TypeScript
12 lines
315 B
TypeScript
import { OB11BaseNoticeEvent } from './OB11BaseNoticeEvent';
|
|
import { NapCatCore } from 'napcat-core';
|
|
|
|
export abstract class OB11OnlineFileNoticeEvent extends OB11BaseNoticeEvent {
|
|
peer_id: number;
|
|
|
|
protected constructor (core: NapCatCore, peer_id: number) {
|
|
super(core);
|
|
this.peer_id = peer_id;
|
|
}
|
|
}
|