UNPKG

@prosekit/svelte

Version:

Svelte components and utilities for ProseKit

11 lines (10 loc) 587 B
import type { BlockHandlePopoverElement, BlockHandlePopoverProps as Props, BlockHandlePopoverEvents as Events } from '@prosekit/web/block-handle'; import type { SvelteComponent } from 'svelte'; import type { HTMLAttributes } from 'svelte/elements'; import type { CreateProps } from '../create-props'; /** * Props for the {@link BlockHandlePopover} component. */ export interface BlockHandlePopoverProps extends Partial<CreateProps<Props, Events>> { } export declare const BlockHandlePopover: typeof SvelteComponent<BlockHandlePopoverProps & HTMLAttributes<BlockHandlePopoverElement>>;