mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-21 08:42:53 +02:00
10 lines
392 B
TypeScript
10 lines
392 B
TypeScript
// To avoid cyclic dependencies, this file should have as few imports as possible.
|
|
|
|
import type { ContentFilePath } from "../Paths/ContentFile";
|
|
import { EventEmitter } from "../utils/EventEmitter";
|
|
import type { OpenScript } from "./ui/OpenScript";
|
|
|
|
export const openScripts: OpenScript[] = [];
|
|
|
|
export const EditorEvents = new EventEmitter<[hostname: string, filePath: ContentFilePath]>();
|