@tikoci/centrs
    Preparing search index...

    Interface CommentKvUpdate

    A single comment kv-soup mutation. value: null removes every token whose bare key matches; any other value upserts key=value (the value is quoted when needed so it survives re-tokenization as one token).

    interface CommentKvUpdate {
        key: string;
        value: string | null;
    }
    Index

    Properties

    Properties

    key: string
    value: string | null