import { OrderedListOptions } from "@tiptap/extension-ordered-list"; //#region src/extensions/rich-text/rich-text-ordered-list.d.ts /** * The options available to customize the `RichTextOrderedList` extension. */ type RichTextOrderedListOptions = { /** * Replace hard breaks in the selection with paragraphs before toggling the selection into a * bullet list. By default, hard breaks are not replaced. */ smartToggle: boolean; } & OrderedListOptions; /** * Custom extension that extends the built-in `OrderedList` extension to add an option for smart * toggling, which takes into account hard breaks in the selection, and converts them into * paragraphs before toggling the selection into a bullet list. */ //#endregion export { type RichTextOrderedListOptions }; //# sourceMappingURL=rich-text-ordered-list.d.ts.map