bitburner-src/src/NetscriptFunctions/INetscriptHelper.ts

5 lines
167 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;
}