"Fossies" - the Fresh Open Source Software Archive

Member "jitsi-meet-7561/react/features/base/responsive-ui/constants.ts" (29 Sep 2023, 558 Bytes) of package /linux/misc/jitsi-meet-7561.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) TypeScript source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file.

    1 /**
    2  * The aspect ratio constant which indicates that the width (of whatever the
    3  * aspect ratio constant is used for) is smaller than the height.
    4  *
    5  * @type {Symbol}
    6  */
    7 export const ASPECT_RATIO_NARROW = Symbol('ASPECT_RATIO_NARROW');
    8 
    9 /**
   10  * The aspect ratio constant which indicates that the width (of whatever the
   11  * aspect ratio constant is used for) is larger than the height.
   12  *
   13  * @type {Symbol}
   14  */
   15 export const ASPECT_RATIO_WIDE = Symbol('ASPECT_RATIO_WIDE');
   16 
   17 /**
   18  * Smallest supported mobile width.
   19  */
   20 export const SMALL_MOBILE_WIDTH = '320';