UNPKG

@docsvision/webclient

Version:

Type definitions for DocsVision WebClient scripts and extensions.

14 lines (12 loc) 401 B
/// <reference types="react" /> import { HtmlProps } from '@docsvision/web/core/component'; export interface IDirectoryTreeRowProps extends HtmlProps.td { selected: boolean; tabIndex?: number; className?: string; copied?: boolean; cut?: boolean; copiedRowId?: string; rowId?: string; } export declare function DirectoryTreeRow(props: IDirectoryTreeRowProps): JSX.Element;