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