Run ❯
Get your
own Node
server
❯
Run Code
Ctrl+Alt+R
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
interface Person { name: string; age: number; location?: string; } const bob: Omit
= { name: 'Bob' // `Omit` has removed age and location from the type and they can't be defined here }; console.log(bob);
{ name: 'Bob' }