import type { CityID, NationID, NationName, NationType } from "./defs.js"; export interface INationEntity{ id: NationID; name: NationName; type: NationType; capitalID: CityID; }