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