SAP Cloud SDK for JavaScript - v4.8.0
    Preparing search index...

    Type Alias WithoutExclusive<T, U>

    WithoutExclusive: { [P in Exclude<keyof T, keyof U>]?: never }

    Manual XOR between a destination and fetch options.

    WithoutExclusive<T, U> nevers every key of T that is NOT also in U — so the discriminators shared by both branches stay accessible, while exclusive keys are correctly forbidden on the opposite branch.

    Type Parameters

    • T
    • U