Sanity Library Reference Docs
    Preparing search index...

    Type Alias TopicData<K>

    TopicData: ValueOf<K> extends infer Value
        ? Value extends { ok: true; value: infer Success }
            ? Success
            : Value extends { ok: false } ? never : Value
        : never

    The value of a state topic, with TopicResult wrappers unwrapped to their success value.

    Type Parameters