Type alias RequestModification<TMeans, TExt>

RequestModification<TMeans, TExt>: {
    [K in keyof TMeans]?: TMeans[K]
} & {
    [K in Exclude<keyof TExt, keyof TMeans>]: TExt[K]
}

Modification or extension of request processing means.

The properties present here are added to new context potentially replacing the original ones.

Type Parameters

  • TMeans

    A type of request processing means to modify.

  • TExt extends object = object

    A type of request processing means extension.

Generated using TypeDoc