refac: ExecuteEngine 반환 타입 변경

This commit is contained in:
2022-08-30 22:51:14 +09:00
parent 8cb2e2a447
commit 006ca76922
4 changed files with 50 additions and 11 deletions
+7
View File
@@ -78,6 +78,13 @@ export type GetDiplomacyResponse = {
myNationID: number;
}
export type ExecuteResponse = {
result: true;
updated: boolean;
locked: boolean;
lastExecuted: string;
};
export type GetRecentRecordResponse = {
result: true;
history: [number, string][];