Skip to content

Commit 3178efc

Browse files
committed
Add missing constants definitions
1 parent 90face0 commit 3178efc

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
/**
2+
* @private
3+
* @constant
4+
* @type {string}
5+
* @name MOTION_FREE
6+
* @description Specified degree of freedom has free movement.
7+
*/
8+
export const MOTION_FREE = 'free';
9+
/**
10+
* @private
11+
* @constant
12+
* @type {string}
13+
* @name MOTION_LIMITED
14+
* @description Specified degree of freedom has limited movement.
15+
*/
16+
export const MOTION_LIMITED = 'limited';
17+
/**
18+
* @private
19+
* @constant
20+
* @type {string}
21+
* @name MOTION_LOCKED
22+
* @description Specified degree of freedom is locked and allows no movement.
23+
*/
24+
export const MOTION_LOCKED = 'locked';

0 commit comments

Comments
 (0)