diff --git a/packages/kbn-interpreter/src/common/lib/ast.ts b/packages/kbn-interpreter/src/common/lib/ast.ts index 1f445d03b0ebd..1cdd2722f3f8a 100644 --- a/packages/kbn-interpreter/src/common/lib/ast.ts +++ b/packages/kbn-interpreter/src/common/lib/ast.ts @@ -8,7 +8,7 @@ import { getType } from './get_type'; // @ts-expect-error -import { parse } from '../../../grammar/grammar'; +import { parse } from '../../../grammar'; export type ExpressionArgAST = string | boolean | number | Ast;