UNPKG

@docsvision/webclient

Version:

Type definitions for DocsVision WebClient scripts and extensions.

15 lines (14 loc) 317 B
import React from "react"; export interface IFileMenuItem { onClick: (e?: any) => void; title: string; name: string; displayName: string; visible: boolean; className?: string; ref?: React.Ref<HTMLSpanElement>; children?: any; attributes?: { [key: string]: string; }; }