RGex Builder Platform - v1.2.0
    Preparing search index...

    Interface ValidationRule

    interface ValidationRule {
        name: string;
        pattern: RegExp;
        message: string;
        validator?: (value: string) => boolean;
    }
    Index

    Properties

    name: string
    pattern: RegExp
    message: string
    validator?: (value: string) => boolean