summaryrefslogtreecommitdiff
path: root/nodejs/model/market.ts
diff options
context:
space:
mode:
authorJulien Dessaux2024-04-05 00:42:30 +0200
committerJulien Dessaux2024-04-07 23:01:52 +0200
commit234770b611df32178382b557df396db220070a7f (patch)
tree8c768846716eaf892ff75abe84d0f5c00e8519ff /nodejs/model/market.ts
parent[node] Fixed basic procurement trading loop (diff)
downloadspacetraders-234770b611df32178382b557df396db220070a7f.tar.gz
spacetraders-234770b611df32178382b557df396db220070a7f.tar.bz2
spacetraders-234770b611df32178382b557df396db220070a7f.zip
[node] Big Ships lib refactoring
Diffstat (limited to 'nodejs/model/market.ts')
-rw-r--r--nodejs/model/market.ts19
1 files changed, 0 insertions, 19 deletions
diff --git a/nodejs/model/market.ts b/nodejs/model/market.ts
deleted file mode 100644
index 1ba70c1..0000000
--- a/nodejs/model/market.ts
+++ /dev/null
@@ -1,19 +0,0 @@
-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>;
-};