File tree 3 files changed +1
-10
lines changed 3 files changed +1
-10
lines changed Original file line number Diff line number Diff line change @@ -1019,11 +1019,6 @@ declare module "typescript" {
1019
1019
emitSkipped : boolean ;
1020
1020
diagnostics : Diagnostic [ ] ;
1021
1021
}
1022
- interface TypeCheckerHost {
1023
- getCompilerOptions ( ) : CompilerOptions ;
1024
- getSourceFiles ( ) : SourceFile [ ] ;
1025
- getSourceFile ( fileName : string ) : SourceFile ;
1026
- }
1027
1022
interface TypeChecker {
1028
1023
getTypeOfSymbolAtLocation ( symbol : Symbol , node : Node ) : Type ;
1029
1024
getDeclaredTypeOfSymbol ( symbol : Symbol ) : Type ;
Original file line number Diff line number Diff line change @@ -1019,11 +1019,6 @@ declare namespace ts {
1019
1019
emitSkipped : boolean ;
1020
1020
diagnostics : Diagnostic [ ] ;
1021
1021
}
1022
- interface TypeCheckerHost {
1023
- getCompilerOptions ( ) : CompilerOptions ;
1024
- getSourceFiles ( ) : SourceFile [ ] ;
1025
- getSourceFile ( fileName : string ) : SourceFile ;
1026
- }
1027
1022
interface TypeChecker {
1028
1023
getTypeOfSymbolAtLocation ( symbol : Symbol , node : Node ) : Type ;
1029
1024
getDeclaredTypeOfSymbol ( symbol : Symbol ) : Type ;
Original file line number Diff line number Diff line change @@ -1411,6 +1411,7 @@ namespace ts {
1411
1411
/* @internal */ sourceMaps : SourceMapData [ ] ; // Array of sourceMapData if compiler emitted sourcemaps
1412
1412
}
1413
1413
1414
+ /* @internal */
1414
1415
export interface TypeCheckerHost {
1415
1416
getCompilerOptions ( ) : CompilerOptions ;
1416
1417
You can’t perform that action at this time.
0 commit comments