import { SourceNodeInitialState } from "./SourceNodeInitialState"; export interface SourceChildNode { /** Identifies the child node in the context of its parent node. */ id: string; /** Meaningful name of the node in the context of its parent node. */ name: string; /** Meaningful description of the node in the context of its parent node. */ description: string; /** Specified source node the child node is based on. */ sourceNodeId: string; /** Imports for node-level code */ dependencies: object; /** Initial state definition for the node. */ initialState: SourceNodeInitialState; }