declare interface IMix extends IPart { // Properties. /** A map from mix factor to last-known place value multiplier, (the value of RID unit for the given factor) where mix is viewed as a fixed-length mixed-radix string. * * Used to speed up computation. */ readonly placeValues: Map } declare type IMixFactor = IPart declare type IMixAny = IMix declare const thisMix: IMixAny declare const FACTORS: IMixFactor[]