UNPKG

search-client

Version:

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

8 lines (7 loc) 297 B
import { Query } from '../Common'; import { IAuthenticationSettings } from './AuthenticationSettings'; export interface IAuthentication { settings: IAuthenticationSettings; fetch(query: Query, suppressCallbacks: boolean): Promise<string>; update(query: Query, delay?: number): void; }