8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
interface Foo { bar?: { baz?: string; } } declare let foo: Foo | undefined; [|foo && foo.bar && foo.bar.baz|]
It should be possible to convert that chain into the following:
interface Foo { bar?: { baz?: string; } } declare let foo: Foo | undefined; foo?.bar?.baz;