flow2schema/tests/samples/keys/source.js

9 lines
78 B
JavaScript

type X = {
a: string,
b: boolean,
};
type Y = $Keys<X>;
export {Y};