prettier/tests/flow_union/union.js

12 lines
185 B
JavaScript

interface RelayProps {
articles: Array<{
__id: string,
} | null> | null | void | 1,
}
interface RelayProps {
articles: Array<{
__id: string,
} | null> | null | void,
}