Interface Node

interface Node {
    groups: number[];
    hash: string;
    isParent: boolean;
    name: string;
    type: string;
}

Properties

groups: number[]
hash: string
isParent: boolean
name: string
type: string