simple-prom/interfaces/IMetric.ts

12 lines
274 B
TypeScript
Raw Normal View History

2024-07-02 23:51:53 +01:00
// 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
}