@@ -178,7 +178,7 @@ class Client {
178178 * Swaps a list of index tuples.
179179 *
180180 * @param params - List of indexes tuples to swap.
181- * @returns - Promise returning object of the enqueued task
181+ * @returns Promise returning object of the enqueued task
182182 */
183183 async swapIndexes ( params : SwapIndexesParams ) : Promise < EnqueuedTask > {
184184 const url = '/swap-indexes'
@@ -193,7 +193,7 @@ class Client {
193193 * Get the list of all client tasks
194194 *
195195 * @param parameters - Parameters to browse the tasks
196- * @returns - Promise returning all tasks
196+ * @returns Promise returning all tasks
197197 */
198198 async getTasks ( parameters : TasksQuery = { } ) : Promise < TasksResults > {
199199 return await this . tasks . getTasks ( parameters )
@@ -203,7 +203,7 @@ class Client {
203203 * Get one task on the client scope
204204 *
205205 * @param taskUid - Task identifier
206- * @returns - Promise returning a task
206+ * @returns Promise returning a task
207207 */
208208 async getTask ( taskUid : number ) : Promise < Task > {
209209 return await this . tasks . getTask ( taskUid )
@@ -214,7 +214,7 @@ class Client {
214214 *
215215 * @param taskUids - Tasks identifier
216216 * @param waitOptions - Options on timeout and interval
217- * @returns - Promise returning an array of tasks
217+ * @returns Promise returning an array of tasks
218218 */
219219 async waitForTasks (
220220 taskUids : number [ ] ,
@@ -231,7 +231,7 @@ class Client {
231231 *
232232 * @param taskUid - Task identifier
233233 * @param waitOptions - Options on timeout and interval
234- * @returns - Promise returning an array of tasks
234+ * @returns Promise returning an array of tasks
235235 */
236236 async waitForTask (
237237 taskUid : number ,
0 commit comments