Updates
This commit is contained in:
@@ -2961,3 +2961,23 @@ export type ClientCrudFetchParams<
|
||||
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