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,41 @@
import { Plugin as Plugin_2 } from 'prosemirror-state';
/**
* This creates the plugin for trailing node.
*
* ```ts
* import { schema } from 'prosemirror-schema-basic';
* import { trailingNode } from 'prosemirror-trailing-node';
*
* // Include the plugin in the created editor state.
* const state = EditorState.create({
* schema,
* plugins: [trailingNode({ ignoredNodes: [], nodeName: 'paragraph' })],
* });
* ```
*
* @param options - the options that can be provided to this plugin.
*/
declare function trailingNode(options?: TrailingNodePluginOptions): Plugin_2<boolean>;
export { trailingNode }
export { trailingNode as trailingNode_alias_1 }
declare interface TrailingNodePluginOptions {
/**
* The node to create at the end of the document.
*
* **Note**: the nodeName will always be added to the `ignoredNodes` lists to
* prevent an infinite loop.
*
* @defaultValue 'paragraph'
*/
nodeName?: string;
/**
* The nodes for which this rule should not apply.
*/
ignoredNodes?: string[];
}
export { TrailingNodePluginOptions }
export { TrailingNodePluginOptions as TrailingNodePluginOptions_alias_1 }
export { }