Preview:```ts
function f<Id extends string = never>(options: {
id?: Id | undefined | null
}) {
return options
}
const a = f({id: "_id"})
// ^?
const b = f({id: null})
// ^?
const c = f({id: undefined})
// ^?```
You can choose specific lines to embed by selecting them before copying the link.