Documentation
    Preparing search index...

    Interface BcsTypeOptions<T, Input, Name>

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

    Type Parameters

    • T
    • Input = T
    • Name extends string = string
    Index

    Properties

    Properties

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