| 2592 | _setBaseUrl(this: EditorManager, baseUrl: string): void; |
| 2593 | } |
| 2594 | interface EditorObservable extends Observable<EditorEventMap> { |
| 2595 | bindPendingEventDelegates(this: Editor): void; |
| 2596 | toggleNativeEvent(this: Editor, name: string, state: boolean): void; |
| 2597 | unbindAllNativeEvents(this: Editor): void; |
| 2598 | } |
| 2599 | interface ProcessorSuccess<T> { |
| 2600 | valid: true; |
| 2601 | value: T; |
no outgoing calls
no test coverage detected