From aabce8b4cf3f73e30f9e8461fdab851e4dc6622d Mon Sep 17 00:00:00 2001 From: Nate VanBuskirk Date: Tue, 9 Sep 2025 20:03:23 -0500 Subject: [PATCH] Update switchmanager.ts - same issue as with switchcontext.ts Removing export from class because, as it states, all top-level classes auto-export...even though the namespace added to it is in fact not top-level (`./classes/SwitchManager`) --- classes/switchmanager.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/switchmanager.ts b/classes/switchmanager.ts index 89affff..fcf7999 100644 --- a/classes/switchmanager.ts +++ b/classes/switchmanager.ts @@ -2,7 +2,7 @@ import { SwitchContext } from "../classes/switchcontext" //namespace classes { -export class SwitchManager { +class SwitchManager { private Switches: { [Name: string]: SwitchContext } = {}; create(name: string): SwitchContext {