prettier/tests/flow_comments/arrow.js

8 lines
176 B
JavaScript
Raw Normal View History

// Error
const beep = (data/*: Object*/) => {}
// OK
const beep = (data/*: Object*/, secondData/*: Object*/) => {}
const run = (cmd /*: string */) /*: Promise<void> */ => {}