16 lines
511 B
TypeScript
16 lines
511 B
TypeScript
import { DbContextsArray } from "./runQuery";
|
|
type Param = {
|
|
dbContext?: (typeof DbContextsArray)[number];
|
|
dbFullName: string;
|
|
tableName: string;
|
|
tableSchema?: import("../../../types").DSQL_TableSchemaType;
|
|
identifierColumnName: string;
|
|
identifierValue: string | number;
|
|
};
|
|
/**
|
|
* # Delete DB Entry Function
|
|
* @description
|
|
*/
|
|
export default function deleteDbEntry({ dbContext, dbFullName, tableName, identifierColumnName, identifierValue, }: Param): Promise<object | null>;
|
|
export {};
|