This commit is contained in:
2026-01-01 09:22:51 +01:00
parent b8e5d45762
commit 8277ff3e41
8 changed files with 31 additions and 35 deletions
+2 -1
View File
@@ -2305,7 +2305,7 @@ export type ClientCrudFetchParams<T extends {
[k: string]: any;
} = {
[k: string]: any;
}, P = string> = {
}, P = string> = DSQLFetchApiOptions<T> & {
table: P;
method?: "GET" | "POST" | "PUT" | "DELETE";
query?: APIPathsQuery<T>;
@@ -2325,4 +2325,5 @@ export type DSQLFetchApiOptions<T extends {
headers?: DSQLClientFetchHeader;
csrfValue?: string;
csrfKey?: string;
fetchOptions?: RequestInit;
};