CML
    Preparing search index...

    Type Alias ExclusiveRecord<K, V>

    ExclusiveRecord: {
        [P in K]: (Record<P, V> & Partial<Record<Exclude<K, P>, never>>) extends infer O
            ? { [Q in keyof O]: O[Q] }
            : never
    }[K]

    A record that is exclusive to a given key.

    Type Parameters

    • K extends PropertyKey
    • V