Interface IMeasurementValue

interface IMeasurementValue {
    unit?: string;
    value: number;
    [key: string]: any;
}

Indexable

  • [key: string]: any

Properties

Properties

unit?: string
value: number