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
@@ -1,47 +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; [getHacknetMultipliers](./bitburner.ns.gethacknetmultipliers.md)
## NS.getHacknetMultipliers() method
Get hacknet related multipliers.
<b>Signature:</b>
```typescript
getHacknetMultipliers(): HacknetMultipliers;
```
<b>Returns:</b>
[HacknetMultipliers](./bitburner.hacknetmultipliers.md)
Object containing the Players hacknet related multipliers.
## Remarks
RAM cost: 4 GB
Returns an object containing the Players hacknet related multipliers. These multipliers are returned in fractional forms, not percentages (e.g. 1.5 instead of 150%).
## Example 1
```ts
// NS1:
// Example of how this can be used:
var mults = getHacknetMultipliers();
print(mults.production);
print(mults.purchaseCost);
```
## Example 2
```ts
// NS2:
// Example of how this can be used:
const {production, purchaseCost} = ns.getHacknetMultipliers();
print(production);
print(purchaseCost);
```