simple-prom/interfaces/IMetric.ts

8 lines
133 B
TypeScript
Raw Normal View History

2024-07-02 10:20:16 +01:00
export default interface IMetric {
2024-07-02 16:46:38 +01:00
get helpText(): string,
set helpText(value:string)
get Value(): number,
toString(): string
2024-07-02 10:20:16 +01:00
}