We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
TypeChecker | undefined
1 parent 35efe4a commit 351dcbfCopy full SHA for 351dcbf
src/services/types.ts
@@ -32,7 +32,7 @@ namespace ts {
32
getEscapedName(): __String;
33
getName(): string;
34
getDeclarations(): Declaration[] | undefined;
35
- getDocumentationComment(typeChecker?: TypeChecker): SymbolDisplayPart[];
+ getDocumentationComment(typeChecker: TypeChecker | undefined): SymbolDisplayPart[];
36
getJsDocTags(): JSDocTagInfo[];
37
}
38
@@ -55,7 +55,7 @@ namespace ts {
55
getTypeParameters(): TypeParameter[] | undefined;
56
getParameters(): Symbol[];
57
getReturnType(): Type;
58
59
60
61
0 commit comments