ReservedTurn
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
import type { GeneralID, ReservedTurn } from "@/defs.js";
|
||||
|
||||
export interface IGeneralReservedTurn {
|
||||
generalID: GeneralID;
|
||||
turn: ReservedTurn[];
|
||||
}
|
||||
@@ -1,10 +0,0 @@
|
||||
import type { GeneralID } from "@/defs.js";
|
||||
|
||||
export interface IGeneralTurn {
|
||||
generalID: GeneralID;
|
||||
turn: {
|
||||
action: string;
|
||||
arg?: Record<string, unknown>;
|
||||
brief: string;
|
||||
}[];
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
import type { ReservedTurn, StaffLevel } from "@/defs.js";
|
||||
|
||||
export interface INationReservedTurn {
|
||||
_id: string;
|
||||
|
||||
nationID: string;
|
||||
officerLevel: StaffLevel,
|
||||
|
||||
turn: ReservedTurn[];
|
||||
}
|
||||
@@ -1,14 +0,0 @@
|
||||
import type { StaffLevel } from "@/defs.js";
|
||||
|
||||
export interface INationTurn {
|
||||
_id: string;
|
||||
|
||||
nationID: string;
|
||||
officerLevel: StaffLevel,
|
||||
|
||||
turn: {
|
||||
action: string;
|
||||
arg?: Record<string, unknown>;
|
||||
brief: string;
|
||||
}[];
|
||||
}
|
||||
@@ -1,4 +0,0 @@
|
||||
export interface IReservedTurn {
|
||||
action: string;
|
||||
arg: Record<string, unknown>;
|
||||
}
|
||||
Reference in New Issue
Block a user