prettier/tests/flow_intersection/__snapshots__/jsfmt.spec.js.snap

21 lines
484 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`intersection.js 1`] = `
type State = {
sharedProperty: any;
} & (
| { discriminant: "FOO"; foo: any }
| { discriminant: "BAR"; bar: any }
| { discriminant: "BAZ"; baz: any }
);
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
type State = {
sharedProperty: any
} & (
| { discriminant: "FOO", foo: any }
| { discriminant: "BAR", bar: any }
| { discriminant: "BAZ", baz: any }
);
`;