import { IUnitOfMeasureSystem } from "../engine/unit_of_measure_system"; /** Represents the unit of measure for speed. */ export interface IUnitOfMeasureKilometersPerHour extends IUnitOfMeasureSystem { /** Gets the singleton instance. */ value: IUnitOfMeasureKilometersPerHour; } //# sourceMappingURL=unit_of_measure_kilometers_per_hour.d.ts.map