@uwdata/mosaic-sql
Version:
SQL query construction and analysis.
18 lines • 527 B
TypeScript
import { ExprNode } from './node.js';
export declare class FunctionNode extends ExprNode {
/** The function name. */
readonly name: string;
/** The function arguments. */
readonly args: ExprNode[];
/**
* Instantiate a function node.
* @param name The function name.
* @param args The function arguments.
*/
constructor(name: string, args?: ExprNode[]);
/**
* Generate a SQL query string for this node.
*/
toString(): string;
}
//# sourceMappingURL=function.d.ts.map