es lint fixes

This commit is contained in:
Valere
2025-11-03 13:18:33 +01:00
parent 4c5f06a8a9
commit a7d2a3b9db
5 changed files with 9 additions and 11 deletions

View File

@@ -6,7 +6,6 @@ Please see LICENSE in the repository root for full details.
*/
import { catchError, from, map, type Observable, of, startWith } from "rxjs";
import { Behavior } from "./Behavior";
/**
* Data that may need to be loaded asynchronously.

View File

@@ -134,7 +134,7 @@ import {
type SpotlightLandscapeLayoutMedia,
type SpotlightPortraitLayoutMedia,
} from "./layout-types.ts";
import { ElementCallError, UnknownCallError } from "../utils/errors.ts";
import { type ElementCallError, UnknownCallError } from "../utils/errors.ts";
import { ObservableScope } from "./ObservableScope.ts";
import { memberDisplaynames$ } from "./remoteMembers/displayname.ts";
import { ConnectionManager } from "./remoteMembers/ConnectionManager.ts";

View File

@@ -31,9 +31,10 @@ import {
startWith,
switchMap,
} from "rxjs";
import { multiSfu } from "../../settings/settings";
import { type Behavior } from "../Behavior";
import { ConnectionManager } from "../remoteMembers/ConnectionManager";
import { type ConnectionManager } from "../remoteMembers/ConnectionManager";
import { makeTransport } from "../../rtcSessionHelpers";
import { type ObservableScope } from "../ObservableScope";
import { async$, unwrapAsync } from "../Async";

View File

@@ -17,7 +17,6 @@ import {
} from "vitest";
import { BehaviorSubject, of } from "rxjs";
import {
ConnectionState as LivekitConnectionState,
type LocalParticipant,
type RemoteParticipant,
type Room as LivekitRoom,
@@ -36,7 +35,6 @@ import {
type ConnectionOpts,
type ConnectionState,
type PublishingParticipant,
Connection,
} from "./Connection.ts";
import { ObservableScope } from "../ObservableScope.ts";
import { type OpenIDClientParts } from "../../livekit/openIDSFU.ts";

View File

@@ -8,23 +8,23 @@ import { map, type Observable, of, type SchedulerLike } from "rxjs";
import { type RunHelpers, TestScheduler } from "rxjs/testing";
import { expect, type MockedObject, onTestFinished, vi, vitest } from "vitest";
import {
type RoomMember,
type Room as MatrixRoom,
MatrixEvent,
type Room as MatrixRoom,
type Room,
type RoomMember,
TypedEventEmitter,
} from "matrix-js-sdk";
import {
CallMembership,
type Transport,
type LivekitFocusSelection,
type LivekitTransport,
type MatrixRTCSession,
MatrixRTCSessionEvent,
type MatrixRTCSessionEventHandlerMap,
MembershipManagerEvent,
type SessionMembershipData,
Status,
type LivekitFocusSelection,
type MatrixRTCSession,
type LivekitTransport,
type Transport,
} from "matrix-js-sdk/lib/matrixrtc";
import { type MembershipManagerEventHandlerMap } from "matrix-js-sdk/lib/matrixrtc/IMembershipManager";
import {