UNPKG

svelte-command-palette

Version:

A beautiful, accessible, and fully customizable command palette for Svelte 5 applications.

9 lines (8 loc) 233 B
import type { Snippet } from 'svelte'; interface Props { target?: string; children?: Snippet; } declare const Portal: import("svelte").Component<Props, {}, "">; type Portal = ReturnType<typeof Portal>; export default Portal;