ic-reactor
    Preparing search index...

    Interface DefaultArg

    interface DefaultArg {
        maxLength?: number;
        minLength?: number;
        type: FieldType;
        label: string;
        validate: (value: any) => string | boolean;
        defaultValue?: any;
        defaultValues?: any[] | Record<string, any>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    maxLength?: number
    minLength?: number
    type: FieldType
    label: string
    validate: (value: any) => string | boolean
    defaultValue?: any
    defaultValues?: any[] | Record<string, any>