bitburner-src/src/Netscript/ScriptIdentifier.ts
2022-08-09 18:09:26 -04:00

10 lines
269 B
TypeScript

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[];
};