prettier/tests/flow/get-def2/lib/__snapshots__/jsfmt.spec.js.snap

21 lines
624 B
Plaintext
Raw Normal View History

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`jsx.js 1`] = `
declare var $React: $Exports<'react'>; // fake import
type $JSXIntrinsic<T> = Class<$React.Component<void,T,mixed>>;
type $JSXIntrinsics = {
div: $JSXIntrinsic<{id: string}>,
span: $JSXIntrinsic<{id: string, class: string}>,
};
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
declare var $React: $Exports<"react">; // fake import
2016-12-27 21:29:31 +03:00
type $JSXIntrinsic<T> = Class<$React.Component<void, T, mixed>>;
2016-12-27 21:29:31 +03:00
type $JSXIntrinsics = {
div: $JSXIntrinsic<{ id: string }>,
span: $JSXIntrinsic<{ id: string, class: string }>
2017-01-11 18:16:38 +03:00
};
`;