Skip to content

Commit

Permalink
fix type error
Browse files Browse the repository at this point in the history
  • Loading branch information
vadimkibana committed Jul 31, 2024
1 parent fc64ac4 commit df106c1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/kbn-esql-ast/src/visitor/contexts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ import type {
ESQLTimeInterval,
} from '../types';
import type {
CommandVisitorInput,
ESQLAstExpressionNode,
ESQLAstQueryNode,
ExpressionVisitorInput,
Expand Down Expand Up @@ -88,7 +89,7 @@ export class VisitorContext<

public visitCommand(
commandNode: ESQLAstCommand,
input: ExpressionVisitorInput<Methods>
input: CommandVisitorInput<Methods>
): ExpressionVisitorOutput<Methods> {
return this.ctx.visitCommand(this, commandNode, input);
}
Expand Down

0 comments on commit df106c1

Please sign in to comment.