From 056adb5774db449c06c893d59ca841ba49f716fe Mon Sep 17 00:00:00 2001 From: Marc Mignonsin Date: Tue, 4 Feb 2025 10:33:10 +0100 Subject: [PATCH] chore: Remove unused TS type --- .../infrastructure/data-transformations.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/pages/ProfilesExplorerView/components/SceneByVariableRepeaterGrid/infrastructure/data-transformations.ts b/src/pages/ProfilesExplorerView/components/SceneByVariableRepeaterGrid/infrastructure/data-transformations.ts index 34299176..26170b00 100644 --- a/src/pages/ProfilesExplorerView/components/SceneByVariableRepeaterGrid/infrastructure/data-transformations.ts +++ b/src/pages/ProfilesExplorerView/components/SceneByVariableRepeaterGrid/infrastructure/data-transformations.ts @@ -2,8 +2,6 @@ import { DataFrame } from '@grafana/data'; import { merge } from 'lodash'; import { map, Observable } from 'rxjs'; -export type StatName = 'totalSeriesCount' | 'allValuesSum' | 'maxValue'; - // General note: because (e.g.) SceneLabelValuesTimeseries sets the data provider in its constructor, data can come as undefined, hence all the optional chaining operators // in the transformers below