Skip to content

Commit ac50299

Browse files
committed
restructuring observability types
1 parent 2a72a16 commit ac50299

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

x-pack/plugins/apm/server/lib/observability_overview/get_transaction_coordinates.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* you may not use this file except in compliance with the Elastic License.
1010
*/
1111
import { rangeFilter } from '../../../common/utils/range_filter';
12-
import { Coordinates } from '../../../../observability/public';
12+
import { Coordinates } from '../../../../observability/typings/common';
1313
import { Setup, SetupTimeRange } from '../helpers/setup_request';
1414
import { ProcessorEvent } from '../../../common/processor_event';
1515

x-pack/plugins/observability/typings/common.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,5 @@ export type ObservabilityApp = 'infra_metrics' | 'infra_logs' | 'apm' | 'uptime'
99
export type PromiseReturnType<Func> = Func extends (...args: any[]) => Promise<infer Value>
1010
? Value
1111
: Func;
12+
13+
export { Coordinates } from '../public/typings/fetch_overview_data/';

0 commit comments

Comments
 (0)