Fixed baseline

This commit is contained in:
Armando Aguirre
2020-07-09 21:34:34 -07:00
parent b81f240e96
commit 6fd91ee59f
2 changed files with 8 additions and 8 deletions
+4 -4
View File
@@ -5315,10 +5315,10 @@ declare namespace ts {
getEditsForFileRename(oldFilePath: string, newFilePath: string, formatOptions: FormatCodeSettings, preferences: UserPreferences | undefined): readonly FileTextChanges[];
getEmitOutput(fileName: string, emitOnlyDtsFiles?: boolean, forceDtsEmit?: boolean): EmitOutput;
getProgram(): Program | undefined;
toggleLineComment(fileName: string, textRanges: TextRange): TextChange[];
toggleMultilineComment(fileName: string, textRanges: TextRange): TextChange[];
commentSelection(fileName: string, textRanges: TextRange): TextChange[];
uncommentSelection(fileName: string, textRanges: TextRange): TextChange[];
toggleLineComment(fileName: string, textRange: TextRange): TextChange[];
toggleMultilineComment(fileName: string, textRange: TextRange): TextChange[];
commentSelection(fileName: string, textRange: TextRange): TextChange[];
uncommentSelection(fileName: string, textRange: TextRange): TextChange[];
dispose(): void;
}
interface JsxClosingTagInfo {
+4 -4
View File
@@ -5315,10 +5315,10 @@ declare namespace ts {
getEditsForFileRename(oldFilePath: string, newFilePath: string, formatOptions: FormatCodeSettings, preferences: UserPreferences | undefined): readonly FileTextChanges[];
getEmitOutput(fileName: string, emitOnlyDtsFiles?: boolean, forceDtsEmit?: boolean): EmitOutput;
getProgram(): Program | undefined;
toggleLineComment(fileName: string, textRanges: TextRange): TextChange[];
toggleMultilineComment(fileName: string, textRanges: TextRange): TextChange[];
commentSelection(fileName: string, textRanges: TextRange): TextChange[];
uncommentSelection(fileName: string, textRanges: TextRange): TextChange[];
toggleLineComment(fileName: string, textRange: TextRange): TextChange[];
toggleMultilineComment(fileName: string, textRange: TextRange): TextChange[];
commentSelection(fileName: string, textRange: TextRange): TextChange[];
uncommentSelection(fileName: string, textRange: TextRange): TextChange[];
dispose(): void;
}
interface JsxClosingTagInfo {