TypeScript/tests/baselines/reference/memberAccessOnConstructorType.types

11 lines
440 B
Text

=== tests/cases/compiler/memberAccessOnConstructorType.ts ===
var f: new () => void;
>f : new () => void, Symbol(f,Decl(memberAccessOnConstructorType.ts,0,3))
f.arguments == 0;
>f.arguments == 0 : boolean
>f.arguments : any, Symbol(Function.arguments,Decl(lib.d.ts,252,19))
>f : new () => void, Symbol(f,Decl(memberAccessOnConstructorType.ts,0,3))
>arguments : any, Symbol(Function.arguments,Decl(lib.d.ts,252,19))
>0 : number