mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-11 18:23:54 +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<[]>();
|