svelte-rune-highlight
Version:
A highlight library for Svelte 5 with Rune
16 lines (15 loc) • 448 B
TypeScript
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;