Convert exports to wildcard instead of named

This commit is contained in:
Oliver-Akins 2022-01-03 18:40:48 -07:00
parent dbedecc900
commit 1e18179cc6

View file

@ -2,8 +2,8 @@
export { Status } from "./enums/Status"; export { Status } from "./enums/Status";
// Interfaces // Interfaces
export { IColour } from "./types/Colour"; export * from "./types/Colour";
export { ISpaceship } from "./types/Spaceship"; export * from "./types/Spaceship";
// Server-Client Communications // Server-Client Communications
export * from "./types/events/SaveShip"; export * from "./types/events/SaveShip";