UNPKG

@composable-svelte/code

Version:

Code editor, syntax highlighting, and node-based canvas components for Composable Svelte - Built with Prism.js, CodeMirror, and SvelteFlow

9 lines 447 B
import type { Store } from '@composable-svelte/core'; import type { CodeHighlightState, CodeHighlightAction } from './code-highlight.types'; type $$ComponentProps = { store: Store<CodeHighlightState, CodeHighlightAction>; }; declare const CodeHighlight: import("svelte").Component<$$ComponentProps, {}, "">; type CodeHighlight = ReturnType<typeof CodeHighlight>; export default CodeHighlight; //# sourceMappingURL=CodeHighlight.svelte.d.ts.map