Skip to content

Commit

Permalink
Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
afharo committed Jul 30, 2024
1 parent e0a49d2 commit 5b435f0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/core/base/core-base-common/src/plugins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* Side Public License, v 1.
*/

import { ConfigPath } from '@kbn/config';
import type { ConfigPath } from '@kbn/config';

/**
* Dedicated type for plugin name/id that is supposed to make Map/Set/Arrays
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import coerce from 'semver/functions/coerce';

import { ELASTIC_HTTP_VERSION_HEADER } from '@kbn/core-http-common';
import { BuildFlavor } from '@kbn/config/src/types';
import type { BuildFlavor } from '@kbn/config';
import { i18n } from '@kbn/i18n';
import { EMSClient } from '@elastic/ems-client';
import { EMS_APP_NAME, EMSSettings, DEFAULT_EMS_REST_VERSION } from '../../common';
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/maps_ems/public/lazy_load_bundle/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/

import type { EMSClient } from '@elastic/ems-client';
import { BuildFlavor } from '@kbn/config/src/types';
import type { BuildFlavor } from '@kbn/config';
import type { EMSSettings } from '../../common';

let lazyLoaded: (emsSettings: EMSSettings, version: string, buildFlavor: BuildFlavor) => EMSClient;
Expand Down

0 comments on commit 5b435f0

Please sign in to comment.