Files
vite_front/hwe/ts/defs/API/InheritAction.ts
T
2022-07-08 00:11:41 +09:00

25 lines
516 B
TypeScript

import type { ValidResponse } from "@/util/callSammoAPI";
export type inheritBuffType =
| "warAvoidRatio"
| "warCriticalRatio"
| "warMagicTrialProb"
| "domesticSuccessProb"
| "domesticFailProb"
| "warAvoidRatioOppose"
| "warCriticalRatioOppose"
| "warMagicTrialProbOppose";
export type InheritPointLogItem = {
id: number;
server_id: string;
year: number;
month: number;
date: string;
text: string;
};
export type InheritLogResponse = ValidResponse & {
log: InheritPointLogItem[];
};