@loro-dev/flock 2.0.1 → 2.1.0
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/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/_moon_flock.d.ts +6 -2
- package/src/_moon_flock.ts +369 -266
- package/src/index.ts +37 -6
package/package.json
CHANGED
package/src/_moon_flock.d.ts
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import type * as MoonBit from "./moonbit.d.ts";
|
|
2
2
|
|
|
3
|
+
export function _int64_helper_for_test(): any;
|
|
4
|
+
|
|
3
5
|
export function subscribe_ffi(self: any,
|
|
4
6
|
listener: any): any;
|
|
5
7
|
|
|
@@ -53,7 +55,8 @@ export function import_json_ffi(self: any,
|
|
|
53
55
|
json: any): any;
|
|
54
56
|
|
|
55
57
|
export function export_json_ffi(self: any,
|
|
56
|
-
from: any
|
|
58
|
+
from: any,
|
|
59
|
+
prune_tombstones_before: any): any;
|
|
57
60
|
|
|
58
61
|
export function get_ffi(self: any,
|
|
59
62
|
key: any): any;
|
|
@@ -76,7 +79,8 @@ export function import_json(self: any,
|
|
|
76
79
|
hooks$46$opt: any): MoonBit.Result<any, any>;
|
|
77
80
|
|
|
78
81
|
export function export_json(self: any,
|
|
79
|
-
from: MoonBit.UnboxedOption<any
|
|
82
|
+
from: MoonBit.UnboxedOption<any>,
|
|
83
|
+
prune_tombstones_before$46$opt: MoonBit.UnboxedOption<any>): any;
|
|
80
84
|
|
|
81
85
|
export function version(self: any): any;
|
|
82
86
|
|