@lodestar/beacon-node
Version:
A Typescript implementation of the beacon chain
19 lines • 545 B
TypeScript
import { ClientStatsProperty } from "./properties.js";
export type MetricValue = string | number;
export type RecordValue = string | number | boolean;
export type JsonRecord<T extends RecordValue> = {
key: string;
value: T;
};
export type ClientStats = Record<string, ClientStatsProperty<RecordValue>>;
export declare enum ProcessType {
BeaconNode = "beaconnode",
Validator = "validator",
System = "system"
}
export declare enum JsonType {
String = 0,
Number = 1,
Boolean = 2
}
//# sourceMappingURL=types.d.ts.map