12345678910111213141516171819 |
- /**
- * Defined the orientation of stripes in {@link StripeMaterialProperty}.
- *
- * @enum {Number}
- */
- const StripeOrientation = {
- /**
- * Horizontal orientation.
- * @type {Number}
- */
- HORIZONTAL: 0,
- /**
- * Vertical orientation.
- * @type {Number}
- */
- VERTICAL: 1,
- };
- export default Object.freeze(StripeOrientation);
|