Tracing: Remove unused code (#76538)

Remove unused code
This commit is contained in:
Joey 2023-10-17 09:19:37 +01:00 committed by GitHub
parent 676877f882
commit 8ebbe06377
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
};