/** * Copyright 2022 Gravwell, Inc. All rights reserved. * * Contact: [legal@gravwell.io](mailto:legal@gravwell.io) * * This software may be modified and distributed under the terms of the MIT * license. See the LICENSE file for details. */ import { ElementFilterOperation } from './element-filter-operation'; export interface DataExplorerEntry { tag: string; elements: Array; } export declare const isDataExplorerEntry: (v: unknown) => v is DataExplorerEntry; /** Item extracted from an entry using the data exploration system. */ export interface DataExplorerElement { module?: string | undefined; name: string; path: string; arguments: string | null; value: string | number | boolean | null; filters: Array; children: Array; }