mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-12 00:12:30 +00:00
11 lines
281 B
JavaScript
11 lines
281 B
JavaScript
|
|
/**
|
||
|
|
* An enumeration of the different display layouts supported by the application.
|
||
|
|
*
|
||
|
|
* @type {Object}
|
||
|
|
*/
|
||
|
|
export const LAYOUTS = {
|
||
|
|
HORIZONTAL_FILMSTRIP_VIEW: 'horizontal-filmstrip-view',
|
||
|
|
TILE_VIEW: 'tile-view',
|
||
|
|
VERTICAL_FILMSTRIP_VIEW: 'vertical-filmstrip-view'
|
||
|
|
};
|