Takaro - v0.6.0
    Preparing search index...

    Type Alias ExclusiveEventHintOrCaptureContext

    ExclusiveEventHintOrCaptureContext:
        | CaptureContext & Partial<{ [key in keyof EventHint]: never }>
        | EventHint & Partial<{ [key in keyof ScopeContext]: never }>

    This type makes sure that we get either a CaptureContext, OR an EventHint. It does not allow mixing them, which could lead to unexpected outcomes, e.g. this is disallowed: { user: { id: '123' }, mechanism: { handled: false } }