Skip to content

Commit

Permalink
Fix circular dep
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerrit0 committed Feb 9, 2024
1 parent b6c5801 commit ece4f31
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 11 deletions.
7 changes: 2 additions & 5 deletions src/lib/models/ReflectionCategory.ts
@@ -1,8 +1,5 @@
import {
Comment,
type CommentDisplayPart,
type DeclarationReflection,
} from ".";
import { Comment } from "./comments";
import type { CommentDisplayPart, DeclarationReflection } from ".";
import type { Serializer, JSONOutput, Deserializer } from "../serialization";

/**
Expand Down
8 changes: 2 additions & 6 deletions src/lib/models/ReflectionGroup.ts
@@ -1,10 +1,6 @@
import { ReflectionCategory } from "./ReflectionCategory";
import {
Comment,
type CommentDisplayPart,
type DeclarationReflection,
type Reflection,
} from ".";
import { Comment } from "./comments";
import type { CommentDisplayPart, DeclarationReflection, Reflection } from ".";
import type { Serializer, JSONOutput, Deserializer } from "../serialization";

/**
Expand Down

0 comments on commit ece4f31

Please sign in to comment.