File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change
1
+ /** @internal */
1
2
namespace ts {
3
+ /** @internal */
2
4
export function createGetSymbolWalker (
3
5
getRestTypeOfSignature : ( sig : Signature ) => Type ,
4
6
getReturnTypeOfSignature : ( sig : Signature ) => Type ,
Original file line number Diff line number Diff line change @@ -2625,7 +2625,7 @@ namespace ts {
2625
2625
2626
2626
/* @internal */ tryFindAmbientModuleWithoutAugmentations ( moduleName : string ) : Symbol | undefined ;
2627
2627
2628
- getSymbolWalker ( accept ?: ( symbol : Symbol ) => boolean ) : SymbolWalker ;
2628
+ /* @internal */ getSymbolWalker ( accept ?: ( symbol : Symbol ) => boolean ) : SymbolWalker ;
2629
2629
2630
2630
// Should not be called directly. Should only be accessed through the Program instance.
2631
2631
/* @internal */ getDiagnostics ( sourceFile ?: SourceFile , cancellationToken ?: CancellationToken ) : Diagnostic [ ] ;
@@ -2671,6 +2671,7 @@ namespace ts {
2671
2671
InTypeAlias = 1 << 23 , // Writing type in type alias declaration
2672
2672
}
2673
2673
2674
+ /* @internal */
2674
2675
export interface SymbolWalker {
2675
2676
visitType ( type : Type ) : void ;
2676
2677
visitSymbol ( symbol : Symbol ) : void ;
You can’t perform that action at this time.
0 commit comments