@@ -88,9 +88,15 @@ import { type MatrixScheduler } from "./scheduler.ts";
88
88
import { type BeaconEvent , type BeaconEventHandlerMap } from "./models/beacon.ts" ;
89
89
import { type AuthDict } from "./interactive-auth.ts" ;
90
90
import { type IMinimalEvent , type IRoomEvent , type IStateEvent } from "./sync-accumulator.ts" ;
91
- import { EventTimelineSet } from "./models/event-timeline-set.ts" ;
91
+ import type { EventTimelineSet } from "./models/event-timeline-set.ts" ;
92
92
import * as ContentHelpers from "./content-helpers.ts" ;
93
- import { NotificationCountType , type Room , type RoomEvent , type RoomEventHandlerMap , type RoomNameState } from "./models/room.ts" ;
93
+ import {
94
+ NotificationCountType ,
95
+ type Room ,
96
+ type RoomEvent ,
97
+ type RoomEventHandlerMap ,
98
+ type RoomNameState ,
99
+ } from "./models/room.ts" ;
94
100
import { RoomMemberEvent , type RoomMemberEventHandlerMap } from "./models/room-member.ts" ;
95
101
import { type IPowerLevelsContent , type RoomStateEvent , type RoomStateEventHandlerMap } from "./models/room-state.ts" ;
96
102
import {
@@ -171,7 +177,12 @@ import {
171
177
} from "./@types/PushRules.ts" ;
172
178
import { type IThreepid } from "./@types/threepids.ts" ;
173
179
import { type CryptoStore } from "./crypto/store/base.ts" ;
174
- import { GroupCall , type GroupCallIntent , type GroupCallType , type IGroupCallDataChannelOptions } from "./webrtc/groupCall.ts" ;
180
+ import {
181
+ GroupCall ,
182
+ type GroupCallIntent ,
183
+ type GroupCallType ,
184
+ type IGroupCallDataChannelOptions ,
185
+ } from "./webrtc/groupCall.ts" ;
175
186
import { MediaHandler } from "./webrtc/mediaHandler.ts" ;
176
187
import {
177
188
type ILoginFlowsResponse ,
@@ -210,7 +221,11 @@ import {
210
221
type CryptoEventHandlerMap ,
211
222
type CryptoCallbacks ,
212
223
} from "./crypto-api/index.ts" ;
213
- import { type SecretStorageKeyDescription , type ServerSideSecretStorage , type ServerSideSecretStorageImpl } from "./secret-storage.ts" ;
224
+ import {
225
+ type SecretStorageKeyDescription ,
226
+ type ServerSideSecretStorage ,
227
+ ServerSideSecretStorageImpl ,
228
+ } from "./secret-storage.ts" ;
214
229
import { type RegisterRequest , type RegisterResponse } from "./@types/registration.ts" ;
215
230
import { MatrixRTCSessionManager } from "./matrixrtc/MatrixRTCSessionManager.ts" ;
216
231
import { getRelationsThreadFilter } from "./thread-utils.ts" ;
@@ -219,7 +234,11 @@ import { type RoomMessageEventContent, type StickerEventContent } from "./@types
219
234
import { type ImageInfo } from "./@types/media.ts" ;
220
235
import { type Capabilities , ServerCapabilities } from "./serverCapabilities.ts" ;
221
236
import { sha256 } from "./digest.ts" ;
222
- import { discoverAndValidateOIDCIssuerWellKnown , type OidcClientConfig , validateAuthMetadataAndKeys } from "./oidc/index.ts" ;
237
+ import {
238
+ discoverAndValidateOIDCIssuerWellKnown ,
239
+ type OidcClientConfig ,
240
+ validateAuthMetadataAndKeys ,
241
+ } from "./oidc/index.ts" ;
223
242
import { type EmptyObject } from "./@types/common.ts" ;
224
243
225
244
export type Store = IStore ;
0 commit comments