Files
grafana/docs/sources/packages_api/data/registryitem.md
Marcus Andersson cc3fc18076 Docs: enable packages reference docs for 7-beta (#23953)
* added packages reference menu item.

* removed the draft flag.

* Updated docs by running script.
2020-04-28 09:53:58 +02:00

73 lines
1.5 KiB
Markdown

+++
# -----------------------------------------------------------------------
# Do not edit this file. It is automatically generated by API Documenter.
# -----------------------------------------------------------------------
title = "RegistryItem"
keywords = ["grafana","documentation","sdk","@grafana/data"]
type = "docs"
+++
## RegistryItem interface
<b>Signature</b>
```typescript
export interface RegistryItem
```
<b>Import</b>
```typescript
import { RegistryItem } from '@grafana/data';
```
<b>Properties</b>
| Property | Type | Description |
| --- | --- | --- |
| [aliasIds](#aliasids-property) | <code>string[]</code> | |
| [description](#description-property) | <code>string</code> | |
| [excludeFromPicker](#excludefrompicker-property) | <code>boolean</code> | Some extensions should not be user selectable like: 'all' and 'any' matchers; |
| [id](#id-property) | <code>string</code> | |
| [name](#name-property) | <code>string</code> | |
### aliasIds property
<b>Signature</b>
```typescript
aliasIds?: string[];
```
### description property
<b>Signature</b>
```typescript
description?: string;
```
### excludeFromPicker property
Some extensions should not be user selectable like: 'all' and 'any' matchers;
<b>Signature</b>
```typescript
excludeFromPicker?: boolean;
```
### id property
<b>Signature</b>
```typescript
id: string;
```
### name property
<b>Signature</b>
```typescript
name: string;
```