UNPKG

396 BTypeScriptView Raw
1import React from 'react';
2import type { StylingFunction } from 'react-base16-styling';
3interface Props {
4 styling: StylingFunction;
5 arrowStyle?: 'single' | 'double';
6 expanded: boolean;
7 nodeType: string;
8 onClick: React.MouseEventHandler<HTMLDivElement>;
9}
10export default function JSONArrow({ styling, arrowStyle, expanded, nodeType, onClick, }: Props): JSX.Element;
11export {};