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
-53
View File
@@ -1,53 +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; [getServerRam](./bitburner.ns.getserverram.md)
## NS.getServerRam() method
> Warning: This API is now obsolete.
>
> use getServerMaxRam / getServerUsedRam
>
<b>Signature:</b>
```typescript
getServerRam(host: string): [number, number];
```
## Parameters
| Parameter | Type | Description |
| --- | --- | --- |
| host | string | Host of target server. |
<b>Returns:</b>
\[number, number\]
Array with total and used memory on the specified server, in GB.
## Remarks
RAM cost: 0.1 GB
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).
## Example 1
```ts
// NS1:
var serverRam = getServerRam("helios");
var totalRam = serverRam[0];
var ramUsed = serverRam[1];
```
## Example 2
```ts
// NS2:
const [totalRam, ramUsed] = ns.getServerRam("helios");
```