Logos DX
    Preparing search index...

    Interface PropertyEventData<T>

    Event data for property (header/param) events.

    interface PropertyEventData<T = unknown> {
        key?: string | string[];
        method?: string;
        value?: string | Partial<T>;
    }

    Type Parameters

    • T = unknown

      Property type (headers or params)

    Index

    Properties

    Properties

    key?: string | string[]

    Key that was added/removed

    method?: string

    HTTP method this change applies to (undefined = all methods)

    value?: string | Partial<T>

    Value that was set (for add events)