prettier/tests/flow/recheck/e1.js

9 lines
98 B
JavaScript

// @flow
export type Action =
| { type: 'FOO' }
| { type: 'BAR' }
;
export const LIFE = 42;