prettier/tests/typescript_arrow/arrow_regression.js

12 lines
145 B
JavaScript
Raw Normal View History

2017-09-27 08:43:17 +03:00
const bar = (...varargs:any[]) => {
console.log(varargs);
};
const foo = (x:string):void => (
bar(
x,
() => {},
() => {}
)
);