运行 ❯
了解您的
自有 Node
服务器
×
更改方向
更改主题、黑暗/明亮
转到 Spaces
interface Person { name: string; age: number; location?: string; } const bob: Omit<Person, 'age' | 'location'> = { name: 'Bob' // `Omit` has removed age and location from the type and they can't be defined here }; console.log(bob);
{ name: 'Bob' }