UNPKG

@docsvision/webclient

Version:

Type definitions for DocsVision WebClient scripts and extensions.

14 lines (13 loc) 350 B
/// <reference types="react" /> /** @internal */ export interface IEmployeeInfoProps { employeeName: string; position?: string; employeeId: string; imageHash?: string; } /** @internal */ export interface IImageContainerStyleProps { imageUrl: string; } export declare function EmployeeInfo(props: IEmployeeInfoProps): JSX.Element;