Interface ConnectOps<N, L>

The operators that parametrize Connect

interface ConnectOps<out N = unknown, in L = never> {
    nodeDatum: IdNodeDatum<N>;
    sourceId: Id<L>;
    targetId: Id<L>;
}

Type Parameters

  • out N = unknown
  • in L = never

Properties

nodeDatum: IdNodeDatum<N>

the node datum operator

sourceId: Id<L>

the source id operator

targetId: Id<L>

the target id operator