mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-01-10 05:29:02 +08:00
16 lines
295 B
TypeScript
16 lines
295 B
TypeScript
export enum GeneralCallResultStatus {
|
|
OK = 0,
|
|
}
|
|
|
|
export interface GeneralCallResult {
|
|
result: GeneralCallResultStatus,
|
|
errMsg: string
|
|
}
|
|
|
|
export interface ForceFetchClientKeyRetType extends GeneralCallResult {
|
|
url: string;
|
|
keyIndex: string;
|
|
clientKey: string;
|
|
expireTime: string;
|
|
}
|