UNPKG

@localazy/strapi-plugin

Version:

The official Strapi Plugin by Localazy.

9 lines (8 loc) 230 B
import React from 'react'; interface TreeProps { objects: any[]; onTreeItemClick: (key: string[], currentValue: boolean) => void; initiallyExpanded: boolean; } declare const Tree: React.FC<TreeProps>; export { Tree };