您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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');