We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fdc7eb commit 22f4b84Copy full SHA for 22f4b84
x-pack/plugins/actions/server/plugin.ts
@@ -86,9 +86,10 @@ export interface PluginSetupContract {
86
registerType<
87
Config extends ActionTypeConfig = ActionTypeConfig,
88
Secrets extends ActionTypeSecrets = ActionTypeSecrets,
89
- Params extends ActionTypeParams = ActionTypeParams
+ Params extends ActionTypeParams = ActionTypeParams,
90
+ ExecutorResultData = void
91
>(
- actionType: ActionType<Config, Secrets, Params>
92
+ actionType: ActionType<Config, Secrets, Params, ExecutorResultData>
93
): void;
94
}
95
0 commit comments