Variable ProxyRequestMethodConst

ProxyRequestMethod: 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

  • expectBody: {
        body: {
            required: true;
            type: AnyStringTypeInformation;
        };
        headers: {
            required: true;
            type: AnyTypeInformation<any>;
        };
        method: {
            required: true;
            type: AnyStringTypeInformation;
        };
        url: {
            required: true;
            type: AnyStringTypeInformation;
        };
    }
    • body: {
          required: true;
          type: AnyStringTypeInformation;
      }
      • required: true
      • type: AnyStringTypeInformation
    • headers: {
          required: true;
          type: AnyTypeInformation<any>;
      }
      • required: true
      • type: AnyTypeInformation<any>
    • method: {
          required: true;
          type: AnyStringTypeInformation;
      }
      • required: true
      • type: AnyStringTypeInformation
    • url: {
          required: true;
          type: AnyStringTypeInformation;
      }
      • required: true
      • type: AnyStringTypeInformation
  • returns: ObjectTypeInformation<{
        body: {
            required: true;
            type: AnyStringTypeInformation;
        };
        headers: {
            required: true;
            type: AnyTypeInformation<any>;
        };
        statusCode: {
            required: true;
            type: AnyNumberTypeInformation;
        };
    }>

Generated using TypeDoc