UNPKG

@docsvision/webclient

Version:

Type definitions for DocsVision WebClient scripts and extensions.

18 lines (16 loc) 552 B
/// <reference types="react" /> import { HtmlProps } from '@docsvision/web/core/component'; export interface IButtonDescription { displayName: string; className?: string; visible: boolean; onClick: () => void; disabled?: boolean; name?: string; } export interface IStaffDirectoryTreeAddButtonProps extends HtmlProps.div { buttons: IButtonDescription[]; onAddButtonClick: () => void; displayName?: string; } export declare function StaffDirectoryTreeAddButton(props: IStaffDirectoryTreeAddButtonProps): JSX.Element;