export const narrowType = (t: Type | BigType) =>
    t[0] === "i"
        ? narrowInt(<IntType>t)
        : t[0] === "u"
        ? narrowUint(<UintType>t)