Files
space-game/apps/viewer/src/contracts.ts

40 lines
913 B
TypeScript

export type { Vector3Dto, InventoryEntry } from "./contractsCommon";
export type {
WorldSnapshot,
WorldDelta,
SimulationEventRecord,
ObserverScope,
OrbitalSimulationSnapshot,
} from "./contractsWorld";
export type {
SystemSnapshot,
PlanetSnapshot,
ResourceNodeSnapshot,
ResourceNodeDelta,
SpatialNodeSnapshot,
SpatialNodeDelta,
LocalBubbleSnapshot,
LocalBubbleDelta,
} from "./contractsCelestial";
export type {
StationSnapshot,
StationDelta,
ClaimSnapshot,
ClaimDelta,
ConstructionSiteSnapshot,
ConstructionSiteDelta,
} from "./contractsInfrastructure";
export type {
MarketOrderSnapshot,
MarketOrderDelta,
PolicySetSnapshot,
PolicySetDelta,
} from "./contractsEconomy";
export type {
ShipSnapshot,
ShipDelta,
ShipSpatialStateSnapshot,
ShipTransitSnapshot,
} from "./contractsShips";
export type { FactionSnapshot, FactionDelta } from "./contractsFactions";