@theredhead — Frontend Library - v1.0.0
    Preparing search index...

    Interface TextAdapterValidationResult

    Result of validating raw text through a TextAdapter.

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

    Properties

    Properties

    errors: readonly string[]

    Human-readable error messages (empty when valid).

    valid: boolean

    Whether the current text is considered valid.