export const widenType = (t: Type | BigType) =>
    t[0] === "i"
        ? widenInt(<IntType>t)
        : t[0] === "u"
        ? widenUint(<UintType>t)