import { BulletListOptions } from "@tiptap/extension-bullet-list"; //#region src/extensions/rich-text/rich-text-bullet-list.d.ts /** * The options available to customize the `RichTextBulletList` extension. */ type RichTextBulletListOptions = { /** * 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; } & BulletListOptions; //#endregion export type { RichTextBulletListOptions }; //# sourceMappingURL=rich-text-bullet-list.d.ts.map