Type Alias InputControlNodeParams<S, T, D>

InputControlNodeParams<S, T, D>: NodeParams & {
    controlType: T;
    datastructure?: D;
    initial?: InputControlValueType<T>;
    props?: HTMLInputAttributes;
    socketType?: S;
}

Type Parameters