@fileverse-dev/ddoc 3.4.9 → 3.5.0-t-2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -80,6 +80,7 @@ export declare const useEditorToolbar: ({ editor, onError, isPresentationMode, s
80
80
  undoRedoTools: (IEditorToolElement | null)[];
81
81
  toolbar: (IEditorToolElement | null)[];
82
82
  exportOptions: (IEditorToolElement | null)[];
83
+ printHandler: () => void;
83
84
  importOptions: (IEditorToolElement | null)[];
84
85
  bottomToolbar: (IEditorToolElement | null)[];
85
86
  toolRef: React.RefObject<HTMLDivElement>;
@@ -22,6 +22,7 @@ export declare class SyncManager {
22
22
  private servicesRef;
23
23
  private callbacksRef;
24
24
  private onLocalUpdate?;
25
+ private debugLog;
25
26
  constructor(config: SyncManagerConfig, onCollabStateChange: (state: CollabState) => void);
26
27
  /** Called by useSyncManager on every render to keep refs fresh */
27
28
  updateRefs(services: CollabServices | undefined, callbacks: CollabCallbacks | undefined, onLocalUpdate?: (updatedDocContent: string, updateChunk: string) => void): void;
@@ -40,6 +40,7 @@ export declare class SocketClient {
40
40
  private connectionAttemptErrorCount;
41
41
  private _onHandshakeData;
42
42
  constructor(config: ISocketClientConfig);
43
+ private debugLog;
43
44
  registerAwareness(awareness: Awareness): void;
44
45
  private _emitWithAck;
45
46
  private _fetchRoomMembers;
@@ -5,4 +5,4 @@ export declare const createAwarenessUpdateHandler: (awareness: Awareness, socket
5
5
  added: number[];
6
6
  updated: number[];
7
7
  removed: number[];
8
- }, origin: any) => void;
8
+ }, origin: unknown) => void;