UNPKG

@prosekit/svelte

Version:

Svelte components and utilities for ProseKit

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