UNPKG

@asafarim/simple-md-viewer

Version:

A professional markdown viewer with file tree navigation, directory content browsing, and advanced YAML front matter support

11 lines (10 loc) 216 B
export interface FileNode { name: string; path: string; type: 'file' | 'folder'; children?: FileNode[]; size?: number; lastModified?: string; itemCount?: number; extension?: string; }