rxdb
Version:
A local-first realtime NoSQL Database for JavaScript applications - https://rxdb.info/
4 lines (3 loc) • 361 B
TypeScript
import type { WithDeleted, WithDeletedAndAttachments } from '../../types';
export declare function appwriteDocToRxDB<RxDocType>(appwriteDoc: any, primaryKey: string, deletedField: string): WithDeleted<RxDocType>;
export declare function rxdbDocToAppwrite<RxDocType>(rxdbDoc: WithDeletedAndAttachments<RxDocType>, primaryKey: string, deletedField: string): any;