/*** * @file:富文本编辑器 * @author: linkun.he * @Date: 2019-06-26 14:18:53 */ import { HttpClient } from '@angular/common/http'; import { AfterViewInit, EventEmitter, OnChanges, OnDestroy, SimpleChanges } from '@angular/core'; import { I18NService } from '@ithinkdt/shared/i18n'; export declare class TinymceEditComponent implements AfterViewInit, OnChanges, OnDestroy { private http; private i18n; private win; editor: any; storedEditorData: any; editorId: string; data: string; uploadUrl: string; downloadUrl: string; height: number; editModel: { toolbar: string; }; disabled: boolean; editorContentChange: EventEmitter<{}>; imgUpload: EventEmitter<{}>; lang: any[]; constructor(http: HttpClient, i18n: I18NService, win: any); ngOnChanges(changes: SimpleChanges): void; ngAfterViewInit(): void; readonly previewModel: { menubar: boolean; statusbar: boolean; toolbar: boolean; readonly: number; }; readonly randomEditorId: string; private uploadFile; ngOnDestroy(): void; }