mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-02-12 16:00:27 +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;
|
|
}
|