TypeScript/tests/baselines/reference/nestedIndexer.js

13 lines
156 B
JavaScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [nestedIndexer.ts]
function then(x) {
var match: { [index: number]: string; }
}
//// [nestedIndexer.js]
function then(x) {
var match;
}