Type Alias InputControlParams<T, D>

InputControlParams<T, D>: {
    canChangeType?: boolean;
    changeType?: ((type: SocketType) => void);
    datastructure: D;
    initial?: SocketValueWithDatastructure<InputControlValueType<T>, D>;
    label?: string;
    onChange?: ((value: InputControlValueType<T>) => void);
    options?: string[];
    props?: HTMLInputAttributes;
    readonly?: boolean;
    socketType: SocketType;
    type: T;
}

Type Parameters