DEBSOURCES
Skip Quicknav
sources / node-typescript / 2.1.5-1~bpo8%2B1 / tests / cases / compiler / typeofInterface.ts
123456789
var I: { a: string}; interface I { I: number; foo: typeof I; } var k: I; var j: typeof k.foo = { a: "hello" };