UNPKG

svelte-exmarkdown

Version:

Svelte component to render markdown. Dynamic and Extensible.

8 lines (7 loc) 256 B
import type { Snippet } from 'svelte'; type $$ComponentProps = { children?: Snippet<[]>; }; declare const Transparent: import("svelte").Component<$$ComponentProps, {}, "">; type Transparent = ReturnType<typeof Transparent>; export default Transparent;