Skip to content

Commit

Permalink
fixup types (#2043)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheAngryByrd authored Sep 21, 2024
1 parent 5579d96 commit 49b4f04
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Components/CodeLensHelpers.fs
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ module CodeLensHelpers =
character : uint32
}

type DotnetNewListResponseRange = {
start : Position
``end`` : Position
type LspRange = {
start : LspPosition
``end`` : LspPosition
}

type LspLocation = {
uri : string
range : Range
range : LspRange
}

type CustomIExports =
Expand All @@ -38,7 +38,7 @@ module CodeLensHelpers =
args3
|> Seq.map (fun f ->
let uri = vscode.Uri.parse f.uri

let range =
vscode.Range.Create(
float f.range.start.line,
Expand Down

0 comments on commit 49b4f04

Please sign in to comment.