prettier/tests/flow/callable/optional.js

11 lines
97 B
JavaScript

type F = {
(x: string): number;
p?: string;
}
function f(x) {
return x.length;
}
(f: F);