23 lines
878 B
TypeScript
23 lines
878 B
TypeScript
import { APIResponseObject, DSQL_TableSchemaType, DsqlCrudParamWhereClause, PostInsertReturn } from "../../../types";
|
|
import { DbContextsArray } from "./runQuery";
|
|
type Param<T extends {
|
|
[k: string]: any;
|
|
} = any, K extends string = string> = {
|
|
dbContext?: (typeof DbContextsArray)[number];
|
|
dbFullName?: string;
|
|
tableName: K;
|
|
tableSchema?: DSQL_TableSchemaType;
|
|
identifierColumnName?: keyof T;
|
|
identifierValue?: string | number;
|
|
forceLocal?: boolean;
|
|
whereClauseObject?: DsqlCrudParamWhereClause;
|
|
};
|
|
/**
|
|
* # Delete DB Entry Function
|
|
* @description
|
|
*/
|
|
export default function deleteDbEntry<T extends {
|
|
[k: string]: any;
|
|
} = any, K extends string = string>({ dbContext, dbFullName, tableName, identifierColumnName, identifierValue, forceLocal, whereClauseObject, }: Param<T, K>): Promise<APIResponseObject<PostInsertReturn>>;
|
|
export {};
|