[Move @kbn/config-schema to server] @kbn/config (#189525)

This commit is contained in:
Alejandro Fernández Haro 2024-07-31 00:03:14 +02:00 committed by GitHub
parent 89f703f1c5
commit 3c9b2f4efe
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 4 additions and 4 deletions

View file

@ -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

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-server",
"id": "@kbn/config",
"owner": "@elastic/kibana-core"
}

View file

@ -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';

View file

@ -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;