flow2schema/tests/samples/maps.js

10 lines
113 B
JavaScript
Raw Normal View History

2017-10-29 15:48:22 +03:00
type Type = {
[string]: number,
};
interface Interface {
[string]: number;
}
2017-11-09 12:10:21 +03:00
export {Type, Interface};