import { HeadingOptions } from "@tiptap/extension-heading"; //#region src/extensions/rich-text/rich-text-heading.d.ts /** * The options available to customize the `RichTextHeading` extension. */ type RichTextHeadingOptions = HeadingOptions; /** * Custom extension that extends the built-in `Heading` extension to override the input rule for * headings to trigger only on space (e.g., `## `), preventing conflicts with suggestion extensions * that use `#` as their trigger character. * * This was properly fixed in Tiptap v3 where input rules respect extension priorities, making this * extension likely unnecessary after migrating. * * @see https://github.com/ueberdosis/tiptap/issues/2570 * @see https://github.com/ueberdosis/tiptap/pull/6832 */ //#endregion export { type RichTextHeadingOptions }; //# sourceMappingURL=rich-text-heading.d.ts.map