Files
grafana/docs/sources/packages_api/data/registryitem.md
T
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

74 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"
draft = true
+++
## 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;
```