Add documentation for ns.pid

This commit is contained in:
omuretsu
2022-12-13 09:08:23 -05:00
parent 52034ccedc
commit 1dec0d00bd
6 changed files with 19 additions and 16 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
import { NS } from "../ScriptEditor/NetscriptDefinitions";
import { NSFull } from "../NetscriptFunctions";
import { ExternalAPI } from "./APIWrapper";
/**
@@ -14,5 +14,5 @@ export class Environment {
runningFn = "";
/** Environment variables (currently only Netscript functions) */
vars: ExternalAPI<NS> | null = null;
vars: ExternalAPI<NSFull> | null = null;
}