Type Alias APIRequestConfig

APIRequestConfig: {
    data?: unknown;
    method: HTTPMethod;
    options?: RequestOptions;
    path: string;
}