UNPKG

svelte-rune-highlight

Version:
16 lines (15 loc) 448 B
import type { LangTagProps } from './types'; /** * [Go to docs](https://svelte-rune-highlight.codewithshin.com/) * ## Props * @prop code = '' * @prop highlighted = '' * @prop languageName = 'plaintext' * @prop langtag = false * @prop class: className = '' * @prop codeClass * @prop ...restProps */ declare const LangTag: import("svelte").Component<LangTagProps, {}, "">; type LangTag = ReturnType<typeof LangTag>; export default LangTag;