prettier/tests/optional-type-name/__snapshots__/jsfmt.spec.js.snap

20 lines
644 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`test.js 1`] = `
====================================options=====================================
parsers: ["flow"]
printWidth: 80
| printWidth
=====================================input======================================
type Foo = (any) => string
type Bar = { [string]: number }
=====================================output=====================================
type Foo = any => string;
type Bar = { [string]: number };
================================================================================
`;