@atlaskit/global-search
Version:
A cross-product search component (batteries included)
8 lines (7 loc) • 341 B
TypeScript
import { PersonResult } from '../model/Result';
import PeopleSearchClientImpl from './PeopleSearchClient';
export declare class CachingPeopleSearchClient extends PeopleSearchClientImpl {
prefetchPeople: Promise<PersonResult[]> | undefined;
constructor(url: string, cloudId: string);
getRecentPeople(): Promise<PersonResult[]>;
}