UNPKG

json-joy

Version:

Collection of libraries for building collaborative editing apps.

9 lines (8 loc) 264 B
import * as React from 'react'; import type { InlineAttrStack } from '../../../../json-crdt-extensions'; export interface LinkProps { children: React.ReactNode; layers?: number; stack: InlineAttrStack; } export declare const Link: React.FC<LinkProps>;