From a1d6b03ec98abbc073b5b73b631da6ea3eae4eb9 Mon Sep 17 00:00:00 2001 From: Julien Dessaux Date: Wed, 27 Mar 2024 15:20:14 +0100 Subject: [node] finished the great typescript rewrite --- nodejs/model/ship.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'nodejs/model/ship.ts') diff --git a/nodejs/model/ship.ts b/nodejs/model/ship.ts index 9aaf601..bf40767 100644 --- a/nodejs/model/ship.ts +++ b/nodejs/model/ship.ts @@ -25,6 +25,12 @@ export type Nav = { waypointSymbol: string; }; +export type Registration = { + factionSymbol: string; + name: string; + role: string; +}; + export type Route = { arrival: Date; departureTime: Date; @@ -51,6 +57,6 @@ export type Ship = { // mounts nav: Nav; // reactor - // registration + registration: Registration; symbol: string; }; -- cgit v1.2.3