@docsvision/webclient
Version:
Type definitions for DocsVision WebClient scripts and extensions.
16 lines (15 loc) • 513 B
TypeScript
/// <reference types="react" />
import { ITypeaheadVariant } from "@docsvision/webclient/Helpers/Typeahead/Models/ITypeaheadVariant";
/** @internal */
export declare class TypeaheadItem {
data: ITypeaheadVariant;
constructor(data: ITypeaheadVariant);
getName(): string;
getTitle(): string;
getIconCssClass(): string;
getValue(): string;
getVisible(): boolean;
getFavored(): boolean;
renderRightButtons(): React.ReactNodeArray | React.ReactNode;
htmlElement: HTMLElement;
}