js2ts: battle_simulator

This commit is contained in:
2021-08-20 02:54:57 +09:00
parent 9af10d4bcb
commit 6c6a3238cb
5 changed files with 1078 additions and 11 deletions
+13
View File
@@ -1,4 +1,17 @@
export type InvalidResponse = {
result: false;
reason: string;
}
export type BasicGeneralListResponse = {
result: true,
nationID: number,
generalID: number,
column:['no', 'name', 'npc'],
list:Record<string, [number, string, number][]>,
nation:Record<string, {
nation: number,
name: string,
color: string,
}>
}