From 8ebbe06377646e40517e073d3cf07aa97b0cc6bc Mon Sep 17 00:00:00 2001 From: Joey <90795735+joey-grafana@users.noreply.github.com> Date: Tue, 17 Oct 2023 09:19:37 +0100 Subject: [PATCH] Tracing: Remove unused code (#76538) Remove unused code --- .../TraceView/components/types/search.tsx | 27 ------------------- 1 file changed, 27 deletions(-) delete mode 100644 public/app/features/explore/TraceView/components/types/search.tsx diff --git a/public/app/features/explore/TraceView/components/types/search.tsx b/public/app/features/explore/TraceView/components/types/search.tsx deleted file mode 100644 index a2ce3710a93..00000000000 --- a/public/app/features/explore/TraceView/components/types/search.tsx +++ /dev/null @@ -1,27 +0,0 @@ -// Copyright (c) 2017 Uber Technologies, Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - -import { TNil } from './index'; - -export type SearchQuery = { - end: number | string; - limit: number | string; - lookback: string; - maxDuration: null | string; - minDuration: null | string; - operation: string | TNil; - service: string; - start: number | string; - tags: string | TNil; -};