mirror of
https://github.com/logos-messaging/logos-messaging-js.git
synced 2026-01-12 21:13:09 +00:00
9 lines
257 B
TypeScript
9 lines
257 B
TypeScript
import type { PeerId } from "@libp2p/interface";
|
|
|
|
import type { ShardInfo } from "./enr.js";
|
|
import type { IBaseProtocol } from "./protocols.js";
|
|
|
|
export interface IMetadata extends IBaseProtocol {
|
|
query(peerId: PeerId): Promise<ShardInfo | undefined>;
|
|
}
|