UNPKG

@iota-pico/api

Version:
13 lines (12 loc) 327 B
import { ICommonResponse } from "./ICommonResponse"; import { INeighbor } from "./INeighbor"; /** * Represents the response from getNeighbors command. * @interface */ export interface IGetNeighborsResponse extends ICommonResponse { /** * The neighbors of the node. */ neighbors: INeighbor[]; }