UNPKG

@humanspeak/svelte-markdown

Version:

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

7 lines (6 loc) 328 B
import Html from '../renderers/html/index.js'; import { type Renderers } from './markdown-parser.js'; export type RendererKey = Exclude<keyof Renderers, 'html'>; export declare const rendererKeysInternal: RendererKey[]; export type HtmlKey = keyof typeof Html & string; export declare const htmlRendererKeysInternal: HtmlKey[];