UNPKG

search-client

Version:

Javascript library for executing searches in the Haive search-index via the SearchManager REST interface.

18 lines (17 loc) 279 B
/** * Defines the interface for metadata. */ export interface IMetaData { /** * Sequential running number per metaList */ $id?: number; /** * The metadata name. */ key: string; /** * The metadata value. */ value: string; }