/** * @packageDocumentation * @module API-Metrics */ import LuxCore from "../../lux"; import { RESTAPI } from "../../common/restapi"; import { AxiosRequestConfig } from "axios"; /** * Class for interacting with a node API that is using the node's MetricsApi. * * @category RPCAPIs * * @remarks This extends the [[RESTAPI]] class. This class should not be directly called. Instead, use the [[Lux.addAPI]] function to register this interface with Lux. */ export declare class MetricsAPI extends RESTAPI { protected axConf: () => AxiosRequestConfig; /** * * @returns Promise for an object containing the metrics response */ getMetrics: () => Promise; /** * This class should not be instantiated directly. Instead use the [[Lux.addAPI]] method. * * @param core A reference to the Lux class * @param baseURL Defaults to the string "/ext/metrics" as the path to rpc's baseurl */ constructor(core: LuxCore, baseURL?: string); } //# sourceMappingURL=api.d.ts.map