BaseConfig
Base configuration object for HTTP requests. It includes essential configurations like the HTTP method.
This type serves as a base for more detailed configuration objects by specifying the method of the HTTP request.
type BaseConfig = {
[key: string]: any;
compression?: CompressionOptions;
method?: "GET" | "POST";
subscribe?: boolean;
};