作者:xie392地址:https://v.douyin.com/ieQGMWmG/更新时间:2024-12-21
1type U = { a: number; b: number } | { a: number; c: number }2type I = { a: number; b: number } & { a: number; c: number }34const u: U = {5a: 1,6b: 2,7c: 48}910// u.c // Error: 类型“{ a: number; b: number; }”上不存在属性“c”。1112const i: I = {13a: 1,14b: 2,15c: 416}1718// i.c // 4