mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-12 14:32:40 +00:00
25 lines
281 B
JavaScript
25 lines
281 B
JavaScript
|
|
export default class LargeContainer {
|
|
|
|
/**
|
|
* @returns Promise
|
|
*/
|
|
show () {
|
|
}
|
|
|
|
/**
|
|
* @returns Promise
|
|
*/
|
|
hide () {
|
|
}
|
|
|
|
resize (containerWidth, containerHeight, animate) {
|
|
}
|
|
|
|
onHoverIn (e) {
|
|
}
|
|
|
|
onHoverOut (e) {
|
|
}
|
|
}
|