@ckeditor/ckeditor5-font
Version:
Font feature for CKEditor 5.
20 lines (19 loc) • 587 B
TypeScript
/**
* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
*/
import { FontColorUIBase } from "../ui/colorui.js";
import type { Editor } from "@ckeditor/ckeditor5-core";
/**
* The font background color UI plugin. It introduces the `'fontBackgroundColor'` dropdown.
*/
export declare class FontBackgroundColorUI extends FontColorUIBase {
/**
* @inheritDoc
*/
constructor(editor: Editor);
/**
* @inheritDoc
*/
static get pluginName(): "FontBackgroundColorUI";
}