@docsvision/webclient
Version:
Type definitions for DocsVision WebClient scripts and extensions.
15 lines (14 loc) • 799 B
TypeScript
/// <reference types="react" />
import { $DeviceType, $ApplicationSettings } from '@docsvision/webclient/StandardServices';
import { GenModels } from '@docsvision/webclient/Generated/DocsVision.WebClient.Models';
export interface ISearchResultsItemProps {
card: GenModels.DigestRow;
cardPresentation: GenModels.CardPresentation;
selected: boolean;
onClick: (presentation: GenModels.CardPresentation) => void;
onMultiSelectClick: (presentation: GenModels.CardPresentation) => void;
htmlPresentation: boolean;
highlighted: boolean;
services: $DeviceType & $ApplicationSettings;
}
export declare function SearchResultsItem({ card, cardPresentation, selected, highlighted, onClick, onMultiSelectClick, htmlPresentation, services }: ISearchResultsItemProps): JSX.Element;