Cleanup imports

This commit is contained in:
Aleksey Kladov 2019-12-30 19:07:28 +01:00
parent ca5c59507f
commit 260df66b77
5 changed files with 12 additions and 8 deletions

View file

@ -1,4 +1,5 @@
import { Range, TextDocumentIdentifier } from 'vscode-languageclient';
import * as lc from 'vscode-languageclient';
import { Ctx, Cmd } from '../ctx';
import { applySourceChange, SourceChange } from '../source_change';
@ -20,6 +21,6 @@ export function joinLines(ctx: Ctx): Cmd {
}
interface JoinLinesParams {
textDocument: TextDocumentIdentifier;
range: Range;
textDocument: lc.TextDocumentIdentifier;
range: lc.Range;
}