UNPKG

database-builder

Version:

Library to assist in creating and maintaining SQL commands.

7 lines (6 loc) 192 B
import { ValueTypeToParse } from "./utils"; import { Resultable } from "./resultable"; export interface ColumnParams { column: string | Resultable; params: ValueTypeToParse[]; }