Represents the backend response for user node detail.

interface GetNodeDeatailsAPIResponse {
    node_details: Record<string, any>[];
    nodes: string[];
    total: number;
}

Properties

node_details: Record<string, any>[]
nodes: string[]
total: number