This commit is contained in:
Olivier Gagnon
2022-01-18 14:02:12 -05:00
parent c5089ab82a
commit 05cbc25a8f
36 changed files with 355 additions and 178 deletions

View File

@@ -6073,6 +6073,20 @@ export interface NS extends Singularity {
* ```
*/
flags(schema: [string, string | number | boolean | string[]][]): any;
/**
* Share your computer with your factions. Increasing your rep gain for a short duration.
* @remarks
* RAM cost: 2.4 GB
*/
share(): Promise<void>;
/**
* Calculate your share power.
* @remarks
* RAM cost: 0.2 GB
*/
getSharePower(): number;
}
/**