import { CommonThing } from 'common.ts'; export type TradeGood = CommonThing & { activity: string; purchasePrice: number; sellPrice: number; supply: string; tradeVolume: number; type: string; }; export type Market = { symbol: string; exchange: Array; exports: Array; imports: Array; //transactions: Array; tradeGoods: Array; };