export const narrowInt = (t: IntType | "i64") =>
    t === "i64" ? "i32" : t === "i32" ? "i16" : t === "i16" ? "i8" : "i8";