fix: complete logical clock wall-time isolation
This commit is contained in:
@@ -7,6 +7,7 @@ export type ReservedCommandResponse = {
|
||||
year: number;
|
||||
month: number;
|
||||
date: string;
|
||||
clockMode: "realtime" | "manual";
|
||||
turn: TurnObj[];
|
||||
autorun_limit: null | number;
|
||||
};
|
||||
|
||||
@@ -34,6 +34,8 @@ export type MsgItem = {
|
||||
delete?: number;
|
||||
};
|
||||
time: string;
|
||||
deleteRemainingMilliseconds: number;
|
||||
clockMode: "realtime" | "manual";
|
||||
};
|
||||
|
||||
export type MsgPrintItem = MsgItem & {
|
||||
@@ -77,4 +79,4 @@ export type MailboxItem = {
|
||||
export type MabilboxListResponse = {
|
||||
result: true,
|
||||
nation: MailboxItem[]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7,6 +7,7 @@ export type ChiefResponse = {
|
||||
month: number;
|
||||
turnTerm: number;
|
||||
date: string;
|
||||
clockMode: "realtime" | "manual";
|
||||
chiefList: Record<
|
||||
number,
|
||||
{
|
||||
@@ -28,4 +29,4 @@ export type ChiefResponse = {
|
||||
}[];
|
||||
mapName: string,
|
||||
unitSet: string,
|
||||
};
|
||||
};
|
||||
|
||||
@@ -30,4 +30,5 @@ export type VoteDetailResult = ValidResponse & {
|
||||
comments: VoteComment[],
|
||||
myVote: null|number[],
|
||||
userCnt: number,
|
||||
}
|
||||
isOpen: boolean,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user