UNPKG

532 BTypeScriptView Raw
1import { Command } from '@ckeditor/ckeditor5-core';
2
3/**
4 * The list start index command. It changes the `listStart` attribute of the selected list items.
5 * It is used by the {@link module:list/listproperties~ListProperties list properties feature}.
6 */
7export default class ListStartCommand extends Command {
8 refresh(): void;
9 execute(options?: { startIndex?: number }): void;
10}
11
12declare module '@ckeditor/ckeditor5-core/src/commandcollection' {
13 interface Commands {
14 ListStartCommand: ListStartCommand;
15 }
16}