We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We use the wix-fetch with request options like credentials and cache. May you add more request options to types.
wix-fetch
And may you change property body, headers etc... as a not required property.
For example:
type RequestMode = "cors" | "no-cors" | "same-origin"; type RequestCredentials = "omit" | "include" | "same-origin"; type RequestCache = "default" | "force-cache" | "no-cache" | "no-store" | "only-if-cached" | "reload"; type WixFetchRequest = { method?: string; headers?: object; body?: string; mode?: RequestMode; credentials?: RequestCredentials; cache?: RequestCache; };
Thanks!
The text was updated successfully, but these errors were encountered:
moved this issue to corvid-types wix-incubator/corvid-types#15
Sorry, something went wrong.
No branches or pull requests
We use the
wix-fetch
with request options like credentials and cache. May you add more request options to types.And may you change property body, headers etc... as a not required property.
For example:
Thanks!
The text was updated successfully, but these errors were encountered: