Skip to content

Commit 22f4b84

Browse files
authored
[Actions] Fix type contract (#82168)
1 parent 6fdc7eb commit 22f4b84

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

x-pack/plugins/actions/server/plugin.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,10 @@ export interface PluginSetupContract {
8686
registerType<
8787
Config extends ActionTypeConfig = ActionTypeConfig,
8888
Secrets extends ActionTypeSecrets = ActionTypeSecrets,
89-
Params extends ActionTypeParams = ActionTypeParams
89+
Params extends ActionTypeParams = ActionTypeParams,
90+
ExecutorResultData = void
9091
>(
91-
actionType: ActionType<Config, Secrets, Params>
92+
actionType: ActionType<Config, Secrets, Params, ExecutorResultData>
9293
): void;
9394
}
9495

0 commit comments

Comments
 (0)