@ikonai/sdk-react-ui 1.0.24 → 1.0.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/app/use-ikon-app.d.ts +8 -0
- package/index.js +524 -520
- package/package.json +1 -1
package/app/use-ikon-app.d.ts
CHANGED
|
@@ -50,6 +50,14 @@ export interface UseIkonAppOptions {
|
|
|
50
50
|
* Enable WebRTC for audio and video transport. Default: false
|
|
51
51
|
*/
|
|
52
52
|
webRtc?: boolean;
|
|
53
|
+
/**
|
|
54
|
+
* Enable audio playback. Default: true
|
|
55
|
+
*/
|
|
56
|
+
audio?: boolean;
|
|
57
|
+
/**
|
|
58
|
+
* Enable video playback. Default: true
|
|
59
|
+
*/
|
|
60
|
+
video?: boolean;
|
|
53
61
|
}
|
|
54
62
|
/**
|
|
55
63
|
* Result returned by the useIkonApp hook.
|