mirror of
https://github.com/grafana/grafana.git
synced 2025-02-11 16:15:42 -06:00
* added packages reference menu item. * removed the draft flag. * Updated docs by running script.
34 lines
828 B
Markdown
34 lines
828 B
Markdown
+++
|
|
# -----------------------------------------------------------------------
|
|
# Do not edit this file. It is automatically generated by API Documenter.
|
|
# -----------------------------------------------------------------------
|
|
title = "BackendSrvRequest"
|
|
keywords = ["grafana","documentation","sdk","@grafana/runtime"]
|
|
type = "docs"
|
|
+++
|
|
|
|
## BackendSrvRequest type
|
|
|
|
### BackendSrvRequest type
|
|
|
|
Used to initiate a remote call via the [BackendSrv](./runtime/backendsrv.md)
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
export declare type BackendSrvRequest = {
|
|
url: string;
|
|
retry?: number;
|
|
headers?: any;
|
|
method?: string;
|
|
showSuccessAlert?: boolean;
|
|
requestId?: string;
|
|
[key: string]: any;
|
|
};
|
|
```
|
|
<b>Import</b>
|
|
|
|
```typescript
|
|
import { BackendSrvRequest } from '@grafana/runtime';
|
|
```
|