blob: 1ba70c1ff9d9e9a13d4262c751f7af001cd18f02 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
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<CommonThing>;
exports: Array<CommonThing>;
imports: Array<CommonThing>;
//transactions: Array<Transaction>;
tradeGoods: Array<TradeGood>;
};
|