@lodestar/beacon-node
Version:
A Typescript implementation of the beacon chain
9 lines • 309 B
TypeScript
import { PeerId } from "@libp2p/interface";
import { peerIdFromString } from "@libp2p/peer-id";
/**
* PeerId serialized with `peerId.toString`
*/
export type PeerIdStr = string;
export { peerIdFromString };
export declare function peerIdToString(peerId: PeerId): string;
//# sourceMappingURL=peerId.d.ts.map