chore(docs): Fix prettier warnings (#2952)

* chore(docs): Fix prettier warnings
This commit is contained in:
Pete Johanson
2025-06-01 13:02:39 -06:00
committed by GitHub
parent 461f5c832f
commit cb00077273
7 changed files with 24 additions and 16 deletions

View File

@@ -1,7 +1,10 @@
import type { SyntaxNode } from "web-tree-sitter";
export class Range {
constructor(public startIndex: number, public endIndex: number) {}
constructor(
public startIndex: number,
public endIndex: number
) {}
}
export class TextEdit extends Range {