bitburner-src/src/Netscript/ScriptIdentifier.ts

11 lines
268 B
TypeScript
Raw Normal View History

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