@ones-editor/editor 2.9.2 → 2.9.3
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.
- package/@ones-editor/sharedb-doc/src/doc/auth-connection.d.ts +1 -0
- package/@ones-editor/sharedb-doc/src/doc/edit-status.d.ts +1 -1
- package/@ones-editor/sharedb-doc/src/doc/sharedb-doc.d.ts +1 -0
- package/@ones-editor/tsconfig.tsbuildinfo +1 -1
- package/dist/index.js +56 -31
- package/package.json +1 -1
|
@@ -15,6 +15,7 @@ export interface AutoConnectionEvents {
|
|
|
15
15
|
writeConflictError: (error: Error) => void;
|
|
16
16
|
maxUsersError: () => void;
|
|
17
17
|
requestReloadError: (error: Error) => void;
|
|
18
|
+
opReceived: () => void;
|
|
18
19
|
ready: () => void;
|
|
19
20
|
}
|
|
20
21
|
export declare class AuthConnection extends TypedEmitter<AutoConnectionEvents> {
|
|
@@ -26,6 +26,7 @@ export default class ShareDBDoc extends EventCallbacks<ShareDBDocCallbacks> impl
|
|
|
26
26
|
private handleReload;
|
|
27
27
|
private handleReset;
|
|
28
28
|
private handleWriteConflictError;
|
|
29
|
+
private handleOpReceived;
|
|
29
30
|
private setStatus;
|
|
30
31
|
initEvents(): void;
|
|
31
32
|
clearEvents(): void;
|