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

27 lines
400 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`flow_object_comment.js 1`] = `
export default (
{
foo,
bar
}: {
// comment
foo?: Object,
// comment 2
bar?: Object,
},
) => {}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
export default ({
foo,
bar
}: {
// comment
foo?: Object,
// comment 2
bar?: Object
}) => {};
`;