@react-native-replicache/replicache-generic-sqlite
Version:
> Plug-in React Native compatibility bindings for [Replicache](https://replicache.dev/).
8 lines • 493 B
TypeScript
import type { KVStore, ReadonlyJSONValue } from "replicache";
import { ReplicacheGenericSQLiteReadImpl } from "./replicache-generic-sqlite-read-impl";
export declare class ReplicacheGenericSQLiteWriteImpl extends ReplicacheGenericSQLiteReadImpl implements Awaited<ReturnType<KVStore["write"]>> {
put(key: string, value: ReadonlyJSONValue): Promise<void>;
del(key: string): Promise<void>;
commit(): Promise<void>;
}
//# sourceMappingURL=replicache-generic-sqlite-write-impl.d.ts.map