feat(WEB-169): get profile data from API
This commit is contained in:
7
types/fetch.ts
Normal file
7
types/fetch.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
export interface RequestOptionsWithJSONBody
|
||||
extends Omit<RequestInit, "body" | "method"> {
|
||||
body: Record<string, unknown>
|
||||
}
|
||||
|
||||
export interface RequestOptionsWithOutBody
|
||||
extends Omit<RequestInit, "body" | "method"> {}
|
||||
Reference in New Issue
Block a user