@cmk/fe_utils
Version:
frontend utility library
8 lines (6 loc) • 350 B
TypeScript
import { CommonComponentPropertys } from '../../componentProperty';
import { CTreeViewProps } from './CTreeView2';
export type TreeViewWrapperProps = CTreeViewProps & CommonComponentPropertys & {
initialExpanded?: 'all' | 'none';
};
export declare const TreeViewWrapper: (props: TreeViewWrapperProps) => import("react/jsx-runtime").JSX.Element;