js2ts: battle_simulator
This commit is contained in:
@@ -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,
|
||||
}>
|
||||
}
|
||||
Reference in New Issue
Block a user