UNPKG

@humanspeak/svelte-markdown

Version:

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

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