Skip to content

Commit

Permalink
[Actions] Fix type contract (#82168) (#82219)
Browse files Browse the repository at this point in the history
  • Loading branch information
cnasikas committed Oct 31, 2020
1 parent 3083b8d commit b828387
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions x-pack/plugins/actions/server/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,10 @@ export interface PluginSetupContract {
registerType<
Config extends ActionTypeConfig = ActionTypeConfig,
Secrets extends ActionTypeSecrets = ActionTypeSecrets,
Params extends ActionTypeParams = ActionTypeParams
Params extends ActionTypeParams = ActionTypeParams,
ExecutorResultData = void
>(
actionType: ActionType<Config, Secrets, Params>
actionType: ActionType<Config, Secrets, Params, ExecutorResultData>
): void;
}

Expand Down

0 comments on commit b828387

Please sign in to comment.