bitburner-src/src/Netscript/WorkerScriptStartStopEventEmitter.ts

7 lines
200 B
TypeScript
Raw Normal View History

/**
* Event emitter that triggers when scripts are started/stopped
*/
import { EventEmitter } from "../utils/EventEmitter";
2021-09-18 21:44:39 +02:00
export const WorkerScriptStartStopEventEmitter = new EventEmitter<[]>();