We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 687b8da commit fae11daCopy full SHA for fae11da
src/components/gantry/gantry.ts
@@ -56,6 +56,8 @@ export interface Gantry extends Resource {
56
* // Get the current positions of the axes in millimeters
57
* const positions = await gantry.getPosition();
58
* ```
59
+ *
60
+ * @returns A list of the current position of each axis in millimeters.
61
*/
62
getPosition: (extra?: Struct) => Promise<number[]>;
63
@@ -88,6 +90,8 @@ export interface Gantry extends Resource {
88
90
* // Get the lengths of the axes in millimeters
89
91
* const lengths = await gantry.getLengths();
92
93
94
+ * @returns A list of the length of each axis in millimeters.
95
96
getLengths: (extra?: Struct) => Promise<number[]>;
97
0 commit comments