Files
web/types/fetch.ts
2024-08-21 16:24:39 +02:00

8 lines
222 B
TypeScript

export interface RequestOptionsWithJSONBody
extends Omit<RequestInit, "body" | "method"> {
body?: Record<string, unknown>
}
export interface RequestOptionsWithOutBody
extends Omit<RequestInit, "body" | "method"> {}