type alias SqlStatement

A single SQL statement plus its bound arguments — the object form libsql's batch API accepts. This is the one shared shape for a { sql, args } pair; callers that build statements to hand to executeBatch and friends import this rather than re-declaring the same object type locally.

Properties

sql: string
args: InValue[]

Usage

import { type SqlStatement } from "doc.ts";