Update exportMaterial amount to number | string (#583)

This commit is contained in:
Kateract
2023-06-07 10:48:23 -07:00
committed by GitHub
parent c67f32cdc1
commit cc5247ac89
3 changed files with 4 additions and 4 deletions
@@ -15,7 +15,7 @@ exportMaterial(
targetDivision: string,
targetCity: CityName | `${CityName}`,
materialName: string,
amt: number,
amt: number | string,
): void;
```
@@ -28,7 +28,7 @@ exportMaterial(
| targetDivision | string | Target division |
| targetCity | [CityName](./bitburner.cityname.md) \| \`${[CityName](./bitburner.cityname.md)<!-- -->}\` | Target city |
| materialName | string | Name of the material |
| amt | number | Amount of material to export. |
| amt | number \| string | Amount of material to export. |
**Returns:**