import { DbContextsArray } from "./runQuery"; import { APIResponseObject, DSQL_TableSchemaType, PostInsertReturn } from "../../../types"; type Param = { dbContext?: (typeof DbContextsArray)[number]; dbFullName?: string; tableName: string; encryptionKey?: string; encryptionSalt?: string; data?: T; tableSchema?: DSQL_TableSchemaType; identifierColumnName: keyof T; identifierValue: string | number; forceLocal?: boolean; debug?: boolean; }; /** * # Update DB Function * @description */ export default function updateDbEntry({ dbContext, dbFullName, tableName, data, tableSchema, identifierColumnName, identifierValue, encryptionKey, encryptionSalt, forceLocal, debug, }: Param): Promise>; export {};