@docsvision/webclient
Version:
Type definitions for DocsVision WebClient scripts and extensions.
12 lines (11 loc) • 433 B
TypeScript
import { ISelectionRowService } from '@docsvision/webclient/BackOffice/$SelectionRow';
import { Event, Store } from 'effector';
export declare class SelectionRowService implements ISelectionRowService {
private _className;
private rowId;
_cancelSelection: Event<void>;
get className(): string;
set className(value: string);
get selectionRowId(): Store<string>;
set selectionRowId(value: Store<string>);
}