export type ShipType = | "aircraft_carrier" | "battleship" | "destroyer" | "submarine" | "cruiser"; export type Direction = "hor" | "vert"; export type TCoords = { x: number; y: number; };