+++
# -----------------------------------------------------------------------
# Do not edit this file. It is automatically generated by API Documenter.
# -----------------------------------------------------------------------
title = "PluginMetaInfo"
keywords = ["grafana","documentation","sdk","@grafana/data"]
type = "docs"
+++
## PluginMetaInfo interface
Signature
```typescript
export interface PluginMetaInfo
```
Import
```typescript
import { PluginMetaInfo } from '@grafana/data';
```
Properties
| Property | Type | Description |
| --- | --- | --- |
| [author](#author-property) | {
name: string;
url?: string;
}
| |
| [build](#build-property) | PluginBuildInfo
| |
| [description](#description-property) | string
| |
| [links](#links-property) | PluginMetaInfoLink[]
| |
| [logos](#logos-property) | {
large: string;
small: string;
}
| |
| [screenshots](#screenshots-property) | ScreenshotInfo[]
| |
| [updated](#updated-property) | string
| |
| [version](#version-property) | string
| |
### author property
Signature
```typescript
author: {
name: string;
url?: string;
};
```
### build property
Signature
```typescript
build?: PluginBuildInfo;
```
### description property
Signature
```typescript
description: string;
```
### links property
Signature
```typescript
links: PluginMetaInfoLink[];
```
### logos property
Signature
```typescript
logos: {
large: string;
small: string;
};
```
### screenshots property
Signature
```typescript
screenshots: ScreenshotInfo[];
```
### updated property
Signature
```typescript
updated: string;
```
### version property
Signature
```typescript
version: string;
```