Skip to content

Commit ece4f31

Browse files
committed
Fix circular dep
1 parent b6c5801 commit ece4f31

File tree

2 files changed

+4
-11
lines changed

2 files changed

+4
-11
lines changed

src/lib/models/ReflectionCategory.ts

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
1-
import {
2-
Comment,
3-
type CommentDisplayPart,
4-
type DeclarationReflection,
5-
} from ".";
1+
import { Comment } from "./comments";
2+
import type { CommentDisplayPart, DeclarationReflection } from ".";
63
import type { Serializer, JSONOutput, Deserializer } from "../serialization";
74

85
/**

src/lib/models/ReflectionGroup.ts

+2-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
import { ReflectionCategory } from "./ReflectionCategory";
2-
import {
3-
Comment,
4-
type CommentDisplayPart,
5-
type DeclarationReflection,
6-
type Reflection,
7-
} from ".";
2+
import { Comment } from "./comments";
3+
import type { CommentDisplayPart, DeclarationReflection, Reflection } from ".";
84
import type { Serializer, JSONOutput, Deserializer } from "../serialization";
95

106
/**

0 commit comments

Comments
 (0)