From 642e1b2de6cb390a8bb381e3851160394e19a0b4 Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Tue, 4 Jan 2022 20:31:14 -0700 Subject: [PATCH] Reorder export to make the heirarchy more clear --- common/src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/src/index.ts b/common/src/index.ts index 1a0f80d..cf6dcc6 100644 --- a/common/src/index.ts +++ b/common/src/index.ts @@ -6,6 +6,6 @@ export * from "./types/Colour"; export * from "./types/Spaceship"; // Server-Client Communications +export * from "./types/ServerResponse"; export * from "./types/events/SaveShip"; -export * from "./types/events/server_info"; -export * from "./types/ServerResponse"; \ No newline at end of file +export * from "./types/events/server_info"; \ No newline at end of file