import { LinkOptions } from "@tiptap/extension-link"; //#region src/extensions/rich-text/rich-text-link.d.ts /** * The options available to customize the `RichTextLink` extension. */ type RichTextLinkOptions = LinkOptions; /** * Custom extension that extends the built-in `Link` extension to add additional input/paste rules * for converting the Markdown link syntax (i.e. `[Doist](https://doist.com)`) into links, and also * adds support for the `title` attribute. */ //#endregion export { type RichTextLinkOptions }; //# sourceMappingURL=rich-text-link.d.ts.map