@iota-pico/api
Version:
IOTA Pico Framework API
13 lines (12 loc) • 327 B
TypeScript
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[];
}