UNPKG

clickable-json

Version:

Interactive JSON and JSON CRDT viewer and editor

9 lines (8 loc) 264 B
import * as React from 'react'; export interface CrdtTypeSwitchProps { types?: string[]; type: React.RefObject<string>; onSubmit?: () => void; onClick?: React.MouseEventHandler; } export declare const CrdtTypeSwitch: React.FC<CrdtTypeSwitchProps>;