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

    The outcome of a full style validation: the verdict plus everything that was found.

    valid reflects errors alone — a style with warnings is still valid. Errors may carry a stack when the finding came from a thrown StyleValidationError rather than from an accumulator push.

    interface StyleValidationResult {
        valid: boolean;
        errors: (ValidationErrorItem & { stack?: string })[];
        warnings: ValidationWarningItem[];
    }
    Index

    Properties

    Properties

    valid: boolean

    true when no blocking error was collected. Warnings do not affect it.

    errors: (ValidationErrorItem & { stack?: string })[]

    Blocking failures, optionally carrying the stack of the throw that produced them.

    Non-blocking remarks.