@dao-xyz/peerbit
Version:
Distributed p2p database on IPFS
15 lines (14 loc) • 375 B
TypeScript
import { TransportMessage } from "./message.js";
export declare const WAIT_FOR_PEERS_TIME = 5000;
export declare class ReplicatorInfo extends TransportMessage {
fromId?: string;
topic: string;
store: number;
heads?: string[];
constructor(props?: {
fromId?: string;
topic: string;
store: number;
heads?: string[];
});
}