Skip to content

Commit

Permalink
fix circular import
Browse files Browse the repository at this point in the history
  • Loading branch information
toger5 committed Jan 10, 2025
1 parent 35b7db8 commit 9daacc1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/matrixrtc/MembershipManager.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { UpdateDelayedEventAction } from "../@types/requests.ts";
import { HTTPError, MatrixError } from "../http-api/errors.ts";
import { logger } from "../logger.ts";
import { EventTimeline, EventType, MatrixClient, Room } from "../matrix.ts";
import { EventTimeline, EventType } from "../matrix.ts";
import type { MatrixClient, Room } from "../matrix.ts";
import { sleep } from "../utils.ts";
import { CallMembership, DEFAULT_EXPIRE_DURATION, SessionMembershipData } from "./CallMembership.ts";
import { Focus } from "./focus.ts";
Expand Down
2 changes: 1 addition & 1 deletion src/models/thread.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ limitations under the License.

import { Optional } from "matrix-events-sdk";

import { MatrixClient, PendingEventOrdering } from "../client.ts";
import { MatrixClient, PendingEventOrdering } from "../matrix.ts";
import { TypedReEmitter } from "../ReEmitter.ts";
import { RelationType } from "../@types/event.ts";
import { IThreadBundledRelationship, MatrixEvent, MatrixEventEvent } from "./event.ts";
Expand Down

0 comments on commit 9daacc1

Please sign in to comment.