UNPKG

@vidal-community/vidal-web-components

Version:

Vidal Web Components

10 lines 218 B
export class Dose { constructor(value, unit) { this.unit = unit; this.value = value; } toString() { return this.value + ' ' + this.unit.name; } } //# sourceMappingURL=dose.js.map