Interface BcsTypeOptions<T, Input>

interface BcsTypeOptions<T, Input> {
    name?: string;
    validate?: ((value: Input) => void);
}

Type Parameters

  • T
  • Input = T

Properties

Properties

name?: string
validate?: ((value: Input) => void)