2020-04-21 03:41:50 -05:00
+++
# -----------------------------------------------------------------------
# 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 |
| --- | --- | --- |
2020-07-01 02:12:35 -05:00
| [datasourceInsights ](#datasourceinsights-property ) | < code > boolean</ code > | |
2020-04-21 03:41:50 -05:00
| [expressions ](#expressions-property ) | < code > boolean</ code > | |
| [meta ](#meta-property ) | < code > boolean</ code > | |
| [newEdit ](#newedit-property ) | < code > boolean</ code > | |
2020-07-01 02:12:35 -05:00
| [reportGrid ](#reportgrid-property ) | < code > boolean</ code > | |
2020-04-21 03:41:50 -05:00
| [transformations ](#transformations-property ) | < code > boolean</ code > | |
2020-07-01 02:12:35 -05:00
### datasourceInsights property
< b > Signature< / b >
```typescript
datasourceInsights: boolean;
```
2020-04-21 03:41:50 -05:00
### 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;
```
2020-07-01 02:12:35 -05:00
### reportGrid property
2020-04-21 03:41:50 -05:00
< b > Signature< / b >
```typescript
2020-07-01 02:12:35 -05:00
reportGrid: boolean;
2020-04-21 03:41:50 -05:00
```
### transformations property
< b > Signature< / b >
```typescript
transformations: boolean;
```