@kkdev92/vscode-ext-kit - v4.1.1
    Preparing search index...

    Interface ValidationIssue

    A single validation problem safe to expose to command callers.

    interface ValidationIssue {
        message: string;
        path?: readonly (string | number)[];
    }
    Index
    message: string

    Human-readable explanation of the rejected value.

    path?: readonly (string | number)[]

    Optional path from the argument tuple root to the rejected value.