UNPKG

@docsvision/webclient

Version:

Type definitions for DocsVision WebClient scripts and extensions.

11 lines (10 loc) 226 B
export interface IDirectoryTreeRow<T = any> { id: string; name: string; children?: IDirectoryTreeRow[]; childrenLoaded?: boolean; level?: number; expanded?: boolean; model?: T; icon?: string; }