simple-prom/interfaces/IMetric.ts

8 lines
133 B
TypeScript

export default interface IMetric {
get helpText(): string,
set helpText(value:string)
get Value(): number,
toString(): string
}