UNPKG

@docsvision/webclient

Version:

Type definitions for DocsVision WebClient scripts and extensions.

12 lines (11 loc) 407 B
/// <reference types="react" /> import { Store } from 'effector'; export interface ISelectionRowService { selectionRowId?: Store<string>; className?: string; cancelSelection?: (ev?: React.MouseEvent) => void; } export declare type $SelectionRow = { selectionRowService: ISelectionRowService; }; export declare const $SelectionRow: string | ((model?: $SelectionRow) => ISelectionRowService);