1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-07-30 02:21:17 +03:00

Use server side relations for voice broadcasts (#9534)

This commit is contained in:
Michael Weimann
2022-11-07 15:19:49 +01:00
committed by GitHub
parent 3747464b41
commit 36a574a14f
11 changed files with 396 additions and 192 deletions

View File

@ -20,10 +20,7 @@ import { SimpleObservable } from "matrix-widget-api";
import { Playback, PlaybackState } from "../../src/audio/Playback";
import { PlaybackClock } from "../../src/audio/PlaybackClock";
import { UPDATE_EVENT } from "../../src/stores/AsyncStore";
type PublicInterface<T> = {
[P in keyof T]: T[P];
};
import { PublicInterface } from "../@types/common";
export const createTestPlayback = (): Playback => {
const eventEmitter = new EventEmitter();