work on doc

This commit is contained in:
Olivier Gagnon
2021-10-30 12:34:14 -04:00
parent f99c3fd0cd
commit 43fc5dfd48
589 changed files with 63720 additions and 1168 deletions
+39
View File
@@ -0,0 +1,39 @@
<!-- 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; [getServerRam](./bitburner.ns.getserverram.md)
## NS.getServerRam() method
Returns an array with two elements that gives information about a servers memory (RAM). The first element in the array is the amount of RAM that the server has total (in GB). The second element in the array is the amount of RAM that is currently being used on the server (in GB).
<b>Signature:</b>
```typescript
getServerRam(host: Host): [number, number];
```
## Parameters
| Parameter | Type | Description |
| --- | --- | --- |
| host | [Host](./bitburner.host.md) | Host or IP of target server. |
<b>Returns:</b>
\[number, number\]
Array with total and used memory on the specified server.
## Remarks
0.1 GB
## Example
```js
res = getServerRam("helios");
totalRam = res[0];
ramUsed = res[1];
```