@fkui/logic
    Preparing search index...

    Interface DecimalValidatorConfig

    interface DecimalValidatorConfig {
        enabled?: boolean;
        errorMessage?: string;
        instant?: boolean;
        maxDecimals: number;
        minDecimals: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    enabled?: boolean

    If the validator should validate/run.

    errorMessage?: string

    Custom error message.

    instant?: boolean

    If the validator should validate on each change.

    maxDecimals: number
    minDecimals: number