UNPKG

testeranto

Version:

the AI powered BDD test framework for typescript projects

9 lines (8 loc) 270 B
import { FileType } from './TextEditorPage'; type FileTreeProps = { files: FileType[]; onSelect: (path: string) => void; activeFile: string | null; }; export declare const FileTree: ({ files, onSelect, activeFile }: FileTreeProps) => JSX.Element; export {};