@tiptap/extension-code-block-lowlight 2.0.0-beta.209 → 2.0.0-beta.211

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,10 @@
1
+ import * as _tiptap_core from '@tiptap/core';
2
+ import { CodeBlockOptions } from '@tiptap/extension-code-block';
3
+
4
+ interface CodeBlockLowlightOptions extends CodeBlockOptions {
5
+ lowlight: any;
6
+ defaultLanguage: string | null | undefined;
7
+ }
8
+ declare const CodeBlockLowlight: _tiptap_core.Node<CodeBlockLowlightOptions, any>;
9
+
10
+ export { CodeBlockLowlight, CodeBlockLowlightOptions, CodeBlockLowlight as default };