Skip to content

Commit

Permalink
add uiSettings to Services
Browse files Browse the repository at this point in the history
  • Loading branch information
mgiota committed Jan 4, 2024
1 parent b617a4a commit 82a6f06
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import { ToastsStart } from '@kbn/core-notifications-browser';
import { TimefilterContract } from '@kbn/data-plugin/public';
import { AlertsSearchBarProps } from '@kbn/triggers-actions-ui-plugin/public/application/sections/alerts_search_bar';
import { BoolQuery, Query } from '@kbn/es-query';
import type { IUiSettingsClient } from '@kbn/core-ui-settings-browser';
import { AlertStatus } from '../../../common/typings';

export interface AlertStatusFilterProps {
status: AlertStatus;
onChange: (id: AlertStatus) => void;
Expand All @@ -37,6 +37,7 @@ export interface Services {
timeFilterService: TimefilterContract;
AlertsSearchBar: (props: AlertsSearchBarProps) => ReactElement<AlertsSearchBarProps>;
useToasts: () => ToastsStart;
uiSettings: IUiSettingsClient;
}

export interface ObservabilityAlertSearchBarProps
Expand Down

0 comments on commit 82a6f06

Please sign in to comment.