UNPKG

battleships-engine

Version:
14 lines (11 loc) 219 B
export type ShipType = | "aircraft_carrier" | "battleship" | "destroyer" | "submarine" | "cruiser"; export type Direction = "hor" | "vert"; export type TCoords = { x: number; y: number; };