| 2877 | new (id: string, options: RawEditorOptions, editorManager: EditorManager): Editor; |
| 2878 | } |
| 2879 | declare class Editor implements EditorObservable { |
| 2880 | documentBaseUrl: string; |
| 2881 | baseUri: URI; |
| 2882 | id: string; |
| 2883 | plugins: Record<string, Plugin>; |
| 2884 | documentBaseURI: URI; |
| 2885 | baseURI: URI; |
| 2886 | contentCSS: string[]; |
| 2887 | contentStyles: string[]; |
| 2888 | ui: EditorUi; |
| 2889 | mode: EditorMode; |
| 2890 | options: Options; |
| 2891 | editorUpload: EditorUpload; |
| 2892 | shortcuts: Shortcuts; |
| 2893 | loadedCSS: Record<string, any>; |
| 2894 | editorCommands: EditorCommands; |
| 2895 | suffix: string; |
| 2896 | editorManager: EditorManager; |
| 2897 | hidden: boolean; |
| 2898 | inline: boolean; |
| 2899 | hasVisual: boolean; |
| 2900 | isNotDirty: boolean; |
| 2901 | annotator: Annotator; |
| 2902 | bodyElement: HTMLElement | undefined; |
| 2903 | bookmark: any; |
| 2904 | composing: boolean; |
| 2905 | container: HTMLElement; |
| 2906 | contentAreaContainer: HTMLElement; |
| 2907 | contentDocument: Document; |
| 2908 | contentWindow: Window; |
| 2909 | delegates: Record<string, EventUtilsCallback<any>> | undefined; |
| 2910 | destroyed: boolean; |
| 2911 | dom: DOMUtils; |
| 2912 | editorContainer: HTMLElement; |
| 2913 | eventRoot: Element | undefined; |
| 2914 | formatter: Formatter; |
| 2915 | formElement: HTMLElement | undefined; |
| 2916 | formEventDelegate: ((e: Event) => void) | undefined; |
| 2917 | hasHiddenInput: boolean; |
| 2918 | iframeElement: HTMLIFrameElement | null; |
| 2919 | iframeHTML: string | undefined; |
| 2920 | initialized: boolean; |
| 2921 | notificationManager: NotificationManager; |
| 2922 | orgDisplay: string; |
| 2923 | orgVisibility: string | undefined; |
| 2924 | parser: DomParser; |
| 2925 | quirks: Quirks; |
| 2926 | readonly: boolean; |
| 2927 | removed: boolean; |
| 2928 | schema: Schema; |
| 2929 | selection: EditorSelection; |
| 2930 | serializer: DomSerializer; |
| 2931 | startContent: string; |
| 2932 | targetElm: HTMLElement; |
| 2933 | theme: Theme; |
| 2934 | model: Model; |
| 2935 | undoManager: UndoManager; |
| 2936 | windowManager: WindowManager; |
nothing calls this directly
no outgoing calls
no test coverage detected