UNPKG

@docsvision/webclient

Version:

Type definitions for DocsVision WebClient scripts and extensions.

16 lines (15 loc) 640 B
import { IFilePickerValue } from '@docsvision/webclient/Platform/IFilePickerValue'; import { LoadingState } from '@docsvision/webclient/System/LoadingState'; import React from 'react'; export interface IFilePickerValueViewProps { enableVersioning: boolean; value: IFilePickerValue; title: string; tabIndex: number; loadingState: LoadingState; showDeleteButton: boolean; onNameClick: (ev: React.MouseEvent) => void; onVersionClick: (ev: React.MouseEvent) => void; onDeleteClick: (ev: React.MouseEvent) => void; } export declare function FilePickerValueView(props: IFilePickerValueViewProps): JSX.Element;