Base class for representing data input nodes.
Constructor
new InputNode(value, nodeType?)| Parameter | Type | Default Value |
|---|---|---|
| value | any | — |
| nodeType? | null | string | null |
Constructs a new input node.
| Accessor | Type | Modifiers |
|---|---|---|
| get type | string | static |
| Method | Type | Modifiers |
|---|---|---|
| getNodeType | () => null | string | — |
| getInputType | (builder: NodeBuilder) => string | — |
| setPrecision | (precision: "low" | "medium" | "high") => InputNode | — |
| serialize | (data: any) => void | — |
| deserialize | (data: any) => void | — |
| generate | () => void | — |
Extends
Node