- 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>
9 lines
236 B
TypeScript
9 lines
236 B
TypeScript
/**
|
|
* ExtData is used to handle Extension Types that are not registered to ExtensionCodec.
|
|
*/
|
|
export declare class ExtData {
|
|
readonly type: number;
|
|
readonly data: Uint8Array;
|
|
constructor(type: number, data: Uint8Array);
|
|
}
|