TypeScript/tests/baselines/reference/numericIndexerConstraint2.js
2015-12-08 17:51:10 -08:00

17 lines
312 B
TypeScript

//// [numericIndexerConstraint2.ts]
class Foo { foo() { } }
var x: { [index: string]: Foo; };
var a: { one: number; };
x = a;
//// [numericIndexerConstraint2.js]
var Foo = (function () {
function Foo() {
}
Foo.prototype.foo = function () { };
return Foo;
}());
var x;
var a;
x = a;