Files
Desktop/ts/util/ringrtc/nonRenderedRemoteParticipant.ts
2025-09-16 17:39:03 -07:00

13 lines
314 B
TypeScript

// Copyright 2020 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import type { GroupCallVideoRequest } from '../../types/Calling.js';
export const nonRenderedRemoteParticipant = ({
demuxId,
}: Readonly<{ demuxId: number }>): GroupCallVideoRequest => ({
demuxId,
width: 0,
height: 0,
});