mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 09:43:54 +01:00
0b0a3d366c
- infiltration: added colours, updated spacing and fixed alignment - terminal prompt: added colour for the previous lines as well - Active Scripts and Hacknet Nodes: money values have a gold colour now; minor spacing updates - minor code refactoring
11 lines
336 B
TypeScript
11 lines
336 B
TypeScript
interface IReviverValue {
|
|
ctor: string;
|
|
data: object
|
|
}
|
|
export function Generic_fromJSON<T>(ctor: new () => T, data: any): T;
|
|
export function Generic_toJSON(ctorName: string, obj: object, keys?: string[]): string;
|
|
export function Reviver(key, value: IReviverValue);
|
|
export namespace Reviver {
|
|
export var constructors: any;
|
|
}
|