UNPKG

@humanspeak/svelte-markdown

Version:

A powerful, customizable markdown renderer for Svelte with TypeScript support

10 lines (9 loc) 243 B
import type { Snippet } from 'svelte'; interface Props { href?: string; title?: string; children?: Snippet; } declare const Link: import("svelte").Component<Props, {}, "">; type Link = ReturnType<typeof Link>; export default Link;