summaryrefslogtreecommitdiff
path: root/nodejs/model/agent.ts
diff options
context:
space:
mode:
Diffstat (limited to 'nodejs/model/agent.ts')
-rw-r--r--nodejs/model/agent.ts8
1 files changed, 8 insertions, 0 deletions
diff --git a/nodejs/model/agent.ts b/nodejs/model/agent.ts
new file mode 100644
index 0000000..dce6424
--- /dev/null
+++ b/nodejs/model/agent.ts
@@ -0,0 +1,8 @@
+export type Agent = {
+ accountId: string;
+ credits: number;
+ headquarters: string;
+ shipCount: number;
+ startingFaction: string;
+ symbol: string;
+};