Menu

Important: This documentation is about an older version. It's relevant only to the release noted, many of the features and functions have been updated or replaced. Please view the current version.

Enterprise Open source

PluginMetaInfo interface

Signature

typescript
export interface PluginMetaInfo 

Import

typescript
import { PluginMetaInfo } from '@grafana/data';

Properties

PropertyTypeDescription
author{
name: string;
url?: string;
}
buildPluginBuildInfo
descriptionstring
linksPluginMetaInfoLink[]
logos{
large: string;
small: string;
}
screenshotsScreenshotInfo[]
updatedstring
versionstring

author property

Signature

typescript
author: {
        name: string;
        url?: string;
    };

build property

Signature

typescript
build?: PluginBuildInfo;

description property

Signature

typescript
description: string;

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;