Interface SelectedNode

interface SelectedNode {
    dataSources?: {
        [property: string]: any;
    };
    id: number;
    node: ChildNode;
    parentNode?: ChildNode;
    parentSubDocument: string;
}

Properties

dataSources?: {
    [property: string]: any;
}
id: number
node: ChildNode
parentNode?: ChildNode
parentSubDocument: string