prettier/tests/flow_union/__snapshots__/jsfmt.spec.js.snap

39 lines
721 B
Plaintext
Raw Normal View History

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`union.js 1`] = `
interface RelayProps {
articles: Array<{
__id: string,
} | null> | null | void | 1,
}
interface RelayProps {
articles: Array<{
__id: string,
} | null> | null | void,
}
export function aPrettyLongFunction(aRatherLongParamName: string | null): string {}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
interface RelayProps {
articles:
| Array<{
__id: string
} | null>
| null
| void
| 1
}
interface RelayProps {
articles: Array<{
__id: string
} | null> | null | void
}
export function aPrettyLongFunction(
aRatherLongParamName: string | null
): string {}
`;