fybdp-d3-kg
Version:
Knowledge Graph using React and D3.js
15 lines (14 loc) • 496 B
TypeScript
import { PureComponent } from 'react';
interface CloneElementProps {
element: any | null;
}
/**
* CloneElement is a wrapper component for createElement function.
* This allows you to describe your cloning element declaratively
* which is a more natural API for React.
*/
export declare class CloneElement<T = any> extends PureComponent<CloneElementProps & Partial<T>> {
getProjectedProps: (this: any, props: any) => {};
render(): {} | null | undefined;
}
export {};