mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2024-11-21 09:36:35 +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;
|
|
}
|