mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
9 lines
183 B
TypeScript
9 lines
183 B
TypeScript
import { Command } from 'ckeditor5/src/core';
|
|
/**
|
|
* InsertHtmlCommand Command.
|
|
*
|
|
*/
|
|
export default class InsertHtmlCommand extends Command {
|
|
execute(sContent: string): void;
|
|
}
|