Skip to content

Commit

Permalink
Remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
weltenwort committed Dec 11, 2020
1 parent acf0ceb commit f54b1f9
Showing 1 changed file with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,15 @@
*/

import { useCallback } from 'react';
import { Observable, of, Subject } from 'rxjs';
import { catchError, map, share, startWith, switchMap, tap } from 'rxjs/operators';
import { Subject } from 'rxjs';
import { map, share, switchMap, tap } from 'rxjs/operators';
import {
IKibanaSearchRequest,
IKibanaSearchResponse,
ISearchOptions,
} from '../../../../../../src/plugins/data/public';
import { AbortError } from '../../../../../../src/plugins/kibana_utils/public';
import { SearchStrategyError } from '../../../common/search_strategies/common/errors';
import { useKibanaContextForPlugin } from '../../hooks/use_kibana';
import { tapUnsubscribe, useLatest, useObservable, useObservableState } from '../use_observable';
import { tapUnsubscribe, useObservable } from '../use_observable';

export type DataSearchRequestFactory<Args extends any[], Request extends IKibanaSearchRequest> = (
...args: Args
Expand Down

0 comments on commit f54b1f9

Please sign in to comment.