Updates
This commit is contained in:
Vendored
+11
@@ -2300,3 +2300,14 @@ export type ClientCrudFetchParams<T extends {
|
||||
apiOrigin?: string;
|
||||
headers?: DSQLClientFetchHeader;
|
||||
};
|
||||
export type DSQLFetchApiOptions<T extends {
|
||||
[k: string]: any;
|
||||
} = {
|
||||
[k: string]: any;
|
||||
}> = {
|
||||
method: "POST" | "GET" | "DELETE" | "PUT" | "PATCH" | "post" | "get" | "delete" | "put" | "patch";
|
||||
body?: T | string;
|
||||
headers?: DSQLClientFetchHeader;
|
||||
csrfValue?: string;
|
||||
csrfKey?: string;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user