@docsvision/webclient
Version:
Type definitions for DocsVision WebClient scripts and extensions.
18 lines (16 loc) • 558 B
TypeScript
/// <reference types="react" />
import { HtmlProps } from '@docsvision/web/core/component';
export interface IButtonDescription {
displayName: string;
className?: string;
visible: boolean;
onClick: () => void;
disabled?: boolean;
tooltip?: string;
}
export interface IPowersDirectoryTreeAddButtonProps extends HtmlProps.div {
buttons: IButtonDescription[];
onAddButtonClick: () => void;
displayName?: string;
}
export declare function PowersDirectoryTreeAddButton(props: IPowersDirectoryTreeAddButtonProps): JSX.Element;