智慧水务管理系统 - 精河县供水工程综合管理平台

StripeOrientation.js 370B

123456789101112131415161718192021222324
  1. // @ts-check
  2. /**
  3. * Defined the orientation of stripes in {@link StripeMaterialProperty}.
  4. *
  5. * @enum {number}
  6. */
  7. const StripeOrientation = {
  8. /**
  9. * Horizontal orientation.
  10. * @type {number}
  11. */
  12. HORIZONTAL: 0,
  13. /**
  14. * Vertical orientation.
  15. * @type {number}
  16. */
  17. VERTICAL: 1,
  18. };
  19. Object.freeze(StripeOrientation);
  20. export default StripeOrientation;