/** * ListStyleExtension — adds a `listStyleType` attribute to bulletList and * orderedList so the toolbar can offer Google-Docs-style marker presets * (disc / circle / square, decimal / lower-alpha / lower-roman, …). * * Command: `setListStyleType(value)` — applies to whichever list is active. */ import { Extension } from '@tiptap/core'; export interface ListStyleOptions { types: string[]; } declare module '@tiptap/core' { interface Commands { listStyle: { setListStyleType: (value: string) => ReturnType; }; } } export declare const ListStyleExtension: Extension; //# sourceMappingURL=list-style.d.ts.map