banira
    Preparing search index...

    Interface DiagResult

    Interface representing the result of diagnostic analysis

    DiagResult

    interface DiagResult {
        errors: Diagnostic[];
        formatted: string;
        hasErrors: boolean;
        hasWarnings: boolean;
        warnings: Diagnostic[];
    }
    Index

    Properties

    errors: Diagnostic[]

    Array of compilation error diagnostics

    formatted: string

    Formatted string representation of all diagnostics

    hasErrors: boolean

    Indicates if there are any compilation errors

    hasWarnings: boolean

    Indicates if there are any compilation warnings

    warnings: Diagnostic[]

    Array of compilation warning diagnostics