TypeScript/tests/baselines/reference/numericIndexerConstraint2.js
2015-02-06 18:45:09 -08:00

17 lines
312 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;