Skip to content

Commit

Permalink
added missing import type
Browse files Browse the repository at this point in the history
  • Loading branch information
georgianaonoleata1904 committed Mar 3, 2025
1 parent ede6ecf commit f8f0c77
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
// provides TypeScript and config-schema interfaces for ECS for use with
// the event log

import { schema, TypeOf } from '@kbn/config-schema';
import type { TypeOf } from '@kbn/config-schema';
import { schema } from '@kbn/config-schema';
import semver from 'semver';

type DeepWriteable<T> = { -readonly [P in keyof T]: DeepWriteable<T[P]> };
Expand Down

0 comments on commit f8f0c77

Please sign in to comment.