summaryrefslogtreecommitdiff
path: root/nodejs/model/cargo.ts
diff options
context:
space:
mode:
Diffstat (limited to 'nodejs/model/cargo.ts')
-rw-r--r--nodejs/model/cargo.ts17
1 files changed, 0 insertions, 17 deletions
diff --git a/nodejs/model/cargo.ts b/nodejs/model/cargo.ts
deleted file mode 100644
index 869fa49..0000000
--- a/nodejs/model/cargo.ts
+++ /dev/null
@@ -1,17 +0,0 @@
-export type Inventory = {
- description: string;
- name: string;
- symbol: string;
- units: number;
-};
-
-export type Cargo = {
- "capacity": number;
- "units": number;
- "inventory": Array<Inventory>;
-};
-
-// Custom type, not from space traders api
-export type CargoManifest = {
- [key: string]: number;
-};