bun-sqlite/dist/utils/sql-insert-generator.d.ts
2026-03-02 10:44:30 +01:00

6 lines
236 B
TypeScript

import type { SQLInsertGenParams, SQLInsertGenReturn } from "../types";
/**
* # SQL Insert Generator
*/
export default function sqlInsertGenerator({ tableName, data, dbFullName, }: SQLInsertGenParams): SQLInsertGenReturn | undefined;