深度展开一些未计算的类型,与 Expand 的区别是,这个是递归计算类型的
参考资料 *
type t1 = {a: number} & {b: string}Expand<t1> // {a: number, b: string} Copy
type t1 = {a: number} & {b: string}Expand<t1> // {a: number, b: string}
Generated using TypeDoc
深度展开一些未计算的类型,与 Expand 的区别是,这个是递归计算类型的