mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2025-01-27 16:31:31 +01:00
11 lines
269 B
TypeScript
11 lines
269 B
TypeScript
import type { ScriptArg } from "@nsdefs";
|
|
|
|
//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[];
|
|
};
|