ProxyApi: RsterApi<"Proxy", {
proxy: RsterApiModule<"Proxy", {}, {
request: RsterApiMethod<"request", {
expectBody: {
body: {
required: true;
type: AnyStringTypeInformation;
};
headers: {
required: true;
type: AnyTypeInformation<any>;
};
method: {
required: true;
type: AnyStringTypeInformation;
};
url: {
required: true;
type: AnyStringTypeInformation;
};
};
returns: ObjectTypeInformation<{
body: {
required: true;
type: AnyStringTypeInformation;
};
headers: {
required: true;
type: AnyTypeInformation<any>;
};
statusCode: {
required: true;
type: AnyNumberTypeInformation;
};
}>;
}>;
}>;
}, {}> = ...
Type declaration
proxy: RsterApiModule<"Proxy", {}, {
request: RsterApiMethod<"request", {
expectBody: {
body: {
required: true;
type: AnyStringTypeInformation;
};
headers: {
required: true;
type: AnyTypeInformation<any>;
};
method: {
required: true;
type: AnyStringTypeInformation;
};
url: {
required: true;
type: AnyStringTypeInformation;
};
};
returns: ObjectTypeInformation<{
body: {
required: true;
type: AnyStringTypeInformation;
};
headers: {
required: true;
type: AnyTypeInformation<any>;
};
statusCode: {
required: true;
type: AnyNumberTypeInformation;
};
}>;
}>;
}>