* added packages reference menu item. * removed the draft flag. * Updated docs by running script.
77 lines
1.6 KiB
Markdown
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;
|
|
```
|