UNPKG

collaborative-ui

Version:

React component library for building real-time collaborative editing applications.

8 lines (7 loc) 296 B
import * as React from 'react'; import type { StrNode } from 'json-joy/lib/json-crdt/nodes/str/StrNode'; import { type NodeCardProps } from '../NodeCard'; export interface StrNodeCardProps extends NodeCardProps { node: StrNode; } export declare const StrNodeCard: React.FC<StrNodeCardProps>;