mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-18 23:38:35 +02:00
5 lines
167 B
TypeScript
5 lines
167 B
TypeScript
export interface INetscriptHelper {
|
|
updateDynamicRam(functionName: string, ram: number): void;
|
|
makeRuntimeErrorMsg(functionName: string, message: string): void;
|
|
}
|