react-json-tree
Version:
React JSON Viewer Component, Extracted from redux-devtools
12 lines (11 loc) • 402 B
TypeScript
import React from 'react';
import type { StylingFunction } from 'react-base16-styling';
interface Props {
styling: StylingFunction;
arrowStyle?: 'single' | 'double';
expanded: boolean;
nodeType: string;
onClick: React.MouseEventHandler<HTMLDivElement>;
}
export default function JSONArrow({ styling, arrowStyle, expanded, nodeType, onClick, }: Props): React.JSX.Element;
export {};