File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -89,12 +89,11 @@ declare namespace WoT {
89
89
}
90
90
91
91
export interface ActionInteractionOutput extends InteractionOutput {
92
- error ?: Error ;
93
92
// query the status of a running action
94
- query ( options ?: InteractionOptions ) : Promise < InteractionOutput >
93
+ query ( params ?: InteractionInput , options ?: InteractionOptions ) : Promise < InteractionOutput >
95
94
// cancel a pending/running action
96
- cancel ( options ?: InteractionOptions ) : Promise < void >
97
- // Note: value() function will only work after completed state has been reached
95
+ cancel ( params ?: InteractionInput , options ?: InteractionOptions ) : Promise < void >
96
+ // Note: retrieving the result of the action via implicit InteractionOutput interface will only work after the action has been completed
98
97
}
99
98
100
99
export interface Subscription {
You can’t perform that action at this time.
0 commit comments