bitburner-src/src/Netscript/ScriptIdentifier.ts

10 lines
269 B
TypeScript
Raw Normal View History

2022-08-10 00:08:04 +02:00
import { ScriptArg } from "./ScriptArg";
export type ScriptIdentifier = //This was previously in INetscriptHelper.ts, may move to its own file or a generic types file.
| number
| {
scriptname: string;
hostname: string;
args: ScriptArg[];
};