kibana/x-pack/plugins/apm/typings/ui_filters.ts
Shahzad 4d474bfe4d
[User Experience App] Use filters shared component (#101459)
Co-authored-by: Casper Hübertz <casper@formgeist.com>
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
2021-06-17 19:19:16 +02:00

22 lines
532 B
TypeScript

/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0; you may not use this file except in compliance with the Elastic License
* 2.0.
*/
import { UxLocalUIFilterName } from '../common/ux_ui_filter';
export type UxUIFilters = {
environment?: string;
} & {
[key in UxLocalUIFilterName]?: string[];
};
export interface BreakdownItem {
name: string;
type: string;
fieldName: string;
selected?: boolean;
}