♻️ 感觉差不多了,剩下的就靠测试了 #92

This commit is contained in:
目棃
2024-07-03 22:33:00 +08:00
parent 8a2c7d13c6
commit f4de7552e1
28 changed files with 249 additions and 399 deletions

View File

@@ -41,33 +41,6 @@ declare namespace TGApp.BBS.Response {
data: any;
}
/**
* @description 获取 ltoken 跟 stoken 的响应数据返回
* @interface getTokensRes
* @since Alpha v0.1.5
* @property {string} name - token 名称
* @property {string} token - token 值
* @return getTokensRes
*/
interface getTokensRes {
name: string;
token: string;
}
/**
* @description 获取 ltoken 跟 stoken 的响应数据
* @interface getTokens
* @since Alpha v0.1.5
* @extends BaseWithData
* @property {getTokensRes[]} data.list - token 列表
* @return getTokens
*/
interface getTokens extends BaseWithData {
data: {
list: getTokensRes[];
};
}
/**
* @description 根据 stoken 获取 ltoken 的响应数据
* @interface getLTokenBySToken