Interface PluginRequest

interface PluginRequest {
    body?: any;
    method: "GET" | "POST" | "PUT" | "DELETE";
    params: {
        [key: string]: string;
    };
    url: string;
}

Properties

Properties

body?: any
method: "GET" | "POST" | "PUT" | "DELETE"
params: {
    [key: string]: string;
}

Type declaration

  • [key: string]: string
url: string