Skip to content

Commit

Permalink
corrected type in siem
Browse files Browse the repository at this point in the history
  • Loading branch information
gmmorris committed May 6, 2020
1 parent f1ffe64 commit 7f95f90
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion x-pack/plugins/siem/public/lib/connectors/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
/* eslint-disable @kbn/eslint/no-restricted-paths */

import { ActionType } from '../../../../triggers_actions_ui/public';
import { IErrorObject } from '../../../../triggers_actions_ui/public/types';
import { ExternalIncidentServiceConfiguration } from '../../../../actions/server/builtin_action_types/case/types';

import { ActionType as ThirdPartySupportedActions, CaseField } from '../../../../case/common/api';
Expand Down Expand Up @@ -42,7 +43,7 @@ export interface ActionConnectorValidationErrors {
export type Optional<T, K extends keyof T> = Omit<T, K> & Partial<T>;

export interface ConnectorFlyoutFormProps<T> {
errors: { [key: string]: string[] };
errors: IErrorObject;
action: T;
onChangeSecret: (key: string, value: string) => void;
onBlurSecret: (key: string) => void;
Expand Down

0 comments on commit 7f95f90

Please sign in to comment.