mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-18 07:18:38 +02:00
yet another any
This commit is contained in:
4
src/ScriptEditor/NetscriptDefinitions.d.ts
vendored
4
src/ScriptEditor/NetscriptDefinitions.d.ts
vendored
@@ -85,7 +85,7 @@ export interface Multipliers {
|
||||
*/
|
||||
export interface RunningScript {
|
||||
/** Arguments the script was called with */
|
||||
args: string[];
|
||||
args: (string | number | boolean)[];
|
||||
/** Filename of the script */
|
||||
filename: string;
|
||||
/**
|
||||
@@ -321,7 +321,7 @@ export interface ProcessInfo {
|
||||
/** Number of threads script is running with */
|
||||
threads: number;
|
||||
/** Script's arguments */
|
||||
args: string[];
|
||||
args: (string | number | boolean)[];
|
||||
/** Process ID */
|
||||
pid: number;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user