From 1e18179cc699091850b94965f89cfe55babed496 Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Mon, 3 Jan 2022 18:40:48 -0700 Subject: [PATCH] Convert exports to wildcard instead of named --- 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 6b54854..4908db4 100644 --- a/common/src/index.ts +++ b/common/src/index.ts @@ -2,8 +2,8 @@ export { Status } from "./enums/Status"; // Interfaces -export { IColour } from "./types/Colour"; -export { ISpaceship } from "./types/Spaceship"; +export * from "./types/Colour"; +export * from "./types/Spaceship"; // Server-Client Communications export * from "./types/events/SaveShip";