Interface ValidationPattern

interface ValidationPattern {
    errorMessage?: string;
    pattern: string | RegExp;
}

Properties

errorMessage?: string
pattern: string | RegExp