(property) User.occupation: string不能将类型“string”分配给类型“never”。ts(2322) 难道最后一个应该是被识别为了 PowerUser 类型,那么为什么这个类型的 role 和 occupation 都是 never 类型呢? interface User { type: 'user'; name: string; age: number; occupation: string; } interface Admin { type...
(property) User.occupation: string不能将类型“string”分配给类型“never”。ts(2322) 难道最后一个应该是被识别为了 PowerUser 类型,那么为什么这个类型的 role 和 occupation 都是 never 类型呢? interface User { type: 'user'; name: string; age: number; occupation: string; } interface Admin { type...
(property) User.occupation: string不能将类型“string”分配给类型“never”。ts(2322) 难道最后一个应该是被识别为了 PowerUser 类型,那么为什么这个类型的 role 和 occupation 都是 never 类型呢? interface User { type: 'user'; name: string; age: number; occupation: string; } interface Admin { type...