UNPKG

refql

Version:

A Node.js and Deno library for composing and running SQL queries.

11 lines (10 loc) 408 B
import { TagFunctionVariable, ValueType } from "../common/types"; import SQLNode from "./SQLNode"; interface Values<Params = any> extends SQLNode<Params> { run: TagFunctionVariable<Params, ValueType[]>; } declare function Values<Params>(run: ValueType[] | TagFunctionVariable<Params, any[]>): Values<Params>; declare namespace Values { var isValues: (x: any) => x is Values; } export default Values;