mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-18 07:18:38 +02:00
allbuild commit c8440ef2
This commit is contained in:
24
src/ScriptEditor/NetscriptDefinitions.d.ts
vendored
24
src/ScriptEditor/NetscriptDefinitions.d.ts
vendored
@@ -60,10 +60,6 @@ interface Player {
|
||||
money: number;
|
||||
city: string;
|
||||
location: string;
|
||||
hasWseAccount: boolean;
|
||||
hasTixApiAccess: boolean;
|
||||
has4SData: boolean;
|
||||
has4SDataTixApi: boolean;
|
||||
bitNodeN: number;
|
||||
totalPlaytime: number;
|
||||
playtimeSinceLastAug: number;
|
||||
@@ -1101,6 +1097,26 @@ export interface NetscriptPort {
|
||||
* @public
|
||||
*/
|
||||
export interface TIX {
|
||||
/**
|
||||
* Returns true if the player has access to a WSE Account
|
||||
* @remarks RAM cost: 0.05 GB
|
||||
*/
|
||||
hasWSEAccount(): boolean;
|
||||
/**
|
||||
* Returns true if the player has access to the TIX API
|
||||
* @remarks RAM cost: 0.05 GB
|
||||
*/
|
||||
hasTIXAPIAccess(): boolean;
|
||||
/**
|
||||
* Returns true if the player has access to the 4S Data
|
||||
* @remarks RAM cost: 0.05 GB
|
||||
*/
|
||||
has4SData(): boolean;
|
||||
/**
|
||||
* Returns true if the player has access to the 4SData TIX API
|
||||
* @remarks RAM cost: 0.05 GB
|
||||
*/
|
||||
has4SDataTIXAPI(): boolean;
|
||||
/**
|
||||
* Returns an array of the symbols of the tradable stocks
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user