/** * 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. */ /** The entry that makes it out of the search pipeline */ export interface RawSearchEntry { TS: string; Tag: number; SRC: string; Data: string | null; Enumerated: Array; } export declare const isRawSearchEntry: (v: unknown) => v is RawSearchEntry; /** Used for scripting and ingesting entries via the webserver */ export interface RawStringTagEntry { TS: string; Tag: string; SRC: string; Data: string | null; Enumerated: Array; } export declare const isRawStringTagEntry: (v: unknown) => v is RawStringTagEntry; /** String representation of enumerated values */ export interface RawEnumeratedPair { Name: string; ValueStr: string; } export declare const isRawEnumeratedPair: (v: unknown) => v is RawEnumeratedPair;