Skip to content

Commit aabce8b

Browse files
authored
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`)
1 parent 7eeca4a commit aabce8b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

classes/switchmanager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { SwitchContext } from "../classes/switchcontext"
22

33
//namespace classes {
44

5-
export class SwitchManager {
5+
class SwitchManager {
66
private Switches: { [Name: string]: SwitchContext } = {};
77

88
create(name: string): SwitchContext {

0 commit comments

Comments
 (0)