flow2schema/tests/samples/maybe/source.js

16 lines
160 B
JavaScript
Raw Normal View History

2017-11-28 16:41:48 +03:00
type X = {
x: ?string,
2017-12-03 15:46:00 +03:00
xx: ?(?string),
2017-11-28 16:41:48 +03:00
};
interface Y {
2017-12-03 15:46:00 +03:00
y: ?string[];
yy: ?(?(?string));
2017-11-28 16:41:48 +03:00
}
class Z {
2017-12-03 15:46:00 +03:00
z: (?string)[];
2017-11-28 16:41:48 +03:00
}
export {X, Y, Z};