good.ts 142 B

12345678910
  1. interface Bar2 {
  2. baz: string;
  3. }
  4. function foo2(bar: Bar2 | null) {
  5. if (bar === null) {
  6. return '';
  7. }
  8. return bar.baz;
  9. }