Menu

Important: This documentation is about an older version. It's relevant only to the release noted, many of the features and functions have been updated or replaced. Please view the current version.

Enterprise Open source

ScopedVar interface

Signature

typescript
export interface ScopedVar<T = any> 

Import

typescript
import { ScopedVar } from '@grafana/data';

Properties

PropertyTypeDescription
textany
valueT

text property

Signature

typescript
text: any;

value property

Signature

typescript
value: T;