accept baselines

This commit is contained in:
Klaus Meinhardt 2017-10-22 23:01:23 +02:00
parent 3416e91468
commit b75ccb1c49
2 changed files with 4 additions and 4 deletions

View File

@ -1592,8 +1592,8 @@ declare namespace ts {
}
interface ScriptReferenceHost {
getCompilerOptions(): CompilerOptions;
getSourceFile(fileName: string): SourceFile;
getSourceFileByPath(path: Path): SourceFile;
getSourceFile(fileName: string): SourceFile | undefined;
getSourceFileByPath(path: Path): SourceFile | undefined;
getCurrentDirectory(): string;
}
interface ParseConfigHost {

View File

@ -1592,8 +1592,8 @@ declare namespace ts {
}
interface ScriptReferenceHost {
getCompilerOptions(): CompilerOptions;
getSourceFile(fileName: string): SourceFile;
getSourceFileByPath(path: Path): SourceFile;
getSourceFile(fileName: string): SourceFile | undefined;
getSourceFileByPath(path: Path): SourceFile | undefined;
getCurrentDirectory(): string;
}
interface ParseConfigHost {