Image
-type Image = {
id?: string,
image_id: string,
type: "image",
}
type Image = {
type: "image",
id?: string,
image_id: string,
}
Properties
image_id
- ID of a previously registered Image.
diff --git a/docs/api/components/InputStream/index.html b/docs/api/components/InputStream/index.html
index 3cfef9ac9..fd283361c 100644
--- a/docs/api/components/InputStream/index.html
+++ b/docs/api/components/InputStream/index.html
@@ -4,12 +4,12 @@
InputStream
-type InputStream = {
id?: string,
input_id: string,
type: "input_stream",
}
type InputStream = {
type: "input_stream",
id?: string,
input_id: string,
}
Component representing incoming RTP stream. Specific streams can be identified by an input_id
that was part of a RegisterInputStream
request.