1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
//// [tests/cases/compiler/declarationFilesWithTypeReferences3.ts] ////
=== /a/node_modules/@types/node/index.d.ts ===
interface Error2 {
>Error2 : Symbol(Error2, Decl(index.d.ts, 0, 0))
stack2: string;
>stack2 : Symbol(Error2.stack2, Decl(index.d.ts, 0, 18))
}
=== /a/app.ts ===
/// <reference types="node"/>
function foo(): Error2 {
>foo : Symbol(foo, Decl(app.ts, 0, 0))
>Error2 : Symbol(Error2, Decl(index.d.ts, 0, 0))
return undefined;
>undefined : Symbol(undefined)
}
|