bitburner-src/src/NetscriptFunctions/INetscriptHelper.ts

8 lines
317 B
TypeScript
Raw Normal View History

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-05 03:06:55 +02:00
}