mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-18 15:28:43 +02:00
7 lines
196 B
TypeScript
7 lines
196 B
TypeScript
/**
|
|
* Event emitter that triggers when scripts are started/stopped
|
|
*/
|
|
import { EventEmitter } from "../utils/EventEmitter";
|
|
|
|
export const WorkerScriptStartStopEventEmitter = new EventEmitter();
|