mirror of
https://github.com/elastic/kibana.git
synced 2025-04-25 10:23:14 -04:00
552 B
552 B
Home > kibana-plugin-plugins-expressions-server > ExpressionAstFunction
ExpressionAstFunction type
Signature:
export declare type ExpressionAstFunction = {
type: 'function';
function: string;
arguments: Record<string, ExpressionAstArgument[]>;
debug?: ExpressionAstFunctionDebug;
};