mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-21 16:52:55 +02:00
prettify, sorry for the big ass commit
This commit is contained in:
Vendored
+8
-4
@@ -1,10 +1,14 @@
|
||||
interface IReviverValue {
|
||||
ctor: string;
|
||||
data: any;
|
||||
ctor: string;
|
||||
data: any;
|
||||
}
|
||||
export function Generic_fromJSON<T>(ctor: new () => T, data: any): T;
|
||||
export function Generic_toJSON(ctorName: string, obj: any, keys?: string[]): string;
|
||||
export function Generic_toJSON(
|
||||
ctorName: string,
|
||||
obj: any,
|
||||
keys?: string[],
|
||||
): string;
|
||||
export function Reviver(key, value: IReviverValue);
|
||||
export namespace Reviver {
|
||||
export let constructors: any;
|
||||
export let constructors: any;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user