We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 767baea commit 8bd0d65Copy full SHA for 8bd0d65
packages/test-case-component/src/loadFixture.ts
@@ -1,4 +1,5 @@
1
-import { generateHtml, SelectionAnchor } from "./generateHtml";
+import type { PositionPlainObject } from "@cursorless/common";
2
+import { generateHtml } from "./generateHtml";
3
4
async function safeGenerateHtml(
5
...args: [stateName: string, ...rest: Parameters<typeof generateHtml>]
@@ -30,8 +31,8 @@ export async function loadFixture(data: any) {
30
31
}: {
32
name: string;
33
type: string;
- start: SelectionAnchor;
34
- end: SelectionAnchor;
+ start: PositionPlainObject;
35
+ end: PositionPlainObject;
36
}) => ({
37
name,
38
type,
0 commit comments