| 2702 | _setBaseUrl(this: EditorManager, baseUrl: string): void; |
| 2703 | } |
| 2704 | interface EditorObservable extends Observable<EditorEventMap> { |
| 2705 | bindPendingEventDelegates(this: Editor): void; |
| 2706 | toggleNativeEvent(this: Editor, name: string, state: boolean): void; |
| 2707 | unbindAllNativeEvents(this: Editor): void; |
| 2708 | } |
| 2709 | interface ProcessorSuccess<T> { |
| 2710 | valid: true; |
| 2711 | value: T; |