123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
-
- /**
- * Base class for all Large containers which we can show.
- */
- export default class LargeContainer {
-
- /**
- * Show this container.
- * @returns Promise
- */
- show () {
- }
-
- /**
- * Hide this container.
- * @returns Promise
- */
- hide () {
- }
-
- /**
- * Resize this container.
- * @param {number} containerWidth available width
- * @param {number} containerHeight available height
- * @param {boolean} animate if container should animate it's resize process
- */
- resize (containerWidth, containerHeight, animate) {
- }
-
- /**
- * Handler for "hover in" events.
- */
- onHoverIn (e) {
- }
-
- /**
- * Handler for "hover out" events.
- */
- onHoverOut (e) {
- }
-
- /**
- * Update video stream.
- * @param {JitsiTrack?} stream new stream
- * @param {string} videoType video type
- */
- setStream (stream, videoType) {
- }
-
- /**
- * Show or hide user avatar.
- * @param {boolean} show
- */
- showAvatar (show) {
- }
-
- }
|