We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bffd2bf commit 60f9616Copy full SHA for 60f9616
1 file changed
src/commands/content-item/tree.ts
@@ -79,7 +79,9 @@ export const prepareContentForTree = async (repo: {
79
return new ContentDependancyTree(contentItems, new ContentMapping());
80
};
81
82
-type CircularLink = [number, number];
+type LineIndexFrom = number;
83
+type LineIndexTo = number;
84
+type CircularLink = [LineIndexFrom, LineIndexTo];
85
interface ParentReference {
86
item: ItemContentDependancies;
87
line: number;
0 commit comments