@rickx/ckeditor5-line-height
Version:
LineHeight plugin for CKEditor5
16 lines (15 loc) • 395 B
TypeScript
import type { Editor } from 'ckeditor5';
import { Command } from 'ckeditor5';
/**
* The lineHeight command plugin.
*/
export default class LineHeightCommand extends Command {
value: string;
static get pluginName(): "LineHeightEditing";
constructor(editor: Editor);
refresh(): void;
execute(options?: {
value?: string;
}): void;
private _canSetLineHeight;
}