- Consolidated duplicate UndoManagers to single instance - Fixed connection promise to only resolve on 'connected' status - Fixed WebSocketProvider import (WebsocketProvider) - Added proper doc.destroy() cleanup - Renamed isPresenceInitialized property to avoid conflict Co-Authored-By: Paperclip <noreply@paperclip.ing>
17 lines
566 B
JavaScript
17 lines
566 B
JavaScript
import { _catchError } from './diff/catch-error';
|
|
|
|
/**
|
|
* The `option` object can potentially contain callback functions
|
|
* that are called during various stages of our renderer. This is the
|
|
* foundation on which all our addons like `preact/debug`, `preact/compat`,
|
|
* and `preact/hooks` are based on. See the `Options` type in `internal.d.ts`
|
|
* for a full list of available option hooks (most editors/IDEs allow you to
|
|
* ctrl+click or cmd+click on mac the type definition below).
|
|
* @type {Options}
|
|
*/
|
|
const options = {
|
|
_catchError
|
|
};
|
|
|
|
export default options;
|