CDP Frontend SDK
    Preparing search index...

    Type Alias ExactPartial<T>

    ExactPartial: {
        [P in keyof T]?: T[P] extends object ? ExactPartial<T[P]> : T[P]
    }

    A type that makes all properties of an object optional.

    Type Parameters

    • T

      The type to make partial.

    The partial type.