UNPKG

@humanspeak/svelte-markdown

Version:

A powerful, customizable markdown renderer for Svelte with TypeScript support

8 lines (7 loc) 177 B
interface Props { lang: string; text: string; } declare const Code: import("svelte").Component<Props, {}, "">; type Code = ReturnType<typeof Code>; export default Code;