chore: remove bad imports

This commit is contained in:
Jacob Nguyen
2023-05-06 02:01:27 -05:00
parent 098a440669
commit 8e9b3bbe04
7 changed files with 8 additions and 23 deletions

View File

@@ -1,7 +1,8 @@
import { type EventEmitter } from "node:events";
import { ErrorHandling, Logging, ModuleManager, ModuleStore, SernEmitter } from "../core";
import { ErrorHandling, Logging, ModuleManager, SernEmitter } from "../core";
import { Container, UnpackFunction } from "iti";
export type ModuleStore = Map<string,string>
export type ServerlessDependencyList = [ SernEmitter,ErrorHandling, Logging | undefined, ModuleManager];
export type WebsocketDependencyList = [SernEmitter,ErrorHandling, Logging | undefined, ModuleManager, EventEmitter];
/**