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; //#endregion export type { RichTextOrderedListOptions }; //# sourceMappingURL=rich-text-ordered-list.d.ts.map