index.d.ts 411 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
/**
 * @description 无序列表/有序列表
 * @author tonghan
 */
import Editor from '../../editor/index';
import DropListMenu from '../menu-constructors/DropListMenu';
import { MenuActive } from '../menu-constructors/Menu';
declare class List extends DropListMenu implements MenuActive {
    constructor(editor: Editor);
    command(value: string): void;
    tryChangeActive(): void;
}
export default List;