标签: typescript typescript-typings
如何执行以下类型
length
我希望错误type T = { a: boolean; b: boolean } 的类型未定义
type T = { a: boolean; b: boolean }
b
我预期无法从const b: T = { a: false, b: undefined } 删除错误b
const b: T = { a: false, b: undefined }
T