mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-05-03 14:27:03 +02:00
8 lines
165 B
TypeScript
8 lines
165 B
TypeScript
import { EventEmitter } from "../utils/EventEmitter";
|
|
|
|
export enum UIEventType {
|
|
MainUILoaded,
|
|
}
|
|
|
|
export const UIEventEmitter = new EventEmitter<UIEventType[]>();
|