Remove unnecessary 'ts.' qualifications (#17163)

This commit is contained in:
Andy
2017-07-13 13:08:59 -07:00
committed by GitHub
parent fd2dd2edc0
commit d2ec45f354
10 changed files with 75 additions and 75 deletions

View File

@@ -227,7 +227,7 @@ namespace ts.server {
}));
}
getFormattingEditsForRange(file: string, start: number, end: number, _options: ts.FormatCodeOptions): ts.TextChange[] {
getFormattingEditsForRange(file: string, start: number, end: number, _options: FormatCodeOptions): ts.TextChange[] {
const args: protocol.FormatRequestArgs = this.createFileLocationRequestArgsWithEndLineAndOffset(file, start, end);