bitburner-src/src/Netscript/ScriptIdentifier.ts
2023-01-08 02:36:55 -05:00

11 lines
268 B
TypeScript

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