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.
getTypeParameters()
1 parent 87d804e commit c2f4b20Copy full SHA for c2f4b20
src/services/services.ts
@@ -412,7 +412,7 @@ namespace ts {
412
getDeclaration(): SignatureDeclaration {
413
return this.declaration;
414
}
415
- getTypeParameters(): Type[] {
+ getTypeParameters(): TypeParameter[] {
416
return this.typeParameters;
417
418
getParameters(): Symbol[] {
src/services/types.ts
@@ -39,7 +39,7 @@ namespace ts {
39
40
export interface Signature {
41
getDeclaration(): SignatureDeclaration;
42
- getTypeParameters(): Type[];
+ getTypeParameters(): TypeParameter[];
43
getParameters(): Symbol[];
44
getReturnType(): Type;
45
getDocumentationComment(): SymbolDisplayPart[];
0 commit comments