fix: resolve TypeScript errors in frontend build

This commit is contained in:
Hiro
2026-03-30 23:16:07 +00:00
parent b733306773
commit 24925e1acb
2941 changed files with 418042 additions and 49 deletions

View File

@@ -0,0 +1,16 @@
import * as _tiptap_core from '@tiptap/core';
import { CodeBlockOptions } from '@tiptap/extension-code-block';
interface CodeBlockLowlightOptions extends CodeBlockOptions {
/**
* The lowlight instance.
*/
lowlight: any;
}
/**
* This extension allows you to highlight code blocks with lowlight.
* @see https://tiptap.dev/api/nodes/code-block-lowlight
*/
declare const CodeBlockLowlight: _tiptap_core.Node<CodeBlockLowlightOptions, any>;
export { CodeBlockLowlight, type CodeBlockLowlightOptions, CodeBlockLowlight as default };