+++ # ----------------------------------------------------------------------- # Do not edit this file. It is automatically generated by API Documenter. # ----------------------------------------------------------------------- title = "BuildInfo" keywords = ["grafana","documentation","sdk","@grafana/data"] type = "docs" +++ ## BuildInfo interface Describes the build information that will be available via the Grafana configuration. Signature ```typescript export interface BuildInfo ``` Import ```typescript import { BuildInfo } from '@grafana/data'; ``` Properties | Property | Type | Description | | --- | --- | --- | | [commit](#commit-property) | string | | | [edition](#edition-property) | string | | | [env](#env-property) | string | | | [hasUpdate](#hasupdate-property) | boolean | | | [hideVersion](#hideversion-property) | boolean | | | [isEnterprise](#isenterprise-property) | boolean | Is set to true when running Grafana Enterprise edition. | | [latestVersion](#latestversion-property) | string | | | [version](#version-property) | string | | ### commit property Signature ```typescript commit: string; ``` ### edition property Signature ```typescript edition: string; ``` ### env property Signature ```typescript env: string; ``` ### hasUpdate property Signature ```typescript hasUpdate: boolean; ``` ### hideVersion property Signature ```typescript hideVersion: boolean; ``` ### isEnterprise property Is set to true when running Grafana Enterprise edition. Signature ```typescript isEnterprise: boolean; ``` ### latestVersion property Signature ```typescript latestVersion: string; ``` ### version property Signature ```typescript version: string; ```