Skip to content

Commit b0d0e7e

Browse files
committed
fixed type checks
1 parent af5ef49 commit b0d0e7e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

x-pack/plugins/triggers_actions_ui/public/application/lib/get_defaults_for_action_params.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
* you may not use this file except in compliance with the Elastic License.
55
*/
66

7-
import { ResolvedActionGroup } from '../../../../alerts/common';
7+
import { AlertActionParam, ResolvedActionGroup } from '../../../../alerts/common';
88
import { AlertProvidedActionVariables } from './action_variables';
99

1010
export const getDefaultsForActionParams = (
1111
actionTypeId: string,
1212
actionGroupId: string
13-
): Record<string, unknown> | undefined => {
13+
): Record<string, AlertActionParam> | undefined => {
1414
switch (actionTypeId) {
1515
case '.pagerduty':
1616
const pagerDutyDefaults = {

0 commit comments

Comments
 (0)