DEBSOURCES
Skip Quicknav
sources / node-typescript / 3.3.3333-1 / 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" };