UNPKG

sqlite-prepare

Version:

A type-safe SQL query builder for Cloudflare D1

6 lines (5 loc) 282 B
import { FragmentSQL } from './types'; export declare function into(table: string): string; export declare function insert(table: string, values: Record<string, any>[] | Record<string, any>): FragmentSQL; export declare const i: typeof insert; export declare const it: typeof into;