interface Libp2pServer {
    getMultiaddr(): Multiaddr;
    start(): Promise<void>;
    stop(): Promise<void>;
}

Implemented by

Methods