import { IKeyRegistry } from "./auth"; import { IData } from "./db"; export interface IPeerHost extends IData { type: "PeerHost"; socketUrl?: string; publicIPContext?: string; registry?: IKeyRegistry; desc?: string; }