/** * IRichTextCommand interface for text command operations. * * @public */ export interface IRichTextCommand { attach(contentEditableElement: ElementContentEditable): void; execute(): boolean; } //# sourceMappingURL=IRichTextCommand.d.ts.map