allbuild commit de644247

This commit is contained in:
Olivier Gagnon
2022-05-24 08:12:49 -04:00
parent de64424740
commit 8159dad5fa
70 changed files with 897 additions and 84 deletions

View File

@@ -4299,12 +4299,18 @@ interface Stanek {
acceptGift(): boolean;
}
/**
* @public
*/
export interface InfiltrationReward {
tradeRep: number;
sellCash: number;
SoARep: number;
}
/**
* @public
*/
export interface InfiltrationLocation {
location: any;
reward: InfiltrationReward;
@@ -4797,6 +4803,7 @@ export interface NS {
/**
* Suspends the script for n milliseconds. Doesn't block with concurrent calls.
* You should prefer 'sleep' over 'asleep' except when doing very complex UI work.
* @remarks
* RAM cost: 0 GB
*