UNPKG

azurlane

Version:
10 lines (8 loc) 206 B
import { IBaseResponse } from "./base"; export interface IConstruction { time: string; ships: string[]; } export interface IBuildResponse extends IBaseResponse { construction: IConstruction; }