17 lines
527 B
TypeScript
17 lines
527 B
TypeScript
type Param = {
|
|
dbContext?: string;
|
|
paradigm?: "Read Only" | "Full Access";
|
|
dbFullName: string;
|
|
tableName: string;
|
|
tableSchema?: import("../../../types").DSQL_TableSchemaType;
|
|
identifierColumnName: string;
|
|
identifierValue: string | number;
|
|
useLocal?: boolean;
|
|
};
|
|
/**
|
|
* # Delete DB Entry Function
|
|
* @description
|
|
*/
|
|
export default function deleteDbEntry({ dbContext, paradigm, dbFullName, tableName, identifierColumnName, identifierValue, useLocal, }: Param): Promise<object | null>;
|
|
export {};
|