mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2025-01-06 05:17:37 +01:00
7 lines
200 B
TypeScript
7 lines
200 B
TypeScript
/**
|
|
* Event emitter that triggers when scripts are started/stopped
|
|
*/
|
|
import { EventEmitter } from "../utils/EventEmitter";
|
|
|
|
export const WorkerScriptStartStopEventEmitter = new EventEmitter<[]>();
|