jsfmt.spec.js.snap 484 B

123456789101112131415161718192021
  1. // Jest Snapshot v1, https://goo.gl/fbAQLP
  2. exports[`intersection.js 1`] = `
  3. type State = {
  4. sharedProperty: any;
  5. } & (
  6. | { discriminant: "FOO"; foo: any }
  7. | { discriminant: "BAR"; bar: any }
  8. | { discriminant: "BAZ"; baz: any }
  9. );
  10. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  11. type State = {
  12. sharedProperty: any
  13. } & (
  14. | { discriminant: "FOO", foo: any }
  15. | { discriminant: "BAR", bar: any }
  16. | { discriminant: "BAZ", baz: any }
  17. );
  18. `;