interface IGraphState {
    connections: IConnectionState[];
    id: string;
    inputs: readonly IGraphInterface[];
    nodes: INodeState<unknown, unknown>[];
    outputs: readonly IGraphInterface[];
}

Hierarchy (view full)

Implemented by

Properties

connections: IConnectionState[]
id: string
inputs: readonly IGraphInterface[]

Deprecated

nodes: INodeState<unknown, unknown>[]
outputs: readonly IGraphInterface[]

Deprecated