UNPKG

@docsvision/webclient

Version:

Type definitions for DocsVision WebClient scripts and extensions.

9 lines (8 loc) 347 B
import React from 'react'; import { DiagramParams } from '@docsvision/webclient/Platform/DiagramOptions'; export interface IDiagramLoaderProps { options: DiagramParams; wrapperRef: React.RefObject<HTMLDivElement>; show: boolean; } export declare function DiagramLoader({ options, wrapperRef, show }: IDiagramLoaderProps): JSX.Element;