🎨 代码格式化

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

@@ -16,8 +16,8 @@ declare namespace TGApp.User.Account {
*/
export interface GameResponse extends TGApp.BBS.Response.Base {
data: {
list: Game[]
}
list: Game[];
};
}
/**
@@ -35,14 +35,13 @@ declare namespace TGApp.User.Account {
* @return Game
*/
export interface Game {
game_biz: string
game_uid: string
is_chosen: boolean
is_official: boolean
level: string
nickname: string
region: string
region_name: string
game_biz: string;
game_uid: string;
is_chosen: boolean;
is_official: boolean;
level: string;
nickname: string;
region: string;
region_name: string;
}
}