@@ -51,15 +51,15 @@ declare class ExperimentClient {
51
51
* Mark an experiment for deletion.
52
52
*
53
53
* @param {string } experiment_id ID of the associated experiment. (required)
54
- * @returns {void }
54
+ * @returns {Promise< void> }
55
55
* @throws {ApiError } If the API request fails
56
56
*/
57
57
deleteExperiment ( experiment_id : string ) : Promise < void > ;
58
58
/**
59
59
* Restore an experiment marked for deletion.
60
60
*
61
61
* @param {string } experiment_id ID of the associated experiment. (required)
62
- * @returns {void }
62
+ * @returns {Promise< void> }
63
63
* @throws {ApiError } If the API request fails
64
64
*/
65
65
restoreExperiment ( experiment_id : string ) : Promise < void > ;
@@ -68,7 +68,7 @@ declare class ExperimentClient {
68
68
*
69
69
* @param {string } experiment_id ID of the associated experiment. (required)
70
70
* @param {string } new_name The experiment’s name is changed to the new name. The new name must be unique. (required)
71
- * @returns {void }
71
+ * @returns {Promise< void> }
72
72
* @throws {ApiError } If the API request fails
73
73
*/
74
74
updateExperiment ( experiment_id : string , new_name : string ) : Promise < void > ;
@@ -78,7 +78,7 @@ declare class ExperimentClient {
78
78
* @param {string } experiment_id ID of the experiment under which to log the tag. (required)
79
79
* @param {string } key Name of the tag. (required)
80
80
* @param {string } value String value of the tag being logged. (required)
81
- * @returns {void }
81
+ * @returns {Promise< void> }
82
82
* @throws {ApiError } If the API request fails
83
83
*/
84
84
setExperimentTag ( experiment_id : string , key : string , value : string ) : Promise < void > ;
0 commit comments