You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
method?: RequestMethod;// This is an enum type because it enforces the above valid options on callers (which do not directly use node-fetch's Request object)
110
113
form?: {[key: string]: string};
111
114
body?: string;
112
115
}
113
116
114
-
exportinterfaceRequestLike{
115
-
url: string;
116
-
headers: HeadersLike;
117
-
method: string;// This is a string because node-fetch's Request defines it as such
0 commit comments