first commit
This commit is contained in:
9
xterminal/source/emitter/interface.ts
Normal file
9
xterminal/source/emitter/interface.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import type { IEventName, IEventListener } from "../types";
|
||||
|
||||
/**
|
||||
* State of the Event Emitter
|
||||
*/
|
||||
export type IEmitterState = {
|
||||
store: Map<IEventName, Set<IEventListener>>;
|
||||
stack: IEventName[];
|
||||
};
|
||||
Reference in New Issue
Block a user