test-ic-wallet-middleware-common
Version:
Ic middleware wallet common objects
7 lines (6 loc) • 326 B
TypeScript
import { BaseRxDbDocument } from "../storage";
export interface ReplicationCollectionDetails {
collectionName: string;
replicationPull(replicaCanister: any, updatedAt: any, id: any[], batchSize: any): Promise<BaseRxDbDocument[]>;
replicationPush(replicaCanister: any, items: any[]): Promise<BaseRxDbDocument[]>;
}