Interface HttpRequest

interface HttpRequest {
    body?: Record<string, any>;
    method: HttpMethod;
    url: string;
}

Properties

Properties

body?: Record<string, any>
method: HttpMethod
url: string