@@ -3436,13 +3436,13 @@ namespace ts {
3436
3436
// TODO: GH#18217 `xToDeclaration` calls are frequently asserted as defined.
3437
3437
/** Note that the resulting nodes cannot be checked. */
3438
3438
typeToTypeNode ( type : Type , enclosingDeclaration ?: Node , flags ?: NodeBuilderFlags ) : TypeNode | undefined ;
3439
- /* @internal */ typeToTypeNode ( type : Type , enclosingDeclaration ? : Node , flags ? : NodeBuilderFlags , tracker ?: SymbolTracker ) : TypeNode | undefined ; // eslint-disable-line @typescript-eslint/unified-signatures
3439
+ /* @internal */ typeToTypeNode ( type : Type , enclosingDeclaration : Node | undefined , flags : NodeBuilderFlags | undefined , tracker ?: SymbolTracker ) : TypeNode | undefined ; // eslint-disable-line @typescript-eslint/unified-signatures
3440
3440
/** Note that the resulting nodes cannot be checked. */
3441
3441
signatureToSignatureDeclaration ( signature : Signature , kind : SyntaxKind , enclosingDeclaration ?: Node , flags ?: NodeBuilderFlags ) : SignatureDeclaration & { typeArguments ?: NodeArray < TypeNode > } | undefined ;
3442
- /* @internal */ signatureToSignatureDeclaration ( signature : Signature , kind : SyntaxKind , enclosingDeclaration ? : Node , flags ? : NodeBuilderFlags , tracker ?: SymbolTracker ) : SignatureDeclaration & { typeArguments ?: NodeArray < TypeNode > } | undefined ; // eslint-disable-line @typescript-eslint/unified-signatures
3442
+ /* @internal */ signatureToSignatureDeclaration ( signature : Signature , kind : SyntaxKind , enclosingDeclaration : Node | undefined , flags : NodeBuilderFlags | undefined , tracker ?: SymbolTracker ) : SignatureDeclaration & { typeArguments ?: NodeArray < TypeNode > } | undefined ; // eslint-disable-line @typescript-eslint/unified-signatures
3443
3443
/** Note that the resulting nodes cannot be checked. */
3444
3444
indexInfoToIndexSignatureDeclaration ( indexInfo : IndexInfo , kind : IndexKind , enclosingDeclaration ?: Node , flags ?: NodeBuilderFlags ) : IndexSignatureDeclaration | undefined ;
3445
- /* @internal */ indexInfoToIndexSignatureDeclaration ( indexInfo : IndexInfo , kind : IndexKind , enclosingDeclaration ? : Node , flags ? : NodeBuilderFlags , tracker ?: SymbolTracker ) : IndexSignatureDeclaration | undefined ; // eslint-disable-line @typescript-eslint/unified-signatures
3445
+ /* @internal */ indexInfoToIndexSignatureDeclaration ( indexInfo : IndexInfo , kind : IndexKind , enclosingDeclaration : Node | undefined , flags : NodeBuilderFlags | undefined , tracker ?: SymbolTracker ) : IndexSignatureDeclaration | undefined ; // eslint-disable-line @typescript-eslint/unified-signatures
3446
3446
/** Note that the resulting nodes cannot be checked. */
3447
3447
symbolToEntityName ( symbol : Symbol , meaning : SymbolFlags , enclosingDeclaration ?: Node , flags ?: NodeBuilderFlags ) : EntityName | undefined ;
3448
3448
/** Note that the resulting nodes cannot be checked. */
0 commit comments