feat: Vue3로 새롭게 작성한 메인 페이지 #229

Merged
Hide_D merged 61 commits from ng_main into devel 2023-03-09 02:25:31 +09:00
Showing only changes of commit 555b4c9cc6 - Show all commits
+10 -7
View File
@@ -150,14 +150,17 @@ export type LiteNationInfoResponse = ValidResponse & {
nation: NationStaticItem;
};
export type NationInfoFull = ValidResponse & {
nation: NationItem;
isFull: true,
impossibleStrategicCommandLists: [string, number][];
nationNotice: string,
troops: Record<number, string>;
}
export type NationInfoResponse =
| (ValidResponse & {
nation: NationStaticItem;
isFull?: false;
})
| (ValidResponse & {
nation: NationItem;
isFull: true,
impossibleStrategicCommandLists: [string, number][];
nationNotice: string,
troops: Record<number, string>;
});
| NationInfoFull;