diff --git a/dist/bitburner.d.ts b/dist/bitburner.d.ts index 483ebf0d4..2819851e0 100644 --- a/dist/bitburner.d.ts +++ b/dist/bitburner.d.ts @@ -2124,6 +2124,27 @@ export declare interface NodeStats { /** * Collection of all functions passed to scripts * @public + * @remarks + * Basic ns1 usage example: + * ```ts + * // Basic ns functions can be used directly + * methodName(); + * // Some related functions are gathered within a common namespace + * property.methodName(); + * ``` + * {@link https://bitburner.readthedocs.io/en/latest/netscript/netscript1.html| ns1 in-game docs} + *