prettier/tests/flow/recheck/tmp1f/__snapshots__/jsfmt.spec.js.snap

27 lines
440 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`f1.js 1`] = `
// @flow
type T = { x: number };
type S = { x: string };
declare var a: T;
declare var b: S;
declare var c: S;
module.exports = { a, b, c };
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// @flow
type T = { x: number };
type S = { x: string };
declare var a: T;
declare var b: S;
declare var c: S;
module.exports = { a, b, c };
`;