mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-20 00:04:22 +02:00
CODEBASE: Expand lint rules, and Aliases are stored as maps (#501)
This commit is contained in:
@@ -15,11 +15,11 @@ export type InternalAPI<API> = {
|
||||
[key in keyof API]: API[key] extends APIFn ? InternalFn<API[key]> : InternalAPI<API[key]>;
|
||||
};
|
||||
|
||||
export type NetscriptContext = {
|
||||
export interface NetscriptContext {
|
||||
workerScript: WorkerScript;
|
||||
function: string;
|
||||
functionPath: string;
|
||||
};
|
||||
}
|
||||
|
||||
class NSProxyHandler<API extends GenericAPI<API>> {
|
||||
ns: API;
|
||||
|
||||
Reference in New Issue
Block a user