UNPKG

@keen.io/ui-core

Version:

Keen visual components library

11 lines (10 loc) 401 B
import React, { FC } from 'react'; declare type Props = { properties: Record<string, string[] | Record<string, any>>; onClick: (e: React.MouseEvent<HTMLDivElement> | React.KeyboardEvent<Element>, propertyPath: string) => void; activeProperty?: string; expanded?: boolean; modalContainer: string; }; declare const PropertiesTree: FC<Props>; export default PropertiesTree;