mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-27 11:27:04 +02:00
rm some any
This commit is contained in:
Vendored
+9
-1
@@ -1 +1,9 @@
|
||||
export declare let Interpreter: any;
|
||||
export declare class Interpreter {
|
||||
constructor(code: string, opt_initFunc: (int: Interpreter, scope: Object) => void, lineOffset?: number);
|
||||
getProperty(obj: Value, name: Value): Value;
|
||||
hasProperty(obj: Value, name: Value): boolean;
|
||||
}
|
||||
|
||||
// Object and Value are 2 different things in the interpreter;
|
||||
export declare type Object = unknown;
|
||||
export declare type Value = unknown;
|
||||
|
||||
Reference in New Issue
Block a user