@keen.io/ui-core
Version:
Keen visual components library
11 lines (10 loc) • 401 B
TypeScript
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;