remove references of embed headers

This commit is contained in:
Jorrin
2023-12-27 00:21:13 +01:00
parent 2117b417f4
commit 06acec4675
5 changed files with 1 additions and 8 deletions

View File

@@ -16,8 +16,8 @@ export type DefaultedFetcherOptions = {
body?: Record<string, any> | string | FormData;
headers: Record<string, string>;
query: Record<string, string>;
method: 'HEAD' | 'GET' | 'POST';
readHeaders: string[];
method: 'HEAD' | 'GET' | 'POST';
};
export type FetcherResponse<T = any> = {