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