prettier/tests/flow_generic/union.js

5 lines
118 B
JavaScript
Raw Normal View History

2017-05-05 05:06:30 +03:00
type Foo = Promise<
{ ok: true, bar: string, baz: SomeOtherLongType } |
{ ok: false, bar: SomeOtherLongType }
>;