UNPKG

@humanspeak/svelte-markdown

Version:

Fast, customizable markdown renderer for Svelte with built-in caching, TypeScript support, and Svelte 5 runes

10 lines (9 loc) 326 B
import type { Snippet } from 'svelte'; type $$ComponentProps = { children?: Snippet; tag: string; attributes?: Record<string, string>; }; declare const UnsupportedHTML: import("svelte").Component<$$ComponentProps, {}, "">; type UnsupportedHTML = ReturnType<typeof UnsupportedHTML>; export default UnsupportedHTML;