You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

constants.js 374B

123456789101112131415
  1. /**
  2. * The aspect ratio constant indicates that the app area's width is smaller than
  3. * the height.
  4. *
  5. * @type {Symbol}
  6. */
  7. export const ASPECT_RATIO_NARROW = Symbol('ASPECT_RATIO_NARROW');
  8. /**
  9. * Aspect ratio constant indicates that the app area's width is larger than
  10. * the height.
  11. *
  12. * @type {Symbol}
  13. */
  14. export const ASPECT_RATIO_WIDE = Symbol('ASPECT_RATIO_WIDE');