🎨 代码格式化

This commit is contained in:
BTMuli
2023-06-25 16:15:15 +08:00
parent 7982649bbc
commit 7567bba147
174 changed files with 29970 additions and 29840 deletions

View File

@@ -15,13 +15,15 @@ import HutaoApi from "../api";
* @since Alpha v0.2.0
* @return {Promise<TGApp.Plugins.Hutao.AbyssTeamCombination[]>}
*/
async function getTeamCollect (): Promise<TGApp.Plugins.Hutao.AbyssTeamCombination[]> {
async function getTeamCollect(): Promise<TGApp.Plugins.Hutao.AbyssTeamCombination[]> {
const url = HutaoApi.Abyss.team;
return await http.fetch<TGApp.Plugins.Hutao.AbyssTeamCombinationResponse>(url, {
method: "GET",
}).then((res) => {
return res.data.data;
});
return await http
.fetch<TGApp.Plugins.Hutao.AbyssTeamCombinationResponse>(url, {
method: "GET",
})
.then((res) => {
return res.data.data;
});
}
export default getTeamCollect;