Interface InvalidWeekdaysValidatorConfig

interface InvalidWeekdaysValidatorConfig {
    days: number[];
    enabled?: boolean;
    errorMessage?: string;
    instant?: boolean;
}

Hierarchy (view full)

Properties

days: number[]
enabled?: boolean

If the validator should validate/run.

errorMessage?: string

Custom error message.

instant?: boolean

If the validator should validate on each change.