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

20 lines
794 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`interface_types.js 1`] = `
====================================options=====================================
parsers: ["flow", "babel"]
printWidth: 80
| printWidth
=====================================input======================================
type A = interface { p: string };
type B = interface extends X { p: string };
type C = interface extends X, Y { p: string };
=====================================output=====================================
type A = interface { p: string };
type B = interface extends X { p: string };
type C = interface extends X, Y { p: string };
================================================================================
`;