Files
grafana/docs/sources/packages_api/data/pluginbuildinfo.md
Marcus Andersson cc3fc18076 Docs: enable packages reference docs for 7-beta (#23953)
* added packages reference menu item.

* removed the draft flag.

* Updated docs by running script.
2020-04-28 09:53:58 +02:00

80 lines
1.4 KiB
Markdown

+++
# -----------------------------------------------------------------------
# Do not edit this file. It is automatically generated by API Documenter.
# -----------------------------------------------------------------------
title = "PluginBuildInfo"
keywords = ["grafana","documentation","sdk","@grafana/data"]
type = "docs"
+++
## PluginBuildInfo interface
<b>Signature</b>
```typescript
export interface PluginBuildInfo
```
<b>Import</b>
```typescript
import { PluginBuildInfo } from '@grafana/data';
```
<b>Properties</b>
| Property | Type | Description |
| --- | --- | --- |
| [branch](#branch-property) | <code>string</code> | |
| [hash](#hash-property) | <code>string</code> | |
| [number](#number-property) | <code>number</code> | |
| [pr](#pr-property) | <code>number</code> | |
| [repo](#repo-property) | <code>string</code> | |
| [time](#time-property) | <code>number</code> | |
### branch property
<b>Signature</b>
```typescript
branch?: string;
```
### hash property
<b>Signature</b>
```typescript
hash?: string;
```
### number property
<b>Signature</b>
```typescript
number?: number;
```
### pr property
<b>Signature</b>
```typescript
pr?: number;
```
### repo property
<b>Signature</b>
```typescript
repo?: string;
```
### time property
<b>Signature</b>
```typescript
time?: number;
```