Interface backendRequestArgs

interface backendRequestArgs {
    body?: Record<string, any>;
    method: "GET" | "POST" | "PUT" | "DELETE";
    url?: string;
}

Properties

Properties

body?: Record<string, any>
method: "GET" | "POST" | "PUT" | "DELETE"
url?: string