Add existing to tracked
This commit is contained in:
+24
@@ -0,0 +1,24 @@
|
||||
// @ts-check
|
||||
|
||||
/**
|
||||
* Defined the orientation of stripes in {@link StripeMaterialProperty}.
|
||||
*
|
||||
* @enum {number}
|
||||
*/
|
||||
const StripeOrientation = {
|
||||
/**
|
||||
* Horizontal orientation.
|
||||
* @type {number}
|
||||
*/
|
||||
HORIZONTAL: 0,
|
||||
|
||||
/**
|
||||
* Vertical orientation.
|
||||
* @type {number}
|
||||
*/
|
||||
VERTICAL: 1,
|
||||
};
|
||||
|
||||
Object.freeze(StripeOrientation);
|
||||
|
||||
export default StripeOrientation;
|
||||
Reference in New Issue
Block a user