Interface BcsTypeOptions<T, Input>

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

Type Parameters

  • T
  • Input = T

Properties

Properties

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