refactor: add treeLen field to the ParseContext interface

This commit is contained in:
kotaindah55 2025-04-18 15:40:16 +02:00
parent eb817cb46a
commit 40f59c6e0f

1
src/types.d.ts vendored
View file

@ -51,6 +51,7 @@ declare module "@codemirror/language" {
*/ */
interface ParseContext { interface ParseContext {
tree: Tree; tree: Tree;
treeLen: number;
} }
} }