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