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