collaborative-ui
Version:
React component library for building real-time collaborative editing applications.
10 lines (9 loc) • 312 B
TypeScript
import * as React from 'react';
import type { OnChange } from 'clickable-json/lib/ClickableJson/types';
export interface JsonBlockClickableProps {
value: unknown;
path?: string;
compact?: boolean;
onChange?: OnChange;
}
export declare const JsonBlockClickable: React.FC<JsonBlockClickableProps>;