mirror of
https://github.com/grafana/grafana.git
synced 2025-09-28 05:13:50 +08:00
6 lines
165 B
TypeScript
6 lines
165 B
TypeScript
import { SelectableValue } from '@grafana/data';
|
|
|
|
export function toSelectableValue<T extends string>(t: T): SelectableValue<T> {
|
|
return { label: t, value: t };
|
|
}
|