UNPKG

@uwdata/mosaic-sql

Version:

SQL query construction and analysis.

20 lines 564 B
import type { ParamLike } from '../types.js'; import { ExprNode } from './node.js'; export declare class ParamNode extends ExprNode { /** The dynamic parameter. */ readonly param: ParamLike; /** * Instantiate a param node with a dynamic parameter. * @param param The dynamic parameter. */ constructor(param: ParamLike); /** * Returns the current parameter value. */ get value(): unknown; /** * Generate a SQL query string for this node. */ toString(): string; } //# sourceMappingURL=param.d.ts.map