mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-05-02 13:57:05 +02:00
rm any
This commit is contained in:
Vendored
+6
@@ -1,7 +1,13 @@
|
||||
export declare class Interpreter {
|
||||
constructor(code: string, opt_initFunc: (int: Interpreter, scope: Object) => void, lineOffset?: number);
|
||||
getProperty(obj: Value, name: Value): Value;
|
||||
setProperty(obj: Object, name: Value, value: Value): void;
|
||||
hasProperty(obj: Value, name: Value): boolean;
|
||||
pseudoToNative(obj: Value): unknown;
|
||||
nativeToPseudo(obj: Value): unknown;
|
||||
createAsyncFunction(f: (...args: unknown[]) => unknown): Object;
|
||||
createNativeFunction(f: (...args: unknown[]) => unknown): Object;
|
||||
step(): boolean;
|
||||
}
|
||||
|
||||
// Object and Value are 2 different things in the interpreter;
|
||||
|
||||
Reference in New Issue
Block a user