Files
grafana/docs/sources/packages_api/data/featuretoggles.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

77 lines
1.6 KiB
Markdown

+++
# -----------------------------------------------------------------------
# Do not edit this file. It is automatically generated by API Documenter.
# -----------------------------------------------------------------------
title = "FeatureToggles"
keywords = ["grafana","documentation","sdk","@grafana/data"]
type = "docs"
+++
## FeatureToggles interface
Describes available feature toggles in Grafana. These can be configured via the `conf/custom.ini` to enable features under development or not yet available in stable version.
<b>Signature</b>
```typescript
export interface FeatureToggles
```
<b>Import</b>
```typescript
import { FeatureToggles } from '@grafana/data';
```
<b>Properties</b>
| Property | Type | Description |
| --- | --- | --- |
| [expressions](#expressions-property) | <code>boolean</code> | |
| [meta](#meta-property) | <code>boolean</code> | |
| [newEdit](#newedit-property) | <code>boolean</code> | |
| [newVariables](#newvariables-property) | <code>boolean</code> | |
| [transformations](#transformations-property) | <code>boolean</code> | |
### expressions property
<b>Signature</b>
```typescript
expressions: boolean;
```
### meta property
<b>Signature</b>
```typescript
meta: boolean;
```
## Remarks
Available only in Grafana Enterprise
### newEdit property
<b>Signature</b>
```typescript
newEdit: boolean;
```
### newVariables property
<b>Signature</b>
```typescript
newVariables: boolean;
```
### transformations property
<b>Signature</b>
```typescript
transformations: boolean;
```