UNPKG

@humanspeak/svelte-markdown

Version:

A powerful, customizable markdown renderer for Svelte with TypeScript support

9 lines (8 loc) 242 B
import type { Snippet } from 'svelte'; interface Props { children?: Snippet; attributes?: Record<string, any>; } declare const Abbr: import("svelte").Component<Props, {}, "">; type Abbr = ReturnType<typeof Abbr>; export default Abbr;