UNPKG

@selenite/commons

Version:

This typescript package provides a set of frequently used utilities, types and svelte actions for building projects with Typescript and Svelte.

10 lines (9 loc) 283 B
interface Props { content?: string; ref?: string; caseInsensitive?: boolean; outline?: boolean; } declare const MatchHighlighter: import("svelte").Component<Props, {}, "">; type MatchHighlighter = ReturnType<typeof MatchHighlighter>; export default MatchHighlighter;