Variable ProxyModuleConst
ProxyModule: 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
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;
};
}>;
}>