Preview:```ts
interface Foo<T> {
notUndefinedOrNull?: string[]
bar: T
}
function assignBadValues<T>(foo: Foo<T>) {
foo.notUndefinedOrNull = foo.notUndefinedOrNull?.map(
s => {
// ^ I would have expected an error since it could = undefined
...```
You can choose specific lines to embed by selecting them before copying the link.