UNPKG

@lodestar/beacon-node

Version:

A Typescript implementation of the beacon chain

14 lines 600 B
export type MonitoringOptions = { /** Remote endpoint URL where client stats are sent */ endpoint?: string; /** Interval in milliseconds between sending client stats */ interval?: number; /** Initial delay in milliseconds before client stats are sent */ initialDelay?: number; /** Timeout in milliseconds for sending client stats */ requestTimeout?: number; /** Enable collecting system stats */ collectSystemStats?: boolean; }; export declare const defaultMonitoringOptions: Required<Omit<MonitoringOptions, "endpoint">>; //# sourceMappingURL=options.d.ts.map