ic-reactor
    Preparing search index...

    Interface NumberArg

    interface NumberArg {
        type: "number";
        min?: string | number;
        max?: string | number;
        required: true;
        defaultValue: string;
        maxLength?: number;
        minLength?: number;
        label: string;
        validate: (value: any) => string | boolean;
        defaultValues?: any[] | Record<string, any>;
    }

    Hierarchy (View Summary)

    Index

    Properties

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