diff options
author | metamuffin <metamuffin@disroot.org> | 2022-09-16 20:46:58 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2022-09-16 20:46:58 +0200 |
commit | a3cc9f8fb1bf45741b08ce6d383c4d7cc8ea8b1f (patch) | |
tree | ddd353400f3d75b26a4158059038d8e583cd81f4 /common | |
parent | 969444b32101a45d5917a3947b94bb09c3fc01a1 (diff) | |
download | keks-meet-a3cc9f8fb1bf45741b08ce6d383c4d7cc8ea8b1f.tar keks-meet-a3cc9f8fb1bf45741b08ce6d383c4d7cc8ea8b1f.tar.bz2 keks-meet-a3cc9f8fb1bf45741b08ce6d383c4d7cc8ea8b1f.tar.zst |
optional streams (2, basic functionality)
Diffstat (limited to 'common')
-rw-r--r-- | common/packets.d.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/packets.d.ts b/common/packets.d.ts index 4ef4ad4..38059a3 100644 --- a/common/packets.d.ts +++ b/common/packets.d.ts @@ -35,7 +35,7 @@ export interface /* enum */ RelayMessage { } export interface ChatMessage { text?: string, image?: string } export interface ProvideInfo { - id: string, + id: string, // for datachannels this is `label`, for tracks this will be the `id` of the only associated stream. kind: "audio" | "video" | "file" label?: string size?: number |