mirror of
https://github.com/grafana/grafana.git
synced 2025-07-30 21:02:45 +08:00

* added packages reference menu item. * removed the draft flag. * Updated docs by running script.
104 lines
2.1 KiB
Markdown
104 lines
2.1 KiB
Markdown
+++
|
|
# -----------------------------------------------------------------------
|
|
# Do not edit this file. It is automatically generated by API Documenter.
|
|
# -----------------------------------------------------------------------
|
|
title = "PluginMetaInfo"
|
|
keywords = ["grafana","documentation","sdk","@grafana/data"]
|
|
type = "docs"
|
|
+++
|
|
|
|
## PluginMetaInfo interface
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
export interface PluginMetaInfo
|
|
```
|
|
<b>Import</b>
|
|
|
|
```typescript
|
|
import { PluginMetaInfo } from '@grafana/data';
|
|
```
|
|
<b>Properties</b>
|
|
|
|
| Property | Type | Description |
|
|
| --- | --- | --- |
|
|
| [author](#author-property) | <code>{</code><br/><code> name: string;</code><br/><code> url?: string;</code><br/><code> }</code> | |
|
|
| [build](#build-property) | <code>PluginBuildInfo</code> | |
|
|
| [description](#description-property) | <code>string</code> | |
|
|
| [links](#links-property) | <code>PluginMetaInfoLink[]</code> | |
|
|
| [logos](#logos-property) | <code>{</code><br/><code> large: string;</code><br/><code> small: string;</code><br/><code> }</code> | |
|
|
| [screenshots](#screenshots-property) | <code>ScreenshotInfo[]</code> | |
|
|
| [updated](#updated-property) | <code>string</code> | |
|
|
| [version](#version-property) | <code>string</code> | |
|
|
|
|
### author property
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
author: {
|
|
name: string;
|
|
url?: string;
|
|
};
|
|
```
|
|
|
|
### build property
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
build?: PluginBuildInfo;
|
|
```
|
|
|
|
### description property
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
description: string;
|
|
```
|
|
|
|
### links property
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
links: PluginMetaInfoLink[];
|
|
```
|
|
|
|
### logos property
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
logos: {
|
|
large: string;
|
|
small: string;
|
|
};
|
|
```
|
|
|
|
### screenshots property
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
screenshots: ScreenshotInfo[];
|
|
```
|
|
|
|
### updated property
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
updated: string;
|
|
```
|
|
|
|
### version property
|
|
|
|
<b>Signature</b>
|
|
|
|
```typescript
|
|
version: string;
|
|
```
|