Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit 97e107e

Browse files
committed
Fix types in release mode again
1 parent 71b2060 commit 97e107e

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/audio/PlaybackQueue.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ See the License for the specific language governing permissions and
1414
limitations under the License.
1515
*/
1616

17-
import { MatrixClient, MatrixEvent, Room } from "matrix-js-sdk";
17+
import { MatrixClient } from "matrix-js-sdk/src/client";
18+
import { MatrixEvent } from "matrix-js-sdk/src/models/event";
19+
import { Room } from "matrix-js-sdk/src/models/room";
1820
import { Playback, PlaybackState } from "./Playback";
1921
import { UPDATE_EVENT } from "../stores/AsyncStore";
2022
import { MatrixClientPeg } from "../MatrixClientPeg";

src/stores/widgets/StopGapWidgetDriver.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ import { containsEmoji } from "../../effects/utils";
4444
import dis from "../../dispatcher/dispatcher";
4545
import { tryTransformPermalinkToLocalHref } from "../../utils/permalinks/Permalinks";
4646
import { IEvent, MatrixEvent } from "matrix-js-sdk/src/models/event";
47-
import { Room } from "matrix-js-sdk";
47+
import { Room } from "matrix-js-sdk/src/models/room";
4848

4949
// TODO: Purge this from the universe
5050

0 commit comments

Comments
 (0)