UNPKG

@prosekit/svelte

Version:

Svelte components and utilities for ProseKit

12 lines (11 loc) 285 B
import type { Editor } from '@prosekit/core'; import type { SvelteComponent } from 'svelte'; export interface ProseKitProps { editor: Editor; } /** * The root component for a ProseKit editor. * * @public */ export declare const ProseKit: typeof SvelteComponent<ProseKitProps>;