simple-prom/interfaces/IMetric.ts

12 lines
274 B
TypeScript

// Copyright (c) Catgirl Enterprises - Licensed under MIT
// Check LICENSE in repository root for more information.
export default interface IMetric {
setHelpText(value:string) : void,
get name(): string,
Value: number,
add(value:number) : void,
toString(): string
}