Skip to content

Commit 92c426a

Browse files
committed
forLines types
1 parent 9242bd8 commit 92c426a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib_src/misc/scopes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ function forRange(editor: TextEditor, range: RangeCompatible) {
9090
return scopes
9191
}
9292

93-
export function forLines(editor, start, end) {
93+
export function forLines(editor: TextEditor, start: number, end: number) {
9494
const startPoint = new Point(start, 0)
9595
const endPoint = new Point(end, Infinity)
9696
const range = new Range(startPoint, endPoint)

0 commit comments

Comments
 (0)