import { ODataHttpClient } from "@odata2ts/http-client-api"; import { RequestCmdOptions } from "./RequestCmd"; import { UrlRequestCmd } from "./UrlRequestCmd"; export declare class UrlGetRequestCmd extends UrlRequestCmd { protected client: ClientType; protected url: string; protected options: RequestCmdOptions; constructor(client: ClientType, url: string, options?: RequestCmdOptions); /** * Transform this GET request into a POST request by appending a special request converter: * - GET => POST * - url?params => url/$request * - data: undefined => data: ?params * - headers => add: content-type = text plain */ asPostRequest(): this; }