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
Currently the following interface of RequestBuilder defines a header function that only support types string | boolean | number | bigint
string | boolean | number | bigint
export interface RequestBuilder<BaseUrlParamType, AuthParams> { ... header(name: string, value?: string | boolean | number | bigint | null): void; }
This does not include the types like object or unknown. Please update this function to allow the support of all kind of header parameters
object
unknown
The text was updated successfully, but these errors were encountered:
asadali214
Successfully merging a pull request may close this issue.
Currently the following interface of RequestBuilder defines a header function that only support types
string | boolean | number | bigint
This does not include the types like
object
orunknown
. Please update this function to allow the support of all kind of header parametersThe text was updated successfully, but these errors were encountered: