bitburner-src/src/NetscriptFunctions/INetscriptHelper.ts
Olivier Gagnon 925bed4430 fix scp
2022-01-04 22:25:41 -05:00

13 lines
518 B
TypeScript

import { BaseServer } from "../Server/BaseServer";
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;
getServer(ip: any, fn: any): BaseServer;
checkSingularityAccess(func: string): void;
hack(hostname: string, manual: boolean): Promise<number>;
}