mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-11 18:23:54 +01:00
Merge pull request #3292 from danielyxie/dev
Fix more unknown type errros
This commit is contained in:
commit
d3a87ba0be
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -899,9 +899,7 @@ export function NetscriptFunctions(workerScript: WorkerScript): NS {
|
|||||||
|
|
||||||
return runningScriptObj.logs.slice();
|
return runningScriptObj.logs.slice();
|
||||||
},
|
},
|
||||||
tail: function (_fn: unknown, _hostname: unknown = workerScript.hostname, ...scriptArgs: any[]): void {
|
tail: function (fn: any, hostname: any = workerScript.hostname, ...scriptArgs: any[]): void {
|
||||||
const fn = helper.string("tail", "fn", _fn);
|
|
||||||
const hostname = helper.string("tail", "hostname", _hostname);
|
|
||||||
updateDynamicRam("tail", getRamCost(Player, "tail"));
|
updateDynamicRam("tail", getRamCost(Player, "tail"));
|
||||||
let runningScriptObj;
|
let runningScriptObj;
|
||||||
if (arguments.length === 0) {
|
if (arguments.length === 0) {
|
||||||
@ -2064,9 +2062,8 @@ export function NetscriptFunctions(workerScript: WorkerScript): NS {
|
|||||||
const iport = helper.getValidPort("getPortHandle", port);
|
const iport = helper.getValidPort("getPortHandle", port);
|
||||||
return iport;
|
return iport;
|
||||||
},
|
},
|
||||||
rm: function (_fn: unknown, _hostname: unknown): boolean {
|
rm: function (_fn: unknown, hostname: any): boolean {
|
||||||
const fn = helper.string("rm", "fn", _fn);
|
const fn = helper.string("rm", "fn", _fn);
|
||||||
let hostname = helper.string("rm", "hostname", _hostname);
|
|
||||||
updateDynamicRam("rm", getRamCost(Player, "rm"));
|
updateDynamicRam("rm", getRamCost(Player, "rm"));
|
||||||
|
|
||||||
if (hostname == null || hostname === "") {
|
if (hostname == null || hostname === "") {
|
||||||
|
Loading…
Reference in New Issue
Block a user