uom-types - v0.0.0-development
    Preparing search index...

    Type Alias MultiplyUnitSubvalues<A, B>

    MultiplyUnitSubvalues: ExcludeUnitZeroSubvalues<
        {
            [S in keyof A
            | keyof B]: SumExponents<GetExponent<A, S>, GetExponent<B, S>>
        },
    >

    Multiply each of the subvalues from a unit with the corresponding once from another unit.

    Type Parameters