prettier/tests/flow/reflection/__snapshots__/jsfmt.spec.js.snap

21 lines
412 B
Plaintext
Raw Normal View History

exports[`test type.js 1`] = `
"declare var a: number;
2016-12-30 19:56:42 +03:00
var b: typeof a = \"...\";
var c: typeof a = \"...\";
type T = number;
2016-12-30 19:56:42 +03:00
var x:T = \"...\";
// what about recursive unions?
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
declare var a: number;
2016-12-30 19:56:42 +03:00
var b: typeof a = \"...\";
var c: typeof a = \"...\";
type T = number;
2016-12-30 19:56:42 +03:00
var x: T = \"...\";
2017-01-11 18:16:38 +03:00
// what about recursive unions?
"
`;