File

src/ng-xform/models/measure.ts

Index

Properties

Constructor

constructor(value: number, unit: string)
Parameters :
Name Type Optional Description
value number
unit string

Properties

unit
unit: string
Type : string
value
value: number
Type : number
export class Measure {
  value: number;
  unit: string;

  constructor(value: number, unit: string) {
    this.unit = unit;
    this.value = value;
  }
}

results matching ""

    No results matching ""