UNPKG

377 BTypeScriptView Raw
1import { Plugin } from '@ckeditor/ckeditor5-core';
2import ListProperties from './listproperties';
3
4export default class ListStyle extends Plugin {
5 static readonly requires: [typeof ListProperties];
6 static readonly pluginName: 'ListStyle';
7}
8
9declare module '@ckeditor/ckeditor5-core/src/plugincollection' {
10 interface Plugins {
11 ListStyle: ListStyle;
12 }
13}