flow2schema/tests/samples/maps.js

10 lines
113 B
JavaScript

type Type = {
[string]: number,
};
interface Interface {
[string]: number;
}
export {Type, Interface};