/*!
 * Copyright Sysdoc @ 2019
 */
export interface ISearchResultEntry<T> {
    title: string;
    href: string;
    snippet: string;
    datePublished: Date;
    payload?: T;
}
