Interface MinDateValidatorConfig

interface MinDateValidatorConfig {
    enabled?: boolean;
    errorMessage?: string;
    instant?: boolean;
    limit: string;
}

Hierarchy (view full)

Properties

enabled?: boolean

If the validator should validate/run.

errorMessage?: string

Custom error message.

instant?: boolean

If the validator should validate on each change.

limit: string