datasquirel/dist/package-shared/utils/data-fetching/crud-get.d.ts
2025-12-13 16:33:58 +01:00

7 lines
381 B
TypeScript

import { APIResponseObject, DsqlCrudParam } from "../../types";
export default function <T extends {
[key: string]: any;
} = {
[key: string]: any;
}, K extends string = string>({ table, query, count, countOnly, dbFullName, tableSchema, dbConfig, targetId, targetField, targetValue, }: Omit<DsqlCrudParam<T, K>, "action" | "data" | "sanitize">): Promise<APIResponseObject>;