feat: GetRecentRecord 추가

- 메인페이지 최신 로그
This commit is contained in:
2022-08-16 23:57:47 +09:00
parent 970b702a2b
commit 4870e2fa30
3 changed files with 143 additions and 0 deletions
+10
View File
@@ -76,4 +76,14 @@ export type GetDiplomacyResponse = {
conflict: [number, Record<number, number>][];
diplomacyList: Record<number, Record<number, diplomacyState>>;
myNationID: number;
}
export type GetRecentRecordResponse = {
result: true;
history: [number, string][];
global: [number, string][];
general: [number, string][];
flushHistory: 1 | 0;
flushGlobal: 1 | 0;
flushGeneral: 1 | 0;
}