markmv - v1.26.2
    Preparing search index...

    Interface ValidateResult

    Result of a validation operation containing all broken links found.

    interface ValidateResult {
        filesProcessed: number;
        totalLinks: number;
        brokenLinks: number;
        brokenLinksByFile: Record<string, ExtendedBrokenLink[]>;
        brokenLinksByType: Partial<Record<LinkType, ExtendedBrokenLink[]>>;
        fileErrors: { file: string; error: string }[];
        hasCircularReferences: boolean;
        circularReferences?: string[];
        processingTime: number;
    }
    Index

    Properties

    filesProcessed: number

    Total number of files processed

    totalLinks: number

    Total number of links found

    brokenLinks: number

    Total number of broken links found

    brokenLinksByFile: Record<string, ExtendedBrokenLink[]>

    Broken links grouped by file

    brokenLinksByType: Partial<Record<LinkType, ExtendedBrokenLink[]>>

    Broken links grouped by type

    fileErrors: { file: string; error: string }[]

    Files that had processing errors

    hasCircularReferences: boolean

    Whether circular references were detected

    circularReferences?: string[]

    Circular reference details if found

    processingTime: number

    Processing time in milliseconds