bitburner-src/src/NetscriptFunctions/INetscriptHelper.ts

14 lines
566 B
TypeScript
Raw Normal View History

2021-10-14 09:22:02 +02:00
import { BaseServer } from "../Server/BaseServer";
import { Faction } from "../Faction/Faction";
2021-10-05 03:06:55 +02:00
export interface INetscriptHelper {
updateDynamicRam(functionName: string, ram: number): void;
makeRuntimeErrorMsg(functionName: string, message: string): void;
string(funcName: string, argName: string, v: any): string;
number(funcName: string, argName: string, v: any): number;
boolean(v: any): boolean;
2021-10-14 09:22:02 +02:00
getServer(ip: any, fn: any): BaseServer;
checkSingularityAccess(func: string, n: number): void;
getFaction(func: string, name: string): Faction;
2021-10-05 03:06:55 +02:00
}