mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* added packages reference menu item. * removed the draft flag. * Updated docs by running script.
62 lines
1.2 KiB
Markdown
62 lines
1.2 KiB
Markdown
+++
|
|
# -----------------------------------------------------------------------
|
|
# Do not edit this file. It is automatically generated by API Documenter.
|
|
# -----------------------------------------------------------------------
|
|
title = "VariableSuggestion"
|
|
keywords = ["grafana","documentation","sdk","@grafana/data"]
|
|
type = "docs"
|
|
+++
|
|
|
|
## VariableSuggestion interface
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
export interface VariableSuggestion
|
|
```
|
|
<b>Import</b>
|
|
|
|
```typescript
|
|
import { VariableSuggestion } from '@grafana/data';
|
|
```
|
|
<b>Properties</b>
|
|
|
|
| Property | Type | Description |
|
|
| --- | --- | --- |
|
|
| [documentation](#documentation-property) | <code>string</code> | |
|
|
| [label](#label-property) | <code>string</code> | |
|
|
| [origin](#origin-property) | <code>VariableOrigin</code> | |
|
|
| [value](#value-property) | <code>string</code> | |
|
|
|
|
### documentation property
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
documentation?: string;
|
|
```
|
|
|
|
### label property
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
label: string;
|
|
```
|
|
|
|
### origin property
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
origin: VariableOrigin;
|
|
```
|
|
|
|
### value property
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
value: string;
|
|
```
|