@uwdata/mosaic-sql
Version:
SQL query construction and analysis.
10 lines • 439 B
TypeScript
import { TableRefNode } from '../ast/table-ref.js';
import { MaybeArray } from '../types.js';
/**
* Returns a named table or view reference.
* @param ids Table and namespace identifiers.
* For example 'name' or ['schema', 'name'].
* @returns A table reference or undefined if the input list is empty.
*/
export declare function tableRef(...ids: MaybeArray<string>[]): TableRefNode | undefined;
//# sourceMappingURL=table-ref.d.ts.map