Skip to content

Commit

Permalink
refac: move files (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
ZuperZee committed Jun 15, 2023
1 parent 056666a commit fa8495f
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
1 change: 0 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,3 @@ export * from "./utils/getDataFieldsFromName";
export * from "./utils/getFieldFromName";
export * from "./utils/getSeriesFromName";
export * from "./utils/evaluateString";
export * from "./utils/getMetricValueWithFilters";
1 change: 0 additions & 1 deletion src/utils/getMetricValueWithFilters/index.ts

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import { DataFrame, Field, PanelData } from "@grafana/data";

import { ReducerID } from "../field";
import { getValue } from "../metricValue";
import { getShowcaseMetricValue } from "../metricValue/getShowcaseMetricValue";

import { getValue } from "./getMetricValueFromName";
import { getShowcaseMetricValue } from "./getShowcaseMetricValue";

declare const data: PanelData;

Expand Down
1 change: 1 addition & 0 deletions src/utils/metricValue/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
export * from "./getMetricValueFromExpression";
export * from "./getMetricValue";
export * from "./getMetricValueFromName";
export * from "./getMetricValueWithFilters";
export * from "./getShowcaseMetricValue";

0 comments on commit fa8495f

Please sign in to comment.