UNPKG

395 BTypeScriptView Raw
1import { Plugin } from '@ckeditor/ckeditor5-core';
2
3/**
4 * The list properties UI plugin. It introduces the extended `'bulletedList'`
5 * and `'numberedList'` toolbar buttons that allow users to control such aspects
6 * of list as the marker, start index or order.
7 */
8export default class ListPropertiesUI extends Plugin {
9 static readonly pluginName: 'ListPropertiesUI';
10
11 init(): void;
12}