Skip to content

Commit 4b8a67f

Browse files
committed
update baseline
1 parent 9707a11 commit 4b8a67f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/baselines/reference/api/tsserverlibrary.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8518,7 +8518,7 @@ declare namespace ts {
85188518
*
85198519
* For binding patterns, parameter tags are matched by position.
85208520
*/
8521-
function getJSDocParameterTags(param: ParameterDeclaration): readonly JSDocParameterTag[];
8521+
function getJSDocParameterTags(node: ParameterDeclaration | BindingElement): readonly JSDocParameterTag[];
85228522
/**
85238523
* Gets the JSDoc type parameter tags for the node if present.
85248524
*

tests/baselines/reference/api/typescript.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4575,7 +4575,7 @@ declare namespace ts {
45754575
*
45764576
* For binding patterns, parameter tags are matched by position.
45774577
*/
4578-
function getJSDocParameterTags(param: ParameterDeclaration): readonly JSDocParameterTag[];
4578+
function getJSDocParameterTags(node: ParameterDeclaration | BindingElement): readonly JSDocParameterTag[];
45794579
/**
45804580
* Gets the JSDoc type parameter tags for the node if present.
45814581
*

0 commit comments

Comments
 (0)