@fkui/logic
    Preparing search index...

    Interface EmailValidatorConfig

    interface EmailValidatorConfig {
        enabled?: boolean;
        errorMessage?: string;
        instant?: boolean;
        maxLength: 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.

    maxLength: number