Remove markdown from git tracking (#139)

* Will attempt to add as build artifacts using workflow.
This commit is contained in:
Snarling
2022-10-21 10:46:21 -04:00
committed by GitHub
parent f5c8bec139
commit bbb6e3f309
1050 changed files with 1 additions and 23223 deletions

View File

@@ -1,22 +0,0 @@
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home](./index.md) &gt; [bitburner](./bitburner.md) &gt; [NS](./bitburner.ns.md) &gt; [args](./bitburner.ns.args.md)
## NS.args property
Arguments passed into the script.
<b>Signature:</b>
```typescript
readonly args: (string | number | boolean)[];
```
## Remarks
RAM cost: 0 GB
Arguments passed into a script can be accessed using a normal array using the \[\] operator (args\[0\], args\[1\], etc…).
It is also possible to get the number of arguments that was passed into a script using: 'args.length' WARNING: Do not try to modify the args array. This will break the game.