UNPKG

collaborative-ui

Version:

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

10 lines (9 loc) 311 B
import * as React from 'react'; import type { JsonPatchStore } from 'json-joy/lib/json-crdt/json-patch/JsonPatchStore'; import type { TodoView } from './types'; export interface ItemProps { task: TodoView; store: JsonPatchStore<any>; index: number; } export declare const Item: React.FC<ItemProps>;