Commit e34875b Andy Hanson
committed
1 parent b099237 commit e34875b Copy full SHA for e34875b
File tree 1 file changed +3
-1
lines changed
tests/baselines/reference/api
1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -6705,6 +6705,8 @@ declare namespace ts {
6705
6705
function isNamedDeclaration(node: Node): node is NamedDeclaration & {
6706
6706
name: DeclarationName;
6707
6707
};
6708
+ /** @internal */
6709
+ function getNonAssignedNameOfDeclaration(declaration: Declaration | Expression): DeclarationName | undefined;
6708
6710
function getNameOfDeclaration(declaration: Declaration | Expression): DeclarationName | undefined;
6709
6711
/**
6710
6712
* Gets the JSDoc parameter tags for the node if present.
@@ -9848,7 +9850,7 @@ declare namespace ts {
9848
9850
version: string;
9849
9851
scriptSnapshot: IScriptSnapshot | undefined;
9850
9852
nameTable: UnderscoreEscapedMap<number> | undefined;
9851
- getNamedDeclarations(): Map<Declaration[] >;
9853
+ getNamedDeclarations(): Map<ReadonlyArray< Declaration> >;
9852
9854
getLineAndCharacterOfPosition(pos: number): LineAndCharacter;
9853
9855
getLineEndOfPosition(pos: number): number;
9854
9856
getLineStarts(): ReadonlyArray<number>;
You can’t perform that action at this time.
0 commit comments