UNPKG

jodit

Version:

Jodit is an awesome and useful wysiwyg editor with filebrowser

23 lines (22 loc) 724 B
/*! * Jodit Editor (https://xdsoft.net/jodit/) * Released under MIT see LICENSE.txt in the project root for license information. * Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net */ /** * [[include:plugins/ordered-list/README.md]] * @packageDocumentation * @module plugins/ordered-list */ import type { IJodit } from "../../types/index"; import { Plugin } from "../../core/plugin/index"; import "./config"; /** * Process commands insertOrderedList and insertUnOrderedList */ export declare class orderedList extends Plugin { buttons: Plugin['buttons']; protected afterInit(jodit: IJodit): void; private onCommand; protected beforeDestruct(jodit: IJodit): void; }