Skip to content

Commit

Permalink
Fixes type errors after moving type to new file
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonrhodes committed Sep 27, 2023
1 parent 735f394 commit 2738219
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@
* 2.0.
*/

import { AssetClientDependencies } from '../../../types';
import { GetServicesOptionsPublic } from '../../../../common/types_client';
import { AssetClientDependencies, OptionsWithInjectedValues } from '..';
import { OptionsWithInjectedValues } from '..';

export type GetServicesOptions = GetServicesOptionsPublic & AssetClientDependencies;
export type GetServicesOptionsInjected = OptionsWithInjectedValues<GetServicesOptions>;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import { estypes } from '@elastic/elasticsearch';
import type { APMIndices } from '@kbn/apm-data-access-plugin/server';
import { ElasticsearchClient } from '@kbn/core/server';
import { AssetManagerConfig } from '../../types';
import { AssetManagerConfig } from '../../../common/config';
import { Asset } from '../../../common/types_api';

export const QUERY_MAX_SIZE = 10000;
Expand Down

0 comments on commit 2738219

Please sign in to comment.