UNPKG

json-joy

Version:

Collection of libraries for building collaborative editing apps.

13 lines (12 loc) 540 B
import { type RenderPeritextProps } from './RenderPeritext'; import type { PeritextPlugin } from '../../web/react/types'; export interface DebugPluginOpts extends Pick<RenderPeritextProps, 'state'> { } export declare class DebugPlugin implements PeritextPlugin { protected readonly opts: DebugPluginOpts; constructor(opts?: DebugPluginOpts); readonly inline: PeritextPlugin['inline']; readonly block: PeritextPlugin['block']; readonly peritext: PeritextPlugin['peritext']; readonly caret: PeritextPlugin['caret']; }