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

13 lines
274 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`test.js 1`] = `
type Foo = (any) => string
type Bar = { [string]: number }
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
type Foo = any => string;
type Bar = { [string]: number };
`;