mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-02-05 23:19:37 +00:00
17 lines
327 B
TypeScript
17 lines
327 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;
|
|
}
|