mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-02-04 14:41:14 +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
17 lines
309 B
TypeScript
17 lines
309 B
TypeScript
export enum GeneralCallResultStatus {
|
|
OK = 0,
|
|
ERROR = -1,
|
|
}
|
|
|
|
export interface GeneralCallResult {
|
|
result: GeneralCallResultStatus,
|
|
errMsg: string
|
|
}
|
|
|
|
export interface ForceFetchClientKeyRetType extends GeneralCallResult {
|
|
url: string;
|
|
keyIndex: string;
|
|
clientKey: string;
|
|
expireTime: string;
|
|
}
|