* added packages reference menu item. * removed the draft flag. * Updated docs by running script.
73 lines
1.5 KiB
Markdown
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;
|
|
```
|