@docsvision/webclient
Version:
Type definitions for DocsVision WebClient scripts and extensions.
15 lines (14 loc) • 589 B
TypeScript
import { GenModels } from "@docsvision/webclient/Generated/DocsVision.WebClient.Models";
import { ITypeaheadVariant } from "@docsvision/webclient/Helpers/Typeahead/Models/ITypeaheadVariant";
/** @internal */
export declare class EmployeeTypeaheadVariant implements ITypeaheadVariant {
data: GenModels.EmployeeDataModel;
mTitle: string;
mFavored: boolean;
constructor(data: GenModels.EmployeeDataModel, title: string, favored?: boolean);
get name(): string;
get value(): string;
get iconCssClass(): string;
get title(): string;
get favored(): boolean;
}