UNPKG

353 BTypeScriptView Raw
1import React from 'react';
2import { 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}
10declare const JSONArrow: React.FunctionComponent<Props>;
11export default JSONArrow;