UNPKG

collaborative-ui

Version:

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

13 lines (12 loc) 343 B
import * as React from 'react'; import type { ITimestampStruct, Patch } from 'json-joy/lib/json-crdt'; export interface TickProps { id: ITimestampStruct; patch?: Patch; selected?: boolean; marker?: string; tickWidth: number; noHover?: boolean; scrubbing?: boolean; } export declare const Tick: React.FC<TickProps>;