GeoLeaf Core API - v3.0.0
    Preparing search index...

    Aggregate outcome of a batch validation.

    ⚠️ Distinct from the { valid, error } shape the single-value validators return: this one collects all the failures rather than stopping at the first, and its errors array is empty — not absent — when everything passed.

    interface ValidationResult {
        valid: boolean;
        errors: string[];
    }
    Index

    Properties

    Properties

    valid: boolean
    errors: string[]