@versatiles/style
    Preparing search index...

    Type Alias OptionIssue

    One thing wrong with an options object, as data rather than as English.

    path is where it sits, written the way the caller wrote it and relative to the options object itself (colors.wood, text.places.font) — so a UI can mark the offending line. message says what is wrong with that one node, without the path prefixed, since a caller that wants a sentence can build one and a caller that wants to mark a control cannot unbuild one. suggestion is the v6 key to use instead, where v5-hints.ts knows of one.

    type OptionIssue = {
        message: string;
        path: string;
        suggestion?: string;
    }
    Index
    message: string
    path: string
    suggestion?: string