File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -215,9 +215,9 @@ export class TspClient {
215
215
* @param parameters Query object
216
216
* @returns Generic response with the model
217
217
*/
218
- public async fetchTimeGraphArrows ( expUUID : string , outputID : string , parameters : Query ) : Promise < TspClientResponse < GenericResponse < TimeGraphArrow > > > {
218
+ public async fetchTimeGraphArrows ( expUUID : string , outputID : string , parameters : Query ) : Promise < TspClientResponse < GenericResponse < TimeGraphArrow [ ] > > > {
219
219
const url = this . baseUrl + '/experiments/' + expUUID + '/outputs/timeGraph/' + outputID + '/arrows' ;
220
- return await RestClient . post < GenericResponse < TimeGraphArrow > > ( url , parameters ) ;
220
+ return await RestClient . post < GenericResponse < TimeGraphArrow [ ] > > ( url , parameters ) ;
221
221
}
222
222
223
223
/**
You can’t perform that action at this time.
0 commit comments