mdui.editor
Version:
Material Design 样式的富文本编辑器
13 lines (12 loc) • 320 B
TypeScript
import MenuNativeAbstract from '../abstracts/menuNativeAbstract';
/**
* 斜体
*/
declare class Italic extends MenuNativeAbstract {
static icon: string;
static title: string;
static disable: string[];
protected getCommandName(): string;
protected getElementName(): string;
}
export default Italic;