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

13 lines
415 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`interface_types.js 1`] = `
type A = interface { p: string };
type B = interface extends X { p: string };
type C = interface extends X, Y { p: string };
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
type A = interface { p: string };
type B = interface extends X { p: string };
type C = interface extends X, Y { p: string };
`;