UNPKG

@docsvision/webclient

Version:

Type definitions for DocsVision WebClient scripts and extensions.

11 lines (9 loc) 487 B
/// <reference types="react" /> import { IControlSelectorProps } from '@docsvision/webclient/Helpers/ControlSelector/IControlSelectorProps'; import { IDiagramQueryParameter } from '@docsvision/webclient/Platform/IDiagramModels'; import { Event } from 'effector'; export interface IDiagramQueryProps { queryParams: Array<IControlSelectorProps>; editQueryParams: Event<IDiagramQueryParameter>; } export declare function DiagramQueryParams(props: IDiagramQueryProps): JSX.Element;