Files
grafana/docs/sources/packages_api/runtime/backendsrvrequest.md
Marcus Andersson a2d741f60f Docs: run the api-extractor on master to update docs (#23726)
* regenerated packages docs.

* fixed spelling issues.

* fixed spelling issues.
2020-04-21 10:41:50 +02:00

842 B

+++

-----------------------------------------------------------------------

Do not edit this file. It is automatically generated by API Documenter.

-----------------------------------------------------------------------

title = "BackendSrvRequest" keywords = ["grafana","documentation","sdk","@grafana/runtime"] type = "docs" draft = true +++

BackendSrvRequest type

BackendSrvRequest type

Used to initiate a remote call via the BackendSrv

Signature

export declare type BackendSrvRequest = {
    url: string;
    retry?: number;
    headers?: any;
    method?: string;
    showSuccessAlert?: boolean;
    requestId?: string;
    [key: string]: any;
};

Import

import { BackendSrvRequest } from '@grafana/runtime';