pandora-metrics
Version:
## Overview
15 lines (14 loc) • 476 B
TypeScript
import { ActuatorService, IEndPoint } from '../domain';
export declare class EndPointService implements ActuatorService {
private endPointIns;
private endPointInsMap;
private logger;
start(): void;
register(endPoint: IEndPoint): void;
getEndPoint(group: any): IEndPoint;
getEndPointNames(): Array<string>;
getEndPoints(): Map<string, IEndPoint>;
setEndPointIns(endPointIns: any): void;
setLogger(logger: any): void;
stop(): void;
}