Skip to content

Commit e34875b

Browse files
author
Andy Hanson
committed
Update API (#24966)
1 parent b099237 commit e34875b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

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

+3-1
Original file line numberDiff line numberDiff line change
@@ -6705,6 +6705,8 @@ declare namespace ts {
67056705
function isNamedDeclaration(node: Node): node is NamedDeclaration & {
67066706
name: DeclarationName;
67076707
};
6708+
/** @internal */
6709+
function getNonAssignedNameOfDeclaration(declaration: Declaration | Expression): DeclarationName | undefined;
67086710
function getNameOfDeclaration(declaration: Declaration | Expression): DeclarationName | undefined;
67096711
/**
67106712
* Gets the JSDoc parameter tags for the node if present.
@@ -9848,7 +9850,7 @@ declare namespace ts {
98489850
version: string;
98499851
scriptSnapshot: IScriptSnapshot | undefined;
98509852
nameTable: UnderscoreEscapedMap<number> | undefined;
9851-
getNamedDeclarations(): Map<Declaration[]>;
9853+
getNamedDeclarations(): Map<ReadonlyArray<Declaration>>;
98529854
getLineAndCharacterOfPosition(pos: number): LineAndCharacter;
98539855
getLineEndOfPosition(pos: number): number;
98549856
getLineStarts(): ReadonlyArray<number>;

0 commit comments

Comments
 (0)