运行 ❯
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' }