UNPKG

@uwdata/mosaic-sql

Version:

SQL query construction and analysis.

18 lines 608 B
import { ExprNode } from './node.js'; export declare class VerbatimNode extends ExprNode { /** The verbatim content to include. */ readonly value: string; /** A type hint for analyzing verbatim content. */ readonly hint?: string; /** * Instantiate a raw node with verbatim content. * @param value The verbatim content to include. * @param hint A type hint for analyzing verbatim content. */ constructor(value: string, hint?: string); /** * Generate a SQL query string for this node. */ toString(): string; } //# sourceMappingURL=verbatim.d.ts.map