UNPKG

azurlane

Version:
10 lines (8 loc) 188 B
import { IBaseResponse } from "./base"; export interface IBaseShip { id: string; name: string; } export interface IShipsResponse extends IBaseResponse { ships: IBaseShip[]; }