tweak-tools
Version:
Tweak your React projects until awesomeness
13 lines (12 loc) • 386 B
TypeScript
import React from 'react';
import type { Tree } from '../../types';
declare type TreeWrapperProps = {
isRoot?: boolean;
fill?: boolean;
flat?: boolean;
parent?: string;
tree: Tree;
toggled: boolean;
};
export declare const TreeWrapper: React.MemoExoticComponent<({ isRoot, fill, flat, parent, tree, toggled }: TreeWrapperProps) => React.JSX.Element>;
export {};