TypeScript/tests/baselines/reference/numericIndexerConstraint2.js
2014-07-12 17:30:19 -07:00

18 lines
317 B
JavaScript

//// [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;