TypeScript/tests/cases/compiler/constructorAsType.ts

5 lines
137 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
var Person:new () => {name: string;} = function () {return {name:"joe"};};
var Person2:{new() : {name:string;};};
Person = Person2;