Files
web/types/fetch.ts
2024-04-18 13:53:49 +02:00

8 lines
221 B
TypeScript

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