UNPKG

database-builder

Version:

Library to assist in creating and maintaining SQL commands.

6 lines (5 loc) 121 B
import { ParamType } from "./utils"; export interface QueryCompiled { query: string; params: ParamType[]; }