@uwdata/mosaic-sql
Version:
SQL query construction and analysis.
10 lines • 459 B
TypeScript
import type { ColumnRefNode } from '../ast/column-ref.js';
import type { TableRefNode } from '../ast/table-ref.js';
import type { ParamLike } from '../types.js';
/**
* Create a column reference.
* @param name The column name, as a string or as a dynamic parameter.
* @param table The table reference.
*/
export declare function column(name: string | ParamLike, table?: string | string[] | TableRefNode): ColumnRefNode;
//# sourceMappingURL=column.d.ts.map