Files
Desktop/ts/util/ringrtc/nonRenderedRemoteParticipant.std.ts
Fedor Indutny 44076ece79 Rename files
2025-10-16 23:45:44 -07:00

13 lines
318 B
TypeScript

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