11 lines
200 B
TypeScript
11 lines
200 B
TypeScript
export type HttpRequestExtraParams = {
|
|
scheme?: "http" | "https";
|
|
body?: {
|
|
[x: string]: any;
|
|
};
|
|
query?: {
|
|
[x: string]: any;
|
|
};
|
|
urlEncodedFormBody?: boolean;
|
|
};
|