UNPKG

@humanspeak/svelte-markdown

Version:

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

11 lines (10 loc) 245 B
interface Props { href?: string; title?: string; text?: string; lazy?: boolean; fadeIn?: boolean; } declare const Image: import("svelte").Component<Props, {}, "">; type Image = ReturnType<typeof Image>; export default Image;