dexie-cloud-addon 4.2.0-alpha.1 → 4.2.0-alpha.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.
@@ -1,5 +1,5 @@
1
1
  import { Subject } from "rxjs";
2
- import { Doc as YjsDoc } from "yjs";
2
+ import type * as Y from "yjs";
3
3
  /** A property (package-private) on Y.Doc that is used
4
4
  * to signal that the server wants us to send a 'doc-open' message
5
5
  * to the server for this document.
@@ -7,4 +7,4 @@ import { Doc as YjsDoc } from "yjs";
7
7
  * @param doc
8
8
  * @returns
9
9
  */
10
- export declare function getOpenDocSignal(doc: YjsDoc): Subject<void>;
10
+ export declare function getOpenDocSignal(doc: Y.Doc): Subject<void>;