UNPKG

@docsvision/webclient

Version:

Type definitions for DocsVision WebClient scripts and extensions.

10 lines (9 loc) 329 B
/** @internal Query data, that would be sent by typeahead */ export interface ITypeaheadSearchQuery { /** Search text, entered by user in quick search field */ searchText?: string; /** Count of items to skip (paginator logic) */ skipCount: number; /** Max items count in the result */ maxCount: number; }