import { IBaseConversionStrategy } from "../../unit_conversion/strategies/base_conversion_strategy"; import { IUnitOfMeasure } from "../../engine/unit_of_measure"; /** Implementation of which converts electricity from kW to W. */ export interface IKilowattsToWattsConversionStrategy extends IBaseConversionStrategy { /** * @inheritdoc */ unitOfMeasure: IUnitOfMeasure; } //# sourceMappingURL=kilowatts_to_watts_conversion_strategy.d.ts.map