import { getDb } from "./index.js"; export type DbHandle = Pick< ReturnType, "select" | "insert" | "update" | "delete" | "transaction" >;