UNPKG

svelte-rune-highlight

Version:
17 lines (16 loc) 419 B
interface Props { code?: string; langtag?: boolean; preClass?: string; } /** * [Go to docs](https://svelte-rune-highlight.codewithshin.com/) * ## Props * @prop code = '' * @prop langtag = false * @prop preClass * @prop ...restProps */ declare const HighlightSvelte: import("svelte").Component<Props, {}, "">; type HighlightSvelte = ReturnType<typeof HighlightSvelte>; export default HighlightSvelte;