UNPKG

@humanspeak/svelte-markdown

Version:

A powerful, customizable markdown renderer for Svelte with TypeScript support

9 lines (8 loc) 203 B
interface Props { href?: string; title?: string; text?: string; } declare const Image: import("svelte").Component<Props, {}, "">; type Image = ReturnType<typeof Image>; export default Image;