UNPKG

clickable-json

Version:

Interactive JSON and JSON CRDT viewer and editor

8 lines (7 loc) 240 B
import * as React from 'react'; export interface TypeSwitchProps { value: React.ReactNode; onClick?: React.MouseEventHandler; onKeyDown?: React.KeyboardEventHandler; } export declare const TypeSwitch: React.FC<TypeSwitchProps>;