Use URI for linkDTO

This commit is contained in:
Martin Aeschlimann
2019-02-14 18:24:17 +01:00
parent 86e9f7e084
commit dd40499fda
10 changed files with 46 additions and 19 deletions

View File

@@ -890,7 +890,10 @@ export interface CodeActionDto {
isPreferred?: boolean;
}
export type LinkDto = ObjectIdentifier & modes.ILink;
export interface LinkDto extends ObjectIdentifier {
range: IRange;
url?: string | UriComponents;
}
export interface CodeLensDto extends ObjectIdentifier {
range: IRange;