UNPKG

collaborative-ui

Version:

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

8 lines (7 loc) 235 B
import * as React from 'react'; import type { Patch } from 'json-joy/lib/json-crdt'; export interface DownloadButtonProps { patch: Patch; filename?: string; } export declare const DownloadButton: React.FC<DownloadButtonProps>;