import { SourceNodeInitialState } from "./SourceNodeInitialState"; export interface SourceChildNode { id: string; name: string; description: string; sourceNodeId: string; dependencies: object; initialState: SourceNodeInitialState; }