fix: GetNationInfo Full mode

This commit is contained in:
2023-03-09 02:20:20 +09:00
parent 555b4c9cc6
commit 8f0057ff51
2 changed files with 10 additions and 3 deletions
+8 -1
View File
@@ -154,10 +154,17 @@ export type NationInfoFull = ValidResponse & {
nation: NationItem;
isFull: true,
impossibleStrategicCommandLists: [string, number][];
nationNotice: string,
nationNotice: NationNotice,
troops: Record<number, string>;
}
export type NationNotice = {
date: string,
msg: string,
author: string,
authorID: number,
}
export type NationInfoResponse =
| (ValidResponse & {
nation: NationStaticItem;