svelte-rune-highlight
Version:
A highlight library for Svelte 5 with Rune
15 lines (14 loc) • 370 B
TypeScript
interface Props {
code?: string;
langtag?: boolean;
}
/**
* [Go to docs](https://svelte-rune-highlight.codewithshin.com/)
* ## Props
* @prop code = ''
* @prop langtag = false
* @prop ...restProps
*/
declare const HighlightAuto: import("svelte").Component<Props, {}, "">;
type HighlightAuto = ReturnType<typeof HighlightAuto>;
export default HighlightAuto;