@fireproof/core 0.19.112-dev-usefp → 0.19.112-dev-script
Sign up to get free protection for your applications and to get access to all the features.
- package/index.cjs +1 -1
- package/index.cjs.map +1 -1
- package/index.d.cts +3 -3
- package/index.d.ts +3 -3
- package/index.global.js +147 -30851
- package/index.global.js.map +1 -1
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/metafile-cjs.json +1 -1
- package/metafile-esm.json +1 -1
- package/metafile-iife.json +1 -1
- package/package.json +1 -1
- package/react/index.cjs +9 -4
- package/react/index.cjs.map +1 -1
- package/react/index.d.cts +2 -1
- package/react/index.d.ts +2 -1
- package/react/index.js +9 -4
- package/react/index.js.map +1 -1
- package/react/metafile-cjs.json +1 -1
- package/react/metafile-esm.json +1 -1
- package/web/gateway-impl.cjs +1 -1
- package/web/gateway-impl.cjs.map +1 -1
- package/web/gateway-impl.js +1 -1
- package/web/gateway-impl.js.map +1 -1
- package/web/metafile-cjs.json +1 -1
- package/web/metafile-esm.json +1 -1
package/index.d.cts
CHANGED
@@ -865,9 +865,9 @@ type UpdateListenerFn<T extends DocTypes> = (docs: DocWithId<T>[]) => Promise<vo
|
|
865
865
|
type NoUpdateListenerFn = () => Promise<void> | void;
|
866
866
|
type ListenerFn<T extends DocTypes> = UpdateListenerFn<T> | NoUpdateListenerFn;
|
867
867
|
interface CRDTEntry {
|
868
|
-
data: string;
|
869
|
-
parents: string[];
|
870
|
-
cid: string;
|
868
|
+
readonly data: string;
|
869
|
+
readonly parents: string[];
|
870
|
+
readonly cid: string;
|
871
871
|
}
|
872
872
|
|
873
873
|
interface WriteQueue<T extends DocTypes> {
|
package/index.d.ts
CHANGED
@@ -865,9 +865,9 @@ type UpdateListenerFn<T extends DocTypes> = (docs: DocWithId<T>[]) => Promise<vo
|
|
865
865
|
type NoUpdateListenerFn = () => Promise<void> | void;
|
866
866
|
type ListenerFn<T extends DocTypes> = UpdateListenerFn<T> | NoUpdateListenerFn;
|
867
867
|
interface CRDTEntry {
|
868
|
-
data: string;
|
869
|
-
parents: string[];
|
870
|
-
cid: string;
|
868
|
+
readonly data: string;
|
869
|
+
readonly parents: string[];
|
870
|
+
readonly cid: string;
|
871
871
|
}
|
872
872
|
|
873
873
|
interface WriteQueue<T extends DocTypes> {
|