Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

constants.js 472B

123456789101112131415
  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. * The aspect ratio constant which indicates that the width (of whatever the
  10. * aspect ratio constant is used for) is larger than the height.
  11. *
  12. * @type {Symbol}
  13. */
  14. export const ASPECT_RATIO_WIDE = Symbol('ASPECT_RATIO_WIDE');